@kmkf-fe-packages/kmkf-work-order-service-component 2.2.6 → 2.2.8

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.
@@ -0,0 +1,292 @@
1
+ function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
2
+ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
3
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
4
+ function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
5
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
6
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
7
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
8
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
9
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
10
+ function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i.return && (_r = _i.return(), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } }
11
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
12
+ /**
13
+ * 组件值映射依赖关系查找器 - TypeScript ES Module版本
14
+ * 根据值映射配置查找组件之间的依赖关系
15
+ */
16
+
17
+ /**
18
+ * 查找组件的所有反向依赖(哪些组件会影响当前组件的值)
19
+ * @param targetComponentKey - 目标组件key
20
+ * @param config - 值映射配置对象
21
+ * @returns 反向依赖关系结果
22
+ */
23
+ export function findValueDependencies(targetComponentKey, config) {
24
+ var dependencies = [];
25
+
26
+ // 遍历配置中的所有组件
27
+ Object.entries(config).forEach(function (_ref) {
28
+ var _ref2 = _slicedToArray(_ref, 2),
29
+ sourceComponentKey = _ref2[0],
30
+ componentMapping = _ref2[1];
31
+ // 跳过 SHOP_SELECT_MAPPING 等非组件映射的配置
32
+ if (_typeof(componentMapping) !== 'object' || componentMapping === null) {
33
+ return;
34
+ }
35
+ var sourceValues = [];
36
+ var mappingDetails = [];
37
+
38
+ // 遍历源组件的所有值映射
39
+ Object.entries(componentMapping).forEach(function (_ref3) {
40
+ var _ref4 = _slicedToArray(_ref3, 2),
41
+ sourceValue = _ref4[0],
42
+ valueMapping = _ref4[1];
43
+ // 检查这个值映射中是否包含目标组件
44
+ if (_typeof(valueMapping) === 'object' && valueMapping !== null) {
45
+ // 检查是否有目标组件的映射
46
+ if (targetComponentKey in valueMapping) {
47
+ var targetMapping = valueMapping[targetComponentKey];
48
+ var targetValue;
49
+
50
+ // 处理不同格式的目标值
51
+ if (typeof targetMapping === 'string') {
52
+ targetValue = targetMapping;
53
+ } else if (Array.isArray(targetMapping)) {
54
+ targetValue = targetMapping.join(', '); // 数组转为字符串
55
+ } else if (_typeof(targetMapping) === 'object' && targetMapping !== null && 'value' in targetMapping) {
56
+ targetValue = targetMapping.value;
57
+ } else {
58
+ return; // 跳过无效的映射
59
+ }
60
+
61
+ sourceValues.push(sourceValue);
62
+ mappingDetails.push({
63
+ sourceValue: sourceValue,
64
+ targetValue: targetValue
65
+ });
66
+ }
67
+ }
68
+ });
69
+
70
+ // 如果找到了依赖关系,添加到结果中
71
+ if (sourceValues.length > 0) {
72
+ dependencies.push({
73
+ sourceComponent: sourceComponentKey,
74
+ sourceValues: sourceValues,
75
+ mappingDetails: mappingDetails
76
+ });
77
+ }
78
+ });
79
+ return {
80
+ targetComponent: targetComponentKey,
81
+ dependencies: dependencies,
82
+ dependencyCount: dependencies.length,
83
+ totalMappings: dependencies.reduce(function (sum, dep) {
84
+ return sum + dep.mappingDetails.length;
85
+ }, 0)
86
+ };
87
+ }
88
+
89
+ /**
90
+ * 查找所有组件的反向依赖关系
91
+ * @param config - 值映射配置对象
92
+ * @returns 所有组件的反向依赖关系图
93
+ */
94
+ export function buildValueDependencyGraph(config) {
95
+ var dependencyGraph = {};
96
+
97
+ // 首先收集所有可能的目标组件
98
+ var allTargetComponents = new Set();
99
+ Object.values(config).forEach(function (componentMapping) {
100
+ if (_typeof(componentMapping) === 'object' && componentMapping !== null) {
101
+ Object.values(componentMapping).forEach(function (valueMapping) {
102
+ if (_typeof(valueMapping) === 'object' && valueMapping !== null) {
103
+ Object.keys(valueMapping).forEach(function (targetKey) {
104
+ allTargetComponents.add(targetKey);
105
+ });
106
+ }
107
+ });
108
+ }
109
+ });
110
+
111
+ // 为每个目标组件构建依赖关系
112
+ allTargetComponents.forEach(function (targetComponent) {
113
+ dependencyGraph[targetComponent] = findValueDependencies(targetComponent, config);
114
+ });
115
+ return dependencyGraph;
116
+ }
117
+
118
+ /**
119
+ * 查找特定源组件和值对目标组件的影响
120
+ * @param sourceComponentKey - 源组件key
121
+ * @param sourceValue - 源组件的值
122
+ * @param config - 值映射配置对象
123
+ * @returns 受影响的目标组件及其值
124
+ */
125
+ export function findTargetsBySourceValue(sourceComponentKey, sourceValue, config) {
126
+ var results = [];
127
+ var componentMapping = config[sourceComponentKey];
128
+ if (_typeof(componentMapping) !== 'object' || componentMapping === null) {
129
+ return results;
130
+ }
131
+ var valueMapping = componentMapping[sourceValue];
132
+ if (_typeof(valueMapping) !== 'object' || valueMapping === null) {
133
+ return results;
134
+ }
135
+ Object.entries(valueMapping).forEach(function (_ref5) {
136
+ var _ref6 = _slicedToArray(_ref5, 2),
137
+ targetComponent = _ref6[0],
138
+ targetMapping = _ref6[1];
139
+ var targetValue;
140
+ if (typeof targetMapping === 'string') {
141
+ targetValue = targetMapping;
142
+ } else if (Array.isArray(targetMapping)) {
143
+ targetValue = targetMapping.join(', '); // 数组转为字符串
144
+ } else if (_typeof(targetMapping) === 'object' && targetMapping !== null && 'value' in targetMapping) {
145
+ targetValue = targetMapping.value;
146
+ } else {
147
+ return; // 跳过无效的映射
148
+ }
149
+
150
+ results.push({
151
+ targetComponent: targetComponent,
152
+ targetValue: targetValue
153
+ });
154
+ });
155
+ return results;
156
+ }
157
+
158
+ /**
159
+ * 获取所有源组件的统计信息
160
+ * @param config - 值映射配置对象
161
+ * @returns 源组件统计信息
162
+ */
163
+ export function getSourceComponentStats(config) {
164
+ var stats = [];
165
+ Object.entries(config).forEach(function (_ref7) {
166
+ var _ref8 = _slicedToArray(_ref7, 2),
167
+ componentKey = _ref8[0],
168
+ componentMapping = _ref8[1];
169
+ if (_typeof(componentMapping) !== 'object' || componentMapping === null) {
170
+ return;
171
+ }
172
+ var allTargets = new Set();
173
+ var totalMappings = 0;
174
+ var valueCount = Object.keys(componentMapping).length;
175
+ Object.values(componentMapping).forEach(function (valueMapping) {
176
+ if (_typeof(valueMapping) === 'object' && valueMapping !== null) {
177
+ Object.keys(valueMapping).forEach(function (targetKey) {
178
+ allTargets.add(targetKey);
179
+ totalMappings++;
180
+ });
181
+ }
182
+ });
183
+ stats.push({
184
+ componentKey: componentKey,
185
+ valueCount: valueCount,
186
+ targetCount: allTargets.size,
187
+ totalMappings: totalMappings
188
+ });
189
+ });
190
+ return stats.sort(function (a, b) {
191
+ return b.totalMappings - a.totalMappings;
192
+ });
193
+ }
194
+
195
+ /**
196
+ * 查找值映射链(A影响B,B影响C的传递关系)
197
+ * @param startComponent - 起始组件
198
+ * @param config - 值映射配置对象
199
+ * @param maxDepth - 最大深度
200
+ * @returns 映射链
201
+ */
202
+ export function findValueMappingChain(startComponent, config) {
203
+ var maxDepth = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 3;
204
+ var chains = [];
205
+ var visited = new Set();
206
+ function dfs(currentComponent, path, depth) {
207
+ if (depth >= maxDepth || visited.has(currentComponent)) {
208
+ return;
209
+ }
210
+ visited.add(currentComponent);
211
+
212
+ // 查找当前组件影响的目标组件
213
+ var componentMapping = config[currentComponent];
214
+ if (_typeof(componentMapping) === 'object' && componentMapping !== null) {
215
+ var targets = new Set();
216
+ Object.values(componentMapping).forEach(function (valueMapping) {
217
+ if (_typeof(valueMapping) === 'object' && valueMapping !== null) {
218
+ Object.keys(valueMapping).forEach(function (targetKey) {
219
+ targets.add(targetKey);
220
+ });
221
+ }
222
+ });
223
+ targets.forEach(function (target) {
224
+ var newPath = [].concat(_toConsumableArray(path), [target]);
225
+ chains.push({
226
+ chain: newPath,
227
+ depth: depth + 1
228
+ });
229
+
230
+ // 递归查找更深层的链
231
+ dfs(target, newPath, depth + 1);
232
+ });
233
+ }
234
+ visited.delete(currentComponent);
235
+ }
236
+ dfs(startComponent, [startComponent], 0);
237
+ return chains.filter(function (chain) {
238
+ return chain.depth > 1;
239
+ }); // 只返回长度大于1的链
240
+ }
241
+
242
+ /**
243
+ * 验证值映射配置的格式
244
+ * @param config - 要验证的配置对象
245
+ * @returns 验证结果
246
+ */
247
+ export function validateValueMappingConfig(config) {
248
+ var errors = [];
249
+ var warnings = [];
250
+ if (!config || _typeof(config) !== 'object') {
251
+ errors.push('配置必须是一个对象');
252
+ return {
253
+ isValid: false,
254
+ errors: errors,
255
+ warnings: warnings
256
+ };
257
+ }
258
+ var configObj = config;
259
+ Object.entries(configObj).forEach(function (_ref9) {
260
+ var _ref10 = _slicedToArray(_ref9, 2),
261
+ componentKey = _ref10[0],
262
+ componentMapping = _ref10[1];
263
+ if (_typeof(componentMapping) !== 'object' || componentMapping === null) {
264
+ warnings.push("\u7EC4\u4EF6 ".concat(componentKey, " \u7684\u6620\u5C04\u4E0D\u662F\u5BF9\u8C61\uFF0C\u53EF\u80FD\u662F\u7279\u6B8A\u914D\u7F6E"));
265
+ return;
266
+ }
267
+ var mapping = componentMapping;
268
+ Object.entries(mapping).forEach(function (_ref11) {
269
+ var _ref12 = _slicedToArray(_ref11, 2),
270
+ value = _ref12[0],
271
+ valueMapping = _ref12[1];
272
+ if (_typeof(valueMapping) !== 'object' || valueMapping === null) {
273
+ warnings.push("\u7EC4\u4EF6 ".concat(componentKey, " \u7684\u503C ").concat(value, " \u7684\u6620\u5C04\u4E0D\u662F\u5BF9\u8C61"));
274
+ return;
275
+ }
276
+ var valueMappingObj = valueMapping;
277
+ Object.entries(valueMappingObj).forEach(function (_ref13) {
278
+ var _ref14 = _slicedToArray(_ref13, 2),
279
+ targetComponent = _ref14[0],
280
+ targetMapping = _ref14[1];
281
+ if (typeof targetMapping !== 'string' && !Array.isArray(targetMapping) && (_typeof(targetMapping) !== 'object' || targetMapping === null || !('value' in targetMapping))) {
282
+ errors.push("\u7EC4\u4EF6 ".concat(componentKey, " \u503C ").concat(value, " \u5230 ").concat(targetComponent, " \u7684\u6620\u5C04\u683C\u5F0F\u65E0\u6548"));
283
+ }
284
+ });
285
+ });
286
+ });
287
+ return {
288
+ isValid: errors.length === 0,
289
+ errors: errors,
290
+ warnings: warnings
291
+ };
292
+ }
@@ -0,0 +1,65 @@
1
+ /**
2
+ * 组件值映射相关类型定义
3
+ */
4
+ export interface TargetValueMapping {
5
+ value: string;
6
+ other?: string;
7
+ }
8
+ export declare type ValueMappingItem = string | TargetValueMapping | string[];
9
+ export interface SingleValueMapping {
10
+ [targetComponentKey: string]: ValueMappingItem;
11
+ }
12
+ export interface ComponentValueMapping {
13
+ [sourceValue: string]: SingleValueMapping;
14
+ }
15
+ export interface ValueMappingConfig {
16
+ [sourceComponentKey: string]: ComponentValueMapping | any;
17
+ }
18
+ export interface ValueDependencyResult {
19
+ targetComponent: string;
20
+ dependencies: Array<{
21
+ sourceComponent: string;
22
+ sourceValues: string[];
23
+ mappingDetails: Array<{
24
+ sourceValue: string;
25
+ targetValue: string;
26
+ }>;
27
+ }>;
28
+ dependencyCount: number;
29
+ totalMappings: number;
30
+ }
31
+ export interface SourceComponentStat {
32
+ componentKey: string;
33
+ valueCount: number;
34
+ targetCount: number;
35
+ totalMappings: number;
36
+ }
37
+ export interface MappingChainNode {
38
+ chain: string[];
39
+ depth: number;
40
+ }
41
+ export interface TargetImpact {
42
+ targetComponent: string;
43
+ targetValue: string;
44
+ }
45
+ export interface ValidationResult {
46
+ isValid: boolean;
47
+ errors: string[];
48
+ warnings: string[];
49
+ }
50
+ export interface ValueMappingAnalysis {
51
+ totalSourceComponents: number;
52
+ totalTargetComponents: number;
53
+ totalValueMappings: number;
54
+ mostComplexSource: SourceComponentStat | null;
55
+ mostDependedTarget: {
56
+ componentKey: string;
57
+ dependencyCount: number;
58
+ } | null;
59
+ longestChains: MappingChainNode[];
60
+ }
61
+ export interface ReverseLookupOptions {
62
+ includeEmptyValues?: boolean;
63
+ caseSensitive?: boolean;
64
+ exactMatch?: boolean;
65
+ }
@@ -1,2 +1,10 @@
1
+ /*
2
+ * @Author: flyingMonkey 760958607@qq.com
3
+ * @Date: 2025-09-02 09:45:49
4
+ * @LastEditors: flyingMonkey 760958607@qq.com
5
+ * @LastEditTime: 2025-09-03 10:53:53
6
+ * @FilePath: /kmkf-fe-packages/packages/kmkf-work-order-service-component/src/FlowTemplateDetailV2/constant.ts
7
+ * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
8
+ */
1
9
  // 切换当前店铺时,以下组件字段需要清空
2
- export var NEED_CLEAR_FIELDS_WHEN_SHOP_ID_CHANGE = ['BS_E3_LOGISTICS', 'BS_E3_SEND_GOOD', 'ITEM_SELECT_THIRD', 'STATUS', 'ITEM_SELECT', 'ITEM_ID', 'ITEM_ENCODE', 'JST_LOGISTICS', 'JST_ITEM_SELECT_THIRD', 'JST_SUPPLY', 'JST_SEND_GOOD', 'BS_GOODS', 'BS_EXCHANGE_GOODS', 'BS_REISSUE_GOODS', 'BS_RETURN_GOODS', 'BS_LOGISTICS', 'BS_SEND_GOOD', 'BS_SYSTEM_ORDER', 'WLN_SYSTEM_ORDER', 'WLN_GOODS', 'WLN_LOGISTICS', 'WLN_SEND_GOOD', 'WDT_LOGISTICS', 'WDT_SEND_GOOD', 'WDT_SYSTEM_ORDER', 'WDT_REISSUE_GOODS', 'WDT_RETURN_GOODS', 'WDT_SHOP', 'WDT_EXCHANGE_GOODS', 'KM_SYSTEM_ORDER', 'KM_SEND_GOOD', 'KM_LOGISTICS', 'KM_GOODS', 'KM_REISSUE_GOODS', 'BS_E3_SYSTEM_ORDER', 'JST_SYSTEM_ORDER', 'JST_GOODS', 'JST_REISSUE_GOODS', 'JST_RETURN_GOODS', 'JST_EXCHANGE_GOODS', 'BS_E3_REISSUE_GOODS', 'GY_SYSTEM_ORDER', 'GY_SEND_GOOD', 'GY_GOODS', 'GY_REISSUE_GOODS', 'GY_RETURN_GOODS', 'GY_LOGISTICS', 'SKX_OUTBOUND_NOTICE_NO', 'SKX_SHOP_NAME', 'SKX_WAREHOUSE', 'SKX_LOGISTICS', 'SKX_GOODS', 'SKX_ORDER_TYPE', 'SKX_ORDER_STATUS', 'SKX_CREATE_TIME'];
10
+ export var NEED_CLEAR_FIELDS_WHEN_SHOP_ID_CHANGE = ['BS_E3_LOGISTICS', 'BS_E3_SEND_GOOD', 'ITEM_SELECT_THIRD', 'STATUS', 'ITEM_SELECT', 'ITEM_ID', 'ITEM_ENCODE', 'JST_LOGISTICS', 'JST_ITEM_SELECT_THIRD', 'JST_SUPPLY', 'JST_SEND_GOOD', 'BS_GOODS', 'BS_EXCHANGE_GOODS', 'BS_REISSUE_GOODS', 'BS_RETURN_GOODS', 'BS_LOGISTICS', 'BS_SEND_GOOD', 'BS_SYSTEM_ORDER', 'WLN_SYSTEM_ORDER', 'WLN_GOODS', 'WLN_LOGISTICS', 'WLN_SEND_GOOD', 'WDT_LOGISTICS', 'WDT_SEND_GOOD', 'WDT_SYSTEM_ORDER', 'WDT_REISSUE_GOODS', 'WDT_RETURN_GOODS', 'WDT_SHOP', 'WDT_EXCHANGE_GOODS', 'KM_SYSTEM_ORDER', 'KM_SEND_GOOD', 'KM_LOGISTICS', 'KM_GOODS', 'KM_REISSUE_GOODS', 'BS_E3_SYSTEM_ORDER', 'JST_SYSTEM_ORDER', 'JST_GOODS', 'JST_REISSUE_GOODS', 'JST_RETURN_GOODS', 'JST_EXCHANGE_GOODS', 'BS_E3_REISSUE_GOODS', 'GY_SYSTEM_ORDER', 'GY_SEND_GOOD', 'GY_GOODS', 'GY_REISSUE_GOODS', 'GY_RETURN_GOODS', 'GY_LOGISTICS', 'SKX_OUTBOUND_NOTICE_NO', 'SKX_RETURN_BILL_NO', 'SKX_REFUND_BILL_NO', 'SKX_SHOP_NAME', 'SKX_WAREHOUSE', 'SKX_LOGISTICS', 'SKX_RETURN_LOGISTICS', 'SKX_GOODS', 'SKX_RETURN_GOODS', 'SKX_ORDER_TYPE', 'SKX_RETURN_ORDER_STATUS', 'SKX_ORDER_STATUS', 'SKX_CREATE_TIME'];
@@ -1,9 +1,12 @@
1
1
  export declare const updateWorkTypeKeys: any;
2
2
  export declare const processSingleFieldTypeMapping: {
3
3
  SKX_OUTBOUND_NOTICE_NO: string;
4
+ SKX_RETURN_BILL_NO: string;
5
+ SKX_REFUND_BILL_NO: string;
4
6
  SKX_SHOP_NAME: string;
5
7
  SKX_WAREHOUSE: string;
6
8
  SKX_ORDER_TYPE: string;
9
+ SKX_RETURN_ORDER_STATUS: string;
7
10
  SKX_ORDER_STATUS: string;
8
11
  SKX_CREATE_TIME: string;
9
12
  };
@@ -34,9 +34,12 @@ export var updateWorkTypeKeys = {
34
34
  //直接将key component 添加到 transformWorkOrderData中的componentProcessors
35
35
  export var processSingleFieldTypeMapping = {
36
36
  SKX_OUTBOUND_NOTICE_NO: 'skxOutboundNoticeNo',
37
+ SKX_RETURN_BILL_NO: 'skxReturnBillNo',
38
+ SKX_REFUND_BILL_NO: 'skxRefundBillNo',
37
39
  SKX_SHOP_NAME: 'skxShopName',
38
40
  SKX_WAREHOUSE: 'skxWarehouse',
39
41
  SKX_ORDER_TYPE: 'skxOrderType',
42
+ SKX_RETURN_ORDER_STATUS: 'skxReturnOrderStatus',
40
43
  SKX_ORDER_STATUS: 'skxOrderStatus',
41
44
  SKX_CREATE_TIME: 'dateTime'
42
45
  };
@@ -108,7 +111,8 @@ export var DEFAULT_STRING_COMPONENT_TYPE_FIELD_MAPPING = {
108
111
  EXECUTE_ACTION_TYPE: 'executeActionType',
109
112
  SKX_CREATE_TIME: 'dateTime',
110
113
  SKX_OUTBOUND_NOTICE_NO: 'skxOutboundNoticeNo',
111
- ERP_ORDER_STATUS: 'erpOrderStatus'
114
+ ERP_ORDER_STATUS: 'erpOrderStatus',
115
+ SKX_RETURN_BILL_NO: 'skxReturnBillNo'
112
116
  };
113
117
  export var DEFAULT_ARRAY_COMPONENT_TYPE_FIELD_MAPPING = {
114
118
  RATE: 'rate',
@@ -227,6 +231,11 @@ export var SUBMIT_COMPONENT_ERP_LOGISTICS_MAP = {
227
231
  list: 'skxLogisticsList',
228
232
  company: 'skxLogisticsCompany',
229
233
  code: 'skxLogisticsCode'
234
+ },
235
+ SKX_RETURN_LOGISTICS: {
236
+ list: 'skxReturnLogistics',
237
+ company: 'skxReturnLogisticsCompany',
238
+ code: 'skxReturnLogisticsCode'
230
239
  }
231
240
  };
232
241
  export var SUBMIT_COMPONENT_SEND_GOOD_MAP = {