@ningboyz/apis 1.6.38 → 1.6.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/packages/bill/main.ts +10 -0
- package/packages/zbzd/types.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.39",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "宁波甬政请求库",
|
|
6
6
|
"author": "nbyt-syq",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"registry": "https://registry.npmjs.org/"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ningboyz/types": "1.6.
|
|
20
|
+
"@ningboyz/types": "1.6.39",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/bill/main.ts
CHANGED
|
@@ -187,6 +187,16 @@ class MainRequest {
|
|
|
187
187
|
return this.httpRequest.post<TBill.IBillMainResponse[]>(`/gapi/bill/tmain/withaczf/updatedb`, querys, params);
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
+
/**
|
|
191
|
+
* 更新打印
|
|
192
|
+
* @param querys
|
|
193
|
+
* @param params
|
|
194
|
+
* @returns
|
|
195
|
+
*/
|
|
196
|
+
updated3(querys: IEmptyQuerys, params: object) {
|
|
197
|
+
return this.httpRequest.post<TBill.IBillMainResponse[]>(`/gapi/bill/tmain/withexport/updatedb`, querys, params);
|
|
198
|
+
}
|
|
199
|
+
|
|
190
200
|
/**
|
|
191
201
|
* 复制票据
|
|
192
202
|
* @param querys
|
package/packages/zbzd/types.ts
CHANGED
|
@@ -123,10 +123,12 @@ export class TZbzdMainSelectd4Querys implements IZbzdMainSelectd4Querys {
|
|
|
123
123
|
|
|
124
124
|
export interface IZbzdMainFinishe2Querys {
|
|
125
125
|
sourcend: number;
|
|
126
|
+
withzbfl: number;
|
|
126
127
|
}
|
|
127
128
|
|
|
128
129
|
export class TZbzdMainFinishe2Querys implements IZbzdMainFinishe2Querys {
|
|
129
130
|
sourcend: number = -1;
|
|
131
|
+
withzbfl: number = -1;
|
|
130
132
|
}
|
|
131
133
|
|
|
132
134
|
export interface IZbzdMainInsertd2Querys {
|