wupengfei
2025-03-31 606edf808700e68b4d01acadc53f845f208629c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
export enum BatchBillCheckStatus {
  /**批单待审核 */
  WaitCheck = 1,
  /**批单审核中 */
  Checking = 2,
  /**已生效 */
  InValidate = 10,
  /**批单待支付 */
  WaitPay = 15,
  /**超期未支付 */
  ExpirePay = 20,
  /**支付成功 */
  PaySuccess = 30,
  /**审核不通过 */
  CheckTurnDown = -1,
  /**待退费 */
  WaitForRefund = -10,
  /**已退费 */
  HasRefund = -11,
  /**已撤回 */
  HasReverse = -20,
  /**已删除 */
  HasDeleted = -30,
  /**下发修改 */
  WaitForModify = -40,
}
 
export const BatchBillCheckStatusText = {
  [BatchBillCheckStatus.WaitCheck]: '待审核',
  [BatchBillCheckStatus.Checking]: '审核中',
  [BatchBillCheckStatus.InValidate]: '已生效',
  [BatchBillCheckStatus.WaitPay]: '待支付',
  [BatchBillCheckStatus.ExpirePay]: '超期未支付',
  // [BatchBillCheckStatus.PaySuccess]: '支付成功',
  [BatchBillCheckStatus.CheckTurnDown]: '不通过',
  [BatchBillCheckStatus.WaitForRefund]: '待退费',
  [BatchBillCheckStatus.HasRefund]: '已退费',
  [BatchBillCheckStatus.HasReverse]: '已撤回',
  [BatchBillCheckStatus.HasDeleted]: '已删除',
  [BatchBillCheckStatus.WaitForModify]: '下发修改',
};
 
export enum BatchChangeTypeEnum {
  /**批增 */
  Add = 10,
  /**批减 */
  Delete = 20,
  /**替换 */
  Update = 30,
  /**加减人 */
  AddAndSub = 40,
}
 
export const BatchChangeTypeEnumText = {
  [BatchChangeTypeEnum.Add]: '批增',
  [BatchChangeTypeEnum.Delete]: '批减',
  [BatchChangeTypeEnum.Update]: '替换',
  [BatchChangeTypeEnum.AddAndSub]: '加减人',
};