@ningboyz/types 1.1.151 → 1.1.153
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 +1 -1
- package/src/gzzd/IGzzdMainResponse.ts +16 -16
- package/index.d.ts +0 -1
package/package.json
CHANGED
|
@@ -192,27 +192,27 @@ export class TGzzdMainResponse implements IGzzdMainResponse {
|
|
|
192
192
|
}
|
|
193
193
|
|
|
194
194
|
//#进入流程
|
|
195
|
-
static toFlowData(
|
|
195
|
+
static toFlowData(gzzd: IGzzdMainResponse): TFlowDataResponse {
|
|
196
196
|
const result = new TFlowDataResponse();
|
|
197
|
-
result.whoBuild =
|
|
198
|
-
result.userIndx =
|
|
199
|
-
result.flowMain =
|
|
200
|
-
result.flowNode =
|
|
197
|
+
result.whoBuild = gzzd.whoBuild;
|
|
198
|
+
result.userIndx = gzzd.userIndx;
|
|
199
|
+
result.flowMain = gzzd.flowMain;
|
|
200
|
+
result.flowNode = gzzd.flowNode;
|
|
201
201
|
// result.notified = Const.Todo.CONST_STR_TODO_TYPE_TO_HTQD_WAIT;
|
|
202
|
-
result.entityID =
|
|
203
|
-
result.billMain =
|
|
204
|
-
result.billCode =
|
|
205
|
-
result.billMemo =
|
|
202
|
+
result.entityID = gzzd.entityID;
|
|
203
|
+
result.billMain = gzzd.gzzdIndx;
|
|
204
|
+
result.billCode = String(gzzd.gzzdIndx);
|
|
205
|
+
result.billMemo = gzzd.gzzdMemo;
|
|
206
206
|
result.billUses = "";
|
|
207
207
|
result.ysxmText = "";
|
|
208
208
|
result.outMoney = 0;
|
|
209
|
-
result.createAt =
|
|
210
|
-
result.mastName =
|
|
211
|
-
result.createBy =
|
|
212
|
-
result.unitMain =
|
|
213
|
-
result.menuUUID =
|
|
214
|
-
result.deptMain =
|
|
215
|
-
result.flowStat =
|
|
209
|
+
result.createAt = gzzd.createAt;
|
|
210
|
+
result.mastName = gzzd.mastName;
|
|
211
|
+
result.createBy = gzzd.createBy;
|
|
212
|
+
result.unitMain = gzzd.unitMain;
|
|
213
|
+
result.menuUUID = gzzd.menuUUID;
|
|
214
|
+
result.deptMain = gzzd.deptMain;
|
|
215
|
+
result.flowStat = gzzd.gzzdStat;
|
|
216
216
|
return result;
|
|
217
217
|
}
|
|
218
218
|
}
|
package/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * as Stim from "./src/stim/stimulsoft.reports";
|