Browse Source

Merge branch 'master' of 192.168.1.41:SmartCost/SCCommon

lipk 3 years atrás
parent
commit
a2a86700b3
2 changed files with 18 additions and 4 deletions
  1. 16 0
      types/src/interface/business.ts
  2. 2 4
      types/src/interface/process.ts

+ 16 - 0
types/src/interface/business.ts

@@ -15,3 +15,19 @@ export enum ShowBusinessType {
   MY_PARTICIPATE_BUSINESS = 'myParticipateBusiness', // 我参与的业务
   MY_COLLABORATE_BUSINESS = 'myCollaborateBusiness', // 我协审的业务
 }
+
+// 业务金额字段枚举
+export enum BusinessFee {
+  // 送审金额、原报金额
+  ORIGINAL = 'orgFee',
+  // 审结金额
+  CONCLUSION = 'conclusionFee',
+  // 审增金额
+  INC = 'incFee',
+  // 审减金额
+  DEC = 'decFee',
+  // 动态金额(当前最新金额)
+  DYNAMIC = 'dynamicFee',
+  // 预留金
+  PROVISIONAL = 'provisionalFee',
+}

+ 2 - 4
types/src/interface/process.ts

@@ -305,10 +305,8 @@ export interface IReturnInfo {
 }
 
 export interface IReturnProcessInfo {
-  returnProcessID?: string;
-  returnProcessReferenceID?: string;
-  nextProcessID?: string;
-  nextProcessReferenceID: string;
+  nextProcessReferenceID?: string;
+  rule?: 'skip' | 'restart';
 }
 
 // 3合1步骤中的一个环节