@be-link/ecs-cli-nodejs 0.0.29 → 0.0.31
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/types.d.ts +9 -2
- package/types.js +9 -2
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -95,7 +95,14 @@ export declare namespace Enum {
|
|
|
95
95
|
readonly CARRYOVER: "已结转";
|
|
96
96
|
};
|
|
97
97
|
const FRANCHISEE_SETTLE_CYCLE_MAP: {
|
|
98
|
-
readonly MONTHLY: "
|
|
99
|
-
readonly WEEKLY: "
|
|
98
|
+
readonly MONTHLY: "自然月结";
|
|
99
|
+
readonly WEEKLY: "自然周结";
|
|
100
|
+
};
|
|
101
|
+
/** 商家合作类型 */
|
|
102
|
+
const MERCHANT_COOPERATION_TYPE_MAP: {
|
|
103
|
+
readonly 0: "未配置";
|
|
104
|
+
readonly 1: "独立店";
|
|
105
|
+
readonly 2: "店中店";
|
|
106
|
+
readonly 3: "引流店";
|
|
100
107
|
};
|
|
101
108
|
}
|
package/types.js
CHANGED
|
@@ -42,7 +42,14 @@ var Enum;
|
|
|
42
42
|
["CARRYOVER" /* SettleBillStatus.CARRYOVER */]: '已结转',
|
|
43
43
|
};
|
|
44
44
|
Enum.FRANCHISEE_SETTLE_CYCLE_MAP = {
|
|
45
|
-
[FRANCHISEE_SETTLE_CYCLE.MONTHLY]: '
|
|
46
|
-
[FRANCHISEE_SETTLE_CYCLE.WEEKLY]: '
|
|
45
|
+
[FRANCHISEE_SETTLE_CYCLE.MONTHLY]: '自然月结',
|
|
46
|
+
[FRANCHISEE_SETTLE_CYCLE.WEEKLY]: '自然周结',
|
|
47
|
+
};
|
|
48
|
+
/** 商家合作类型 */
|
|
49
|
+
Enum.MERCHANT_COOPERATION_TYPE_MAP = {
|
|
50
|
+
[0 /* MerchantCooperationType.UNCONFIGURED */]: '未配置',
|
|
51
|
+
[1 /* MerchantCooperationType.INDEPENDENT_STORE */]: '独立店',
|
|
52
|
+
[2 /* MerchantCooperationType.STORE_IN_STORE */]: '店中店',
|
|
53
|
+
[3 /* MerchantCooperationType.DRIVAGE */]: '引流店',
|
|
47
54
|
};
|
|
48
55
|
})(Enum || (exports.Enum = Enum = {}));
|