@ningboyz/types 1.6.82 → 1.6.84
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _ from "lodash";
|
|
2
|
-
import { TFlowDataResponse } from "../flow";
|
|
3
2
|
import { TStim } from "..";
|
|
3
|
+
import { TFlowDataResponse } from "../flow";
|
|
4
4
|
|
|
5
5
|
export interface IBillMainResponse {
|
|
6
6
|
whoBuild: number;
|
|
@@ -150,8 +150,8 @@ export interface IBillMainResponse {
|
|
|
150
150
|
|
|
151
151
|
/** 合同编号 */
|
|
152
152
|
yzhtHtbh: string;
|
|
153
|
-
|
|
154
|
-
|
|
153
|
+
/**合同结束状态 */
|
|
154
|
+
yzhtHasEnded: number;
|
|
155
155
|
/** 票据类型.名称 */
|
|
156
156
|
typeText: string;
|
|
157
157
|
/** 银行类型.名称 */
|
|
@@ -313,6 +313,8 @@ export class TBillMainResponse implements IBillMainResponse {
|
|
|
313
313
|
|
|
314
314
|
/** 合同编号 */
|
|
315
315
|
yzhtHtbh: string = "";
|
|
316
|
+
/** 合同结束状态 */
|
|
317
|
+
yzhtHasEnded: number = -1;
|
|
316
318
|
/** 票据类型.名称 */
|
|
317
319
|
typeText: string = "";
|
|
318
320
|
/** 银行类型.名称 */
|
|
@@ -322,8 +324,6 @@ export class TBillMainResponse implements IBillMainResponse {
|
|
|
322
324
|
fromOutMoney: number = 0;
|
|
323
325
|
fromFinalOut: number = 0;
|
|
324
326
|
fromNowMoney: number = 0;
|
|
325
|
-
/** 合同状态 */
|
|
326
|
-
yzhtStat: number = 0;
|
|
327
327
|
|
|
328
328
|
listLock: IBillMainResponse[] = [];
|
|
329
329
|
|
|
@@ -361,7 +361,7 @@ export class TBillMainResponse implements IBillMainResponse {
|
|
|
361
361
|
return result;
|
|
362
362
|
}
|
|
363
363
|
|
|
364
|
-
static toWldyPrintData(bill
|
|
364
|
+
static toWldyPrintData(bill: IBillMainResponse) {
|
|
365
365
|
const data = new TStim.TStimulsoftPrintData();
|
|
366
366
|
data.billMain = String(bill.billIndx);
|
|
367
367
|
data.menuUUID = bill.menuUUID;
|
|
@@ -54,6 +54,10 @@ export interface IUserLiteResponse {
|
|
|
54
54
|
acnoKhyh: string; //#开户银行
|
|
55
55
|
acnoTypeText: string;
|
|
56
56
|
aplMoney: number;
|
|
57
|
+
userKJND: number;
|
|
58
|
+
usciCode: string;
|
|
59
|
+
wbField0: string;
|
|
60
|
+
createAt: number;
|
|
57
61
|
|
|
58
62
|
userIdcd: string;
|
|
59
63
|
wbField4: string;
|
|
@@ -145,6 +149,10 @@ export class TUserLiteResponse implements IUserLiteResponse {
|
|
|
145
149
|
userUnitText: string = ""; // 所有单位
|
|
146
150
|
userZwlxText: string = "";
|
|
147
151
|
userTypeText: string = "";
|
|
152
|
+
userKJND: number = 0;
|
|
153
|
+
usciCode: string = "";
|
|
154
|
+
wbField0: string = "";
|
|
155
|
+
createAt: number = 0;
|
|
148
156
|
|
|
149
157
|
fromWhoBuild: number = 0; // #租户实例
|
|
150
158
|
fromUserIndx: number = 0; // #租户实例
|