@kmkf-fe-packages/services-components 2.10.9-beta.0 → 2.10.9-beta.10
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/dist/esm/Hooks/useColumnsConfig.d.ts +1 -1
- package/dist/esm/Hooks/useColumnsConfig.js +1 -1
- package/dist/esm/commonComponents/GlobalContext/hook/dist/useGetHasErpData.js +52 -0
- package/dist/esm/commonComponents/GlobalContext/hook/useGetHasErpData.d.ts +1 -1
- package/dist/esm/commonComponents/GlobalContext/hook/useGetHasErpData.js +16 -2
- package/dist/esm/commonComponents/GlobalContext/orderQuery/constants.js +6 -2
- package/dist/esm/commonComponents/GlobalContext/orderQuery/dist/useGetErpAddressData.js +180 -0
- package/dist/esm/commonComponents/GlobalContext/orderQuery/dist/useGetErpLogisticsCompany.js +186 -0
- package/dist/esm/commonComponents/GlobalContext/orderQuery/useGetErpLogisticsCompany.js +13 -12
- package/dist/esm/commonComponents/GlobalContext/orderQuery/useGetErpSendData.js +14 -10
- package/dist/esm/components/BS/BsGoods/dist/index.js +113 -0
- package/dist/esm/components/BS/BsLogistics/index.js +9 -0
- package/dist/esm/components/BS/BsSystemOrder/index.js +5 -3
- package/dist/esm/components/BS/common/expressCode.js +3 -0
- package/dist/esm/components/BS/common/expressCompany.js +3 -0
- package/dist/esm/components/Common/constants/columnsBaseInfoMap.js +4 -2
- package/dist/esm/components/Common/dist/index.js +1019 -0
- package/dist/esm/components/Common/index.js +6 -3
- package/dist/esm/components/CommonHeaderGood/index.js +31 -1
- package/dist/esm/components/CommonMultiStatus/index.d.ts +4 -1
- package/dist/esm/components/CommonMultiStatus/index.js +56 -28
- package/dist/esm/components/DXD/DxdShopSelect/index.d.ts +40 -0
- package/dist/esm/components/DXD/DxdShopSelect/index.js +120 -0
- package/dist/esm/components/JST/JstSendGood/index.d.ts +1 -0
- package/dist/esm/components/JST/JstSendGood/index.js +13 -2
- package/dist/esm/components/Public/Goods/index.js +10 -1
- package/dist/esm/factory.d.ts +2 -2
- package/dist/esm/factory.js +14 -3
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/service/api.d.ts +1 -0
- package/dist/esm/service/api.js +6 -0
- package/package.json +4 -4
|
@@ -21,7 +21,7 @@ import { CopyToClipboard } from "react-copy-to-clipboard";
|
|
|
21
21
|
import styles from "./index.module.less";
|
|
22
22
|
import defaultImg from "./img/default-img.png";
|
|
23
23
|
import CopyText from "../../commonComponents/CopyText";
|
|
24
|
-
import { KM_SYSTEM_ORDER_CONFIG, GY_SYSTEM_ORDER_CONFIG, BS_SYSTEM_ORDER_CONFIG, WLN_SYSTEM_ORDER_CONFIG, WDT_SYSTEM_ORDER_CONFIG, BS_E3_SYSTEM_ORDER_CONFIG, JST_SYSTEM_ORDER_CONFIG, JY_SYSTEM_ORDER_CONFIG, JKY_SYSTEM_ORDER_CONFIG, WDT_RETURN_BILL_NO_CONFIG, PLATFORM_AFTER_SALES_ORDER_CONFIG, msgTypeCh, getMapping, columnsGoodsList } from "@kmkf-fe-packages/kmkf-utils";
|
|
24
|
+
import { KM_SYSTEM_ORDER_CONFIG, GY_SYSTEM_ORDER_CONFIG, BS_SYSTEM_ORDER_CONFIG, WLN_SYSTEM_ORDER_CONFIG, WDT_SYSTEM_ORDER_CONFIG, BS_E3_SYSTEM_ORDER_CONFIG, JST_SYSTEM_ORDER_CONFIG, JY_SYSTEM_ORDER_CONFIG, JKY_SYSTEM_ORDER_CONFIG, WDT_RETURN_BILL_NO_CONFIG, PLATFORM_AFTER_SALES_ORDER_CONFIG, DXD_SYSTEM_ORDER_CONFIG, msgTypeCh, getMapping, columnsGoodsList } from "@kmkf-fe-packages/kmkf-utils";
|
|
25
25
|
import { getColumnsMap } from "./constants/columnsBaseInfoMap";
|
|
26
26
|
import { VideoCameraTwoTone } from "@ant-design/icons";
|
|
27
27
|
import { ApaasImage } from "@kmkf-fe-packages/basic-components";
|
|
@@ -309,6 +309,7 @@ export var BsExpressRender = function BsExpressRender(_ref7) {
|
|
|
309
309
|
var logisticsCompany = item.logisticsCompany,
|
|
310
310
|
logisticsCompanyName = item.logisticsCompanyName;
|
|
311
311
|
var company = logisticsCompanyFormType === "input" ? logisticsCompany : ExpressData.getInstance(platformType).getExpressNameByCode(logisticsCompany, false) || logisticsCompanyName || logisticsCompany;
|
|
312
|
+
console.log("00001--", [platformType, logisticsCompany, ExpressData.getInstance(platformType), ExpressData.getInstance(platformType).getExpressNameByCode(logisticsCompany, false) || logisticsCompanyName || logisticsCompany]);
|
|
312
313
|
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Space, null, /*#__PURE__*/React.createElement(Popover, {
|
|
313
314
|
content: content(item, index),
|
|
314
315
|
overlayStyle: {
|
|
@@ -787,7 +788,8 @@ export var BsSystemOrderTable = function BsSystemOrderTable(_ref14) {
|
|
|
787
788
|
JY_SYSTEM_ORDER: JY_SYSTEM_ORDER_CONFIG.columns,
|
|
788
789
|
JKY_SYSTEM_ORDER: JKY_SYSTEM_ORDER_CONFIG.columns,
|
|
789
790
|
WDT_RETURN_BILL_NO: WDT_RETURN_BILL_NO_CONFIG.columns,
|
|
790
|
-
PLATFORM_AFTER_SALES_ORDER: PLATFORM_AFTER_SALES_ORDER_CONFIG.columns
|
|
791
|
+
PLATFORM_AFTER_SALES_ORDER: PLATFORM_AFTER_SALES_ORDER_CONFIG.columns,
|
|
792
|
+
DXD_SYSTEM_ORDER: DXD_SYSTEM_ORDER_CONFIG.columns
|
|
791
793
|
};
|
|
792
794
|
var rowKeyMap = {
|
|
793
795
|
BS_SYSTEM_ORDER: "billNo",
|
|
@@ -800,7 +802,8 @@ export var BsSystemOrderTable = function BsSystemOrderTable(_ref14) {
|
|
|
800
802
|
JY_SYSTEM_ORDER: "tradeNo",
|
|
801
803
|
JKY_SYSTEM_ORDER: "tradeNo",
|
|
802
804
|
WDT_RETURN_BILL_NO: "refundNo",
|
|
803
|
-
PLATFORM_AFTER_SALES_ORDER: "afterSaleOrderId"
|
|
805
|
+
PLATFORM_AFTER_SALES_ORDER: "afterSaleOrderId",
|
|
806
|
+
DXD_SYSTEM_ORDER: "orderNo"
|
|
804
807
|
};
|
|
805
808
|
var rowSelection = {
|
|
806
809
|
type: isRadio ? "radio" : "checkbox",
|
|
@@ -19,7 +19,7 @@ import { isNull, BS_E3_BOOLEAN_STATUS_MAP } from "@kmkf-fe-packages/kmkf-utils";
|
|
|
19
19
|
import { BsHeaderPic, BsHeaderChild } from "../BS/common";
|
|
20
20
|
import ReissueGift from "../BsE3/ReissueGift";
|
|
21
21
|
import { erpColumnsMap } from "@kmkf-fe-packages/basic-components";
|
|
22
|
-
import { getJstColumns, getKmColumns } from "@kmkf-fe-packages/basic-components";
|
|
22
|
+
import { getJstColumns, getKmColumns, getDxdColumns } from "@kmkf-fe-packages/basic-components";
|
|
23
23
|
var orderGoodsHeaderComponentMap = {
|
|
24
24
|
pic: BsHeaderPic
|
|
25
25
|
};
|
|
@@ -2564,6 +2564,36 @@ var GoodHeaderMap = {
|
|
|
2564
2564
|
},
|
|
2565
2565
|
moneyKey: "sellTotal"
|
|
2566
2566
|
},
|
|
2567
|
+
DXD_GOODS: {
|
|
2568
|
+
headerMap: getDxdColumns()["DXD_GOODS"].reduce(function (acc, item) {
|
|
2569
|
+
acc[item.dataIndex] = _objectSpread(_objectSpread({}, item.headerMapping || {}), {}, {
|
|
2570
|
+
component: orderGoodsHeaderComponentMap[item.headerComponentType] || BsHeaderChild,
|
|
2571
|
+
name: item.title,
|
|
2572
|
+
key: item.dataIndex,
|
|
2573
|
+
width: item.width || 150
|
|
2574
|
+
});
|
|
2575
|
+
return acc;
|
|
2576
|
+
}, {}),
|
|
2577
|
+
itemKey: getDxdColumns()["DXD_GOODS"].reduce(function (acc, item) {
|
|
2578
|
+
acc[item.dataIndex] = item.title;
|
|
2579
|
+
return acc;
|
|
2580
|
+
}, {})
|
|
2581
|
+
},
|
|
2582
|
+
DXD_SUPPLIERS: {
|
|
2583
|
+
headerMap: getDxdColumns()["DXD_SUPPLIERS"].reduce(function (acc, item) {
|
|
2584
|
+
acc[item.dataIndex] = _objectSpread(_objectSpread({}, item.headerMapping || {}), {}, {
|
|
2585
|
+
component: orderGoodsHeaderComponentMap[item.headerComponentType] || BsHeaderChild,
|
|
2586
|
+
name: item.title,
|
|
2587
|
+
key: item.dataIndex,
|
|
2588
|
+
width: item.width || 150
|
|
2589
|
+
});
|
|
2590
|
+
return acc;
|
|
2591
|
+
}, {}),
|
|
2592
|
+
itemKey: getDxdColumns()["DXD_SUPPLIERS"].reduce(function (acc, item) {
|
|
2593
|
+
acc[item.dataIndex] = item.title;
|
|
2594
|
+
return acc;
|
|
2595
|
+
}, {})
|
|
2596
|
+
},
|
|
2567
2597
|
JKY_REISSUE_GOODS: {
|
|
2568
2598
|
headerMap: {
|
|
2569
2599
|
goodsNo: {
|
|
@@ -14,7 +14,10 @@ declare class CommonMultiStatus implements ComponentInterface {
|
|
|
14
14
|
children: ComponentInterface[];
|
|
15
15
|
dataType: ComponentInterface["dataType"];
|
|
16
16
|
isSingleValue: boolean;
|
|
17
|
-
|
|
17
|
+
ext?: {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
};
|
|
20
|
+
constructor(options: PickOption, ext?: {});
|
|
18
21
|
renderClient: (record: any) => React.JSX.Element | null;
|
|
19
22
|
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
20
23
|
renderLog: (r: Record) => React.JSX.Element | null;
|
|
@@ -134,6 +134,29 @@ var typeMap = {
|
|
|
134
134
|
failValue: "失败",
|
|
135
135
|
dataType: "array_object"
|
|
136
136
|
},
|
|
137
|
+
DXD_WAREHOUSING_STATUS: {
|
|
138
|
+
options: [{
|
|
139
|
+
value: "已入库",
|
|
140
|
+
label: "已入库",
|
|
141
|
+
color: "#52c41a"
|
|
142
|
+
}, {
|
|
143
|
+
value: "未入库",
|
|
144
|
+
label: "未入库",
|
|
145
|
+
color: "#ff4d4f"
|
|
146
|
+
}, {
|
|
147
|
+
value: "查无此单",
|
|
148
|
+
label: "查无此单",
|
|
149
|
+
color: "#e7780f"
|
|
150
|
+
}],
|
|
151
|
+
key: "dxdInStockStatusItemList",
|
|
152
|
+
code: "dxdInStockStatusList",
|
|
153
|
+
name: "商品入库状态",
|
|
154
|
+
type: 2,
|
|
155
|
+
valueKey: "status",
|
|
156
|
+
idKey: "systemOrderId",
|
|
157
|
+
failValue: "失败",
|
|
158
|
+
dataType: "array_object"
|
|
159
|
+
},
|
|
137
160
|
WLN_WAREHOUSING_STATUS: {
|
|
138
161
|
options: [{
|
|
139
162
|
value: "1",
|
|
@@ -192,53 +215,53 @@ var typeMap = {
|
|
|
192
215
|
failValue: "失败",
|
|
193
216
|
dataType: "array_object"
|
|
194
217
|
},
|
|
195
|
-
|
|
218
|
+
JST_WAREHOUSING_STATUS: {
|
|
196
219
|
options: [{
|
|
197
|
-
value: "
|
|
220
|
+
value: "1",
|
|
198
221
|
label: "未入库",
|
|
199
222
|
color: "#ff4d4f"
|
|
200
223
|
}, {
|
|
201
|
-
value: "
|
|
224
|
+
value: "2",
|
|
202
225
|
label: "部分入库",
|
|
203
226
|
color: "#e7780f"
|
|
204
227
|
}, {
|
|
205
|
-
value: "
|
|
206
|
-
label: "
|
|
228
|
+
value: "3",
|
|
229
|
+
label: "已入库",
|
|
207
230
|
color: "#52c41a"
|
|
231
|
+
}, {
|
|
232
|
+
label: "已入库-多收",
|
|
233
|
+
value: "4",
|
|
234
|
+
color: "#e7780f"
|
|
208
235
|
}],
|
|
209
|
-
key: "
|
|
210
|
-
code: "
|
|
211
|
-
name: "
|
|
236
|
+
key: "jstInStockStatusItemList",
|
|
237
|
+
code: "jstInStockStatusList",
|
|
238
|
+
name: "聚水潭商品入库状态",
|
|
212
239
|
type: 2,
|
|
213
240
|
valueKey: "status",
|
|
214
|
-
idKey: "
|
|
241
|
+
idKey: "sourceTradeNo",
|
|
215
242
|
failValue: "失败",
|
|
216
243
|
dataType: "array_object"
|
|
217
244
|
},
|
|
218
|
-
|
|
245
|
+
KM_WAREHOUSING_STATUS: {
|
|
219
246
|
options: [{
|
|
220
|
-
value: "
|
|
247
|
+
value: "0",
|
|
221
248
|
label: "未入库",
|
|
222
249
|
color: "#ff4d4f"
|
|
223
250
|
}, {
|
|
224
|
-
value: "
|
|
251
|
+
value: "1",
|
|
225
252
|
label: "部分入库",
|
|
226
253
|
color: "#e7780f"
|
|
227
254
|
}, {
|
|
228
|
-
value: "
|
|
229
|
-
label: "
|
|
255
|
+
value: "2",
|
|
256
|
+
label: "全部入库",
|
|
230
257
|
color: "#52c41a"
|
|
231
|
-
}, {
|
|
232
|
-
label: "已入库-多收",
|
|
233
|
-
value: "4",
|
|
234
|
-
color: "#e7780f"
|
|
235
258
|
}],
|
|
236
|
-
key: "
|
|
237
|
-
code: "
|
|
238
|
-
name: "
|
|
259
|
+
key: "kmInStockStatusItemList",
|
|
260
|
+
code: "kmInStockStatusList",
|
|
261
|
+
name: "商品入库状态",
|
|
239
262
|
type: 2,
|
|
240
263
|
valueKey: "status",
|
|
241
|
-
idKey: "
|
|
264
|
+
idKey: "systemOrderId",
|
|
242
265
|
failValue: "失败",
|
|
243
266
|
dataType: "array_object"
|
|
244
267
|
}
|
|
@@ -250,7 +273,9 @@ var CommonMultiStatus = /*#__PURE__*/_createClass(function CommonMultiStatus(opt
|
|
|
250
273
|
_typeMap$options$type3,
|
|
251
274
|
_typeMap$options$type4,
|
|
252
275
|
_this$componentConfig5,
|
|
253
|
-
_this$componentConfig6
|
|
276
|
+
_this$componentConfig6,
|
|
277
|
+
_this$ext4;
|
|
278
|
+
var ext = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
254
279
|
_classCallCheck(this, CommonMultiStatus);
|
|
255
280
|
_defineProperty(this, "name", void 0);
|
|
256
281
|
_defineProperty(this, "id", void 0);
|
|
@@ -265,6 +290,7 @@ var CommonMultiStatus = /*#__PURE__*/_createClass(function CommonMultiStatus(opt
|
|
|
265
290
|
_defineProperty(this, "children", void 0);
|
|
266
291
|
_defineProperty(this, "dataType", void 0);
|
|
267
292
|
_defineProperty(this, "isSingleValue", void 0);
|
|
293
|
+
_defineProperty(this, "ext", void 0);
|
|
268
294
|
_defineProperty(this, "renderClient", function (record) {
|
|
269
295
|
var _typeMap$_this$type, _typeMap$_this$type2, _typeMap$_this$type3, _typeMap$_this$type4;
|
|
270
296
|
var isShow = Array.isArray(record === null || record === void 0 ? void 0 : record[_this.id]) ? some(record === null || record === void 0 ? void 0 : record[_this.id], function (item) {
|
|
@@ -343,13 +369,13 @@ var CommonMultiStatus = /*#__PURE__*/_createClass(function CommonMultiStatus(opt
|
|
|
343
369
|
});
|
|
344
370
|
});
|
|
345
371
|
_defineProperty(this, "filterConfig", function (item) {
|
|
346
|
-
var _typeMap$_this$type21, _item$templateConfig;
|
|
372
|
+
var _this$ext, _typeMap$_this$type21, _this$ext2, _item$templateConfig, _this$ext3;
|
|
347
373
|
return {
|
|
348
|
-
searchDefaultConditions:
|
|
374
|
+
searchDefaultConditions: (_this$ext = _this.ext) !== null && _this$ext !== void 0 && _this$ext.isWarehousingStatus ? SYMBOL.in : SYMBOL.like,
|
|
349
375
|
type: item.type,
|
|
350
376
|
id: "".concat(item.id, "_").concat((_typeMap$_this$type21 = typeMap[_this.type]) === null || _typeMap$_this$type21 === void 0 ? void 0 : _typeMap$_this$type21.code),
|
|
351
377
|
name: "".concat(_this.name),
|
|
352
|
-
filterComponentType:
|
|
378
|
+
filterComponentType: (_this$ext2 = _this.ext) !== null && _this$ext2 !== void 0 && _this$ext2.isWarehousingStatus ? "MultipleSelect" : "SelectInput",
|
|
353
379
|
props: {
|
|
354
380
|
options: item === null || item === void 0 ? void 0 : (_item$templateConfig = item.templateConfig) === null || _item$templateConfig === void 0 ? void 0 : _item$templateConfig.reasonList,
|
|
355
381
|
fieldNames: {
|
|
@@ -364,7 +390,7 @@ var CommonMultiStatus = /*#__PURE__*/_createClass(function CommonMultiStatus(opt
|
|
|
364
390
|
return _filterFn.filterSplitComma(_filterFn.filterTableListItemColumnValue(i, item.id, (_typeMap$_this$type22 = typeMap[_this.type]) === null || _typeMap$_this$type22 === void 0 ? void 0 : _typeMap$_this$type22.code), value);
|
|
365
391
|
};
|
|
366
392
|
},
|
|
367
|
-
formatFilterValue:
|
|
393
|
+
formatFilterValue: (_this$ext3 = _this.ext) !== null && _this$ext3 !== void 0 && _this$ext3.isWarehousingStatus ? null : function (value) {
|
|
368
394
|
if (value.type === "in") {
|
|
369
395
|
return value.keywords;
|
|
370
396
|
} else {
|
|
@@ -384,6 +410,7 @@ var CommonMultiStatus = /*#__PURE__*/_createClass(function CommonMultiStatus(opt
|
|
|
384
410
|
this.isCombinationComponent = false;
|
|
385
411
|
this.canSort = false;
|
|
386
412
|
this.children = [];
|
|
413
|
+
this.ext = ext;
|
|
387
414
|
this.dataType = (_typeMap$options$type3 = (_typeMap$options$type4 = typeMap[options.type]) === null || _typeMap$options$type4 === void 0 ? void 0 : _typeMap$options$type4.dataType) !== null && _typeMap$options$type3 !== void 0 ? _typeMap$options$type3 : "object";
|
|
388
415
|
this.rules = (_this$componentConfig5 = this.componentConfig) !== null && _this$componentConfig5 !== void 0 && _this$componentConfig5.required ? [{
|
|
389
416
|
required: true,
|
|
@@ -400,6 +427,7 @@ var CommonMultiStatus = /*#__PURE__*/_createClass(function CommonMultiStatus(opt
|
|
|
400
427
|
}
|
|
401
428
|
}] : [];
|
|
402
429
|
this.align = "left";
|
|
403
|
-
this.
|
|
430
|
+
//优化写法,this.type !== "WAREHOUSING_STATUS"不修改原有逻辑
|
|
431
|
+
this.isSingleValue = ((_this$componentConfig6 = this.componentConfig) === null || _this$componentConfig6 === void 0 ? void 0 : _this$componentConfig6.belongType) === "wdt" || ((_this$ext4 = this.ext) === null || _this$ext4 === void 0 ? void 0 : _this$ext4.isWarehousingStatus) && this.type !== "WAREHOUSING_STATUS";
|
|
404
432
|
});
|
|
405
433
|
export default CommonMultiStatus;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../../type";
|
|
2
|
+
import React from "react";
|
|
3
|
+
declare class DxdShopSelect implements ComponentInterface {
|
|
4
|
+
name: string;
|
|
5
|
+
id: string;
|
|
6
|
+
sortField: string;
|
|
7
|
+
type: string;
|
|
8
|
+
rules: any[];
|
|
9
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
10
|
+
isCombinationComponent: boolean;
|
|
11
|
+
formField: string;
|
|
12
|
+
canSort: boolean;
|
|
13
|
+
children: ComponentInterface[];
|
|
14
|
+
shopDateInstance: InstanceType<any>;
|
|
15
|
+
dataType: ComponentInterface["dataType"];
|
|
16
|
+
options: ComponentInterface["options"];
|
|
17
|
+
optionsMap: {
|
|
18
|
+
[key: string]: string;
|
|
19
|
+
};
|
|
20
|
+
constructor(options: PickOption);
|
|
21
|
+
editRender: (p: any) => React.JSX.Element;
|
|
22
|
+
getLabel: (record: any) => string;
|
|
23
|
+
renderClient: (record: any) => React.JSX.Element | null;
|
|
24
|
+
renderPc: (value: unknown, record: Record) => string;
|
|
25
|
+
renderLog: (r: Record) => string | null;
|
|
26
|
+
getComponentValue: (r: Record) => string;
|
|
27
|
+
renderExport: (value: string, record: Record) => string;
|
|
28
|
+
filterConfig: (item: ColumnConfig) => {
|
|
29
|
+
searchDefaultConditions: "in";
|
|
30
|
+
type: string;
|
|
31
|
+
id: string;
|
|
32
|
+
name: string;
|
|
33
|
+
filterComponentType: "MultipleSelect";
|
|
34
|
+
props: {
|
|
35
|
+
options: any[] | undefined;
|
|
36
|
+
};
|
|
37
|
+
filterFn: (value: string) => (i: Record) => boolean;
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
export default DxdShopSelect;
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
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); }
|
|
2
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
5
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
6
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
7
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
8
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
9
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
10
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
11
|
+
import React from "react";
|
|
12
|
+
import GetFormItem from "../../GetFormItem";
|
|
13
|
+
import ItemView from "../../../commonComponents/ItemView";
|
|
14
|
+
import { isNull, filterFn as _filterFn, DxdShopDataCenter } from "@kmkf-fe-packages/kmkf-utils";
|
|
15
|
+
import { SYMBOL } from "../../../constant";
|
|
16
|
+
import { Select } from "antd";
|
|
17
|
+
var DxdShopSelect = /*#__PURE__*/_createClass(function DxdShopSelect(options) {
|
|
18
|
+
var _this = this,
|
|
19
|
+
_this$options;
|
|
20
|
+
_classCallCheck(this, DxdShopSelect);
|
|
21
|
+
_defineProperty(this, "name", void 0);
|
|
22
|
+
_defineProperty(this, "id", void 0);
|
|
23
|
+
_defineProperty(this, "sortField", void 0);
|
|
24
|
+
_defineProperty(this, "type", void 0);
|
|
25
|
+
_defineProperty(this, "rules", void 0);
|
|
26
|
+
_defineProperty(this, "componentConfig", void 0);
|
|
27
|
+
_defineProperty(this, "isCombinationComponent", void 0);
|
|
28
|
+
_defineProperty(this, "formField", void 0);
|
|
29
|
+
_defineProperty(this, "canSort", void 0);
|
|
30
|
+
_defineProperty(this, "children", void 0);
|
|
31
|
+
_defineProperty(this, "shopDateInstance", void 0);
|
|
32
|
+
_defineProperty(this, "dataType", void 0);
|
|
33
|
+
_defineProperty(this, "options", void 0);
|
|
34
|
+
_defineProperty(this, "optionsMap", void 0);
|
|
35
|
+
_defineProperty(this, "editRender", function (p) {
|
|
36
|
+
var _this$componentConfig, _this$componentConfig2, _this$componentConfig3, _this$componentConfig4;
|
|
37
|
+
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
38
|
+
title: _this.name,
|
|
39
|
+
name: _this.id,
|
|
40
|
+
rules: _this.rules,
|
|
41
|
+
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
42
|
+
display: p === null || p === void 0 ? void 0 : p.display,
|
|
43
|
+
required: (_this$componentConfig = (_this$componentConfig2 = _this.componentConfig) === null || _this$componentConfig2 === void 0 ? void 0 : _this$componentConfig2.required) !== null && _this$componentConfig !== void 0 ? _this$componentConfig : false,
|
|
44
|
+
tooltip: (_this$componentConfig3 = _this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.showTooltip ? (_this$componentConfig4 = _this.componentConfig) === null || _this$componentConfig4 === void 0 ? void 0 : _this$componentConfig4.tooltip : "",
|
|
45
|
+
component: /*#__PURE__*/React.createElement(Select, _extends({}, _this.componentConfig, {
|
|
46
|
+
style: {
|
|
47
|
+
width: 200
|
|
48
|
+
},
|
|
49
|
+
placeholder: "\u8BF7\u9009\u62E9".concat(_this.name),
|
|
50
|
+
options: _this.options,
|
|
51
|
+
showSearch: true,
|
|
52
|
+
filterOption: function filterOption(input, option) {
|
|
53
|
+
return option.label.includes(input);
|
|
54
|
+
}
|
|
55
|
+
}))
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
_defineProperty(this, "getLabel", function (record) {
|
|
59
|
+
var _this$optionsMap;
|
|
60
|
+
return (_this$optionsMap = _this.optionsMap) === null || _this$optionsMap === void 0 ? void 0 : _this$optionsMap[record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_shopCode")]];
|
|
61
|
+
});
|
|
62
|
+
_defineProperty(this, "renderClient", function (record) {
|
|
63
|
+
return !isNull(_this.getLabel(record)) ? /*#__PURE__*/React.createElement(ItemView, {
|
|
64
|
+
id: _this.id,
|
|
65
|
+
label: _this.name,
|
|
66
|
+
value: _this.getLabel(record)
|
|
67
|
+
}) : null;
|
|
68
|
+
});
|
|
69
|
+
_defineProperty(this, "renderPc", function (value, record) {
|
|
70
|
+
return _this.getLabel(record) ? _this.getLabel(record) : "--";
|
|
71
|
+
});
|
|
72
|
+
_defineProperty(this, "renderLog", function (r) {
|
|
73
|
+
if (isNull(_this.getLabel(r))) return null;
|
|
74
|
+
return _this.renderPc(undefined, r);
|
|
75
|
+
});
|
|
76
|
+
_defineProperty(this, "getComponentValue", function (r) {
|
|
77
|
+
return _this.getLabel(r);
|
|
78
|
+
});
|
|
79
|
+
_defineProperty(this, "renderExport", function (value, record) {
|
|
80
|
+
var _this$getLabel;
|
|
81
|
+
return (_this$getLabel = _this.getLabel(record)) !== null && _this$getLabel !== void 0 ? _this$getLabel : "--";
|
|
82
|
+
});
|
|
83
|
+
_defineProperty(this, "filterConfig", function (item) {
|
|
84
|
+
return {
|
|
85
|
+
searchDefaultConditions: SYMBOL.in,
|
|
86
|
+
type: item.type,
|
|
87
|
+
id: "".concat(item.id, "_shopCode"),
|
|
88
|
+
name: item.name,
|
|
89
|
+
filterComponentType: "MultipleSelect",
|
|
90
|
+
props: {
|
|
91
|
+
options: _this.options
|
|
92
|
+
},
|
|
93
|
+
filterFn: function filterFn(value) {
|
|
94
|
+
return function (i) {
|
|
95
|
+
return value === null || value === void 0 ? void 0 : value.includes(_filterFn.filterTableListItemColumnValue(i, item.id, "shopCode"));
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
};
|
|
99
|
+
});
|
|
100
|
+
this.name = options.name;
|
|
101
|
+
this.id = options.id;
|
|
102
|
+
this.sortField = "".concat(options.id, "_shopCode");
|
|
103
|
+
this.formField = "".concat(options.id, "_shopCode");
|
|
104
|
+
this.type = options.type;
|
|
105
|
+
this.rules = [];
|
|
106
|
+
this.isCombinationComponent = false;
|
|
107
|
+
this.canSort = false;
|
|
108
|
+
this.children = [];
|
|
109
|
+
this.shopDateInstance = DxdShopDataCenter.getInstance();
|
|
110
|
+
this.options = this.shopDateInstance.getShopData();
|
|
111
|
+
this.optionsMap = (_this$options = this.options) === null || _this$options === void 0 ? void 0 : _this$options.reduce(function (acc, cur) {
|
|
112
|
+
acc[cur.value] = cur.label;
|
|
113
|
+
return acc;
|
|
114
|
+
}, {});
|
|
115
|
+
this.componentConfig = _objectSpread(_objectSpread({}, options.componentConfig), {}, {
|
|
116
|
+
options: this.options
|
|
117
|
+
});
|
|
118
|
+
this.dataType = "string";
|
|
119
|
+
});
|
|
120
|
+
export default DxdShopSelect;
|
|
@@ -20,6 +20,7 @@ declare class JstSendGood implements ComponentInterface {
|
|
|
20
20
|
children: ComponentInterface[];
|
|
21
21
|
dataType: ComponentInterface["dataType"];
|
|
22
22
|
format: ComponentInterface["format"];
|
|
23
|
+
effects: ComponentInterface["effects"];
|
|
23
24
|
constructor(options: PickOption);
|
|
24
25
|
getSortChildFields: (type: string, options: PickOption, fieldType?: string) => any;
|
|
25
26
|
renderClient: (record: Record) => React.JSX.Element | null;
|
|
@@ -91,6 +91,14 @@ var typeMap = {
|
|
|
91
91
|
sendName: "jkySendName",
|
|
92
92
|
platformType: "jky",
|
|
93
93
|
dataType: "weakenArray"
|
|
94
|
+
},
|
|
95
|
+
DXD_SEND_GOOD: {
|
|
96
|
+
key: "dxdSendGood",
|
|
97
|
+
name: "dxd",
|
|
98
|
+
sendId: "dxdSendId",
|
|
99
|
+
sendName: "dxdSendName",
|
|
100
|
+
platformType: "dxd",
|
|
101
|
+
dataType: "weakenArray"
|
|
94
102
|
}
|
|
95
103
|
};
|
|
96
104
|
var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
|
|
@@ -115,6 +123,7 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
|
|
|
115
123
|
_defineProperty(this, "children", void 0);
|
|
116
124
|
_defineProperty(this, "dataType", void 0);
|
|
117
125
|
_defineProperty(this, "format", void 0);
|
|
126
|
+
_defineProperty(this, "effects", void 0);
|
|
118
127
|
_defineProperty(this, "getSortChildFields", function (type, options, fieldType) {
|
|
119
128
|
var _typeMap$options$type, _typeMap$options$type2, _typeMap$options$type3;
|
|
120
129
|
var sendName = {
|
|
@@ -179,7 +188,7 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
|
|
|
179
188
|
}).join(",");
|
|
180
189
|
});
|
|
181
190
|
_defineProperty(this, "editRender", function (p) {
|
|
182
|
-
var _this$componentConfig, _this$componentConfig2, _typeMap$_this$type7;
|
|
191
|
+
var _this$componentConfig, _this$componentConfig2, _typeMap$_this$type7, _this$effects;
|
|
183
192
|
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
184
193
|
title: _this.name,
|
|
185
194
|
name: _this.id,
|
|
@@ -191,6 +200,7 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
|
|
|
191
200
|
component: /*#__PURE__*/React.createElement(JstGoods, _extends({}, _this.componentConfig, {
|
|
192
201
|
type: 3,
|
|
193
202
|
platformType: (_typeMap$_this$type7 = typeMap[_this.type]) === null || _typeMap$_this$type7 === void 0 ? void 0 : _typeMap$_this$type7.platformType,
|
|
203
|
+
form: (_this$effects = _this.effects) === null || _this$effects === void 0 ? void 0 : _this$effects.form,
|
|
194
204
|
onlyShowFieldSelect: _this.componentConfig ? _this.componentConfig.showField === "sendName" : false
|
|
195
205
|
}))
|
|
196
206
|
});
|
|
@@ -224,7 +234,7 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
|
|
|
224
234
|
});
|
|
225
235
|
};
|
|
226
236
|
}
|
|
227
|
-
} : ["WDT_SEND_GOOD", "BS_E3_SEND_GOOD", "KM_SEND_GOOD", "GY_SEND_GOOD", "JY_SEND_GOOD", "JKY_SEND_GOOD"].includes(_this.type) ? {
|
|
237
|
+
} : ["WDT_SEND_GOOD", "BS_E3_SEND_GOOD", "KM_SEND_GOOD", "GY_SEND_GOOD", "JY_SEND_GOOD", "JKY_SEND_GOOD", "DXD_SEND_GOOD"].includes(_this.type) ? {
|
|
228
238
|
searchDefaultConditions: SYMBOL.in,
|
|
229
239
|
type: item.type,
|
|
230
240
|
id: "".concat(item.id, "_").concat((_typeMap$_this$type9 = typeMap[_this.type]) === null || _typeMap$_this$type9 === void 0 ? void 0 : _typeMap$_this$type9.sendName),
|
|
@@ -285,6 +295,7 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
|
|
|
285
295
|
this.sortChildField = this.getSortChildFields(((_this$componentConfig3 = this.componentConfig) === null || _this$componentConfig3 === void 0 ? void 0 : _this$componentConfig3.showField) || "", _options, _options.type);
|
|
286
296
|
this.type = _options.type;
|
|
287
297
|
this.dataType = (_typeMap$_options$typ3 = typeMap[_options.type]) === null || _typeMap$_options$typ3 === void 0 ? void 0 : _typeMap$_options$typ3.dataType;
|
|
298
|
+
this.effects = _options === null || _options === void 0 ? void 0 : _options.effects;
|
|
288
299
|
this.rules = (_this$componentConfig4 = this.componentConfig) !== null && _this$componentConfig4 !== void 0 && _this$componentConfig4.required ? [{
|
|
289
300
|
required: true,
|
|
290
301
|
validator: function validator(_, value) {
|
|
@@ -35,6 +35,14 @@ var CONFIG_MAP = {
|
|
|
35
35
|
name: "吉客云",
|
|
36
36
|
key: "jkyGoods"
|
|
37
37
|
},
|
|
38
|
+
DXD_GOODS: {
|
|
39
|
+
name: "大希地",
|
|
40
|
+
key: "dxdGoods"
|
|
41
|
+
},
|
|
42
|
+
DXD_SUPPLIERS: {
|
|
43
|
+
name: "大希地供应商",
|
|
44
|
+
key: "dxdSuppliers"
|
|
45
|
+
},
|
|
38
46
|
WDT_AFTERSALE_GOODS: {
|
|
39
47
|
name: "旺店通售后",
|
|
40
48
|
key: "wdtAftersaleGoods"
|
|
@@ -78,7 +86,8 @@ var PublicGoods = /*#__PURE__*/_createClass(function PublicGoods(options) {
|
|
|
78
86
|
return {
|
|
79
87
|
name: item.title,
|
|
80
88
|
key: "".concat(_this.id, "_").concat(item.dataIndex),
|
|
81
|
-
dataType: "arrayObject"
|
|
89
|
+
dataType: "arrayObject",
|
|
90
|
+
conditionOptionsSetting: item.conditionOptionsSetting
|
|
82
91
|
};
|
|
83
92
|
});
|
|
84
93
|
});
|
package/dist/esm/factory.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ReissueLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicPicturePro, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, SubForm, CommonDataTime, TradeId, ShopName, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsMoreInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, BsPosting, MsgStatus, NodeInput, FlowWorkOrderStatus, WdtGoods, WdtReturn, WdtExchange, CommonInput, PaymentVoucherCode, Label, WdtReissue, GyReissue, AfterSalesOrderId, BsE3Goods, PublicGoods, PublicReissueGoods, PublicExchange, GyGoods, BsE3Reissue, MemberLevel, GyReturn, AsyncSelect, WdtShopSelect, KmVideo, BasicTypeInput, SkxIdInputSelect, SkxGoods, BasicSelectOption, OrderSubForm, FlowOverallStatusSelect, ReturnWarehouse, KmExchange } from "./index";
|
|
1
|
+
import { ReissueLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicPicturePro, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, SubForm, CommonDataTime, TradeId, ShopName, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsMoreInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, BsPosting, MsgStatus, NodeInput, FlowWorkOrderStatus, WdtGoods, WdtReturn, WdtExchange, CommonInput, PaymentVoucherCode, Label, WdtReissue, GyReissue, AfterSalesOrderId, BsE3Goods, PublicGoods, PublicReissueGoods, PublicExchange, GyGoods, BsE3Reissue, MemberLevel, GyReturn, AsyncSelect, WdtShopSelect, DxdShopSelect, KmVideo, BasicTypeInput, SkxIdInputSelect, SkxGoods, BasicSelectOption, OrderSubForm, FlowOverallStatusSelect, ReturnWarehouse, KmExchange } from "./index";
|
|
2
2
|
import { PickOption } from "./type";
|
|
3
|
-
export declare const factory: (type: string, options: PickOption) => CommonMultiStatus | JstSendGood |
|
|
3
|
+
export declare const factory: (type: string, options: PickOption) => CommonMultiStatus | JstSendGood | BasicInput | BasicTypeInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicSelect | BasicSelectOption | BasicRadio | BasicTextArea | BasicPicture | BasicPicturePro | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | SubForm | CommonDataTime | TradeId | ShopName | BuyerNick | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | ReissueLogistics | JstItemSelect | JstSupply | BsSystemOrder | BsGoods | BsE3Goods | PublicGoods | PublicReissueGoods | PublicExchange | BsE3Reissue | BsExchange | BsReissue | BsReturn | BsLogistics | FlowStatusSelect | FlowMarkSelect | FlowTag | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsMoreInterception | LogisticsTrajectory | LogisticsMoreTrajectory | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | CompletedUser | FlowWorkOrderId | StatusSelect | Calculation | CommonSystemOrder | NodeDeadLine | HandlerDeadLine | NodeStayDuration | BsPosting | NodeInput | FlowWorkOrderStatus | MsgStatus | WdtGoods | WdtReissue | WdtReturn | WdtExchange | WdtShopSelect | DxdShopSelect | KmVideo | CommonInput | PaymentVoucherCode | Label | MemberLevel | AfterSalesOrderId | ReturnWarehouse | GyGoods | KmExchange | GyReissue | GyReturn | AsyncSelect | SkxIdInputSelect | SkxGoods | OrderSubForm | FlowOverallStatusSelect;
|
package/dist/esm/factory.js
CHANGED
|
@@ -2,7 +2,7 @@ import { ReissueLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, Ba
|
|
|
2
2
|
// CommonTradeId,
|
|
3
3
|
CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration,
|
|
4
4
|
// WlnGoods,
|
|
5
|
-
BsPosting, MsgStatus, NodeInput, FlowWorkOrderStatus, WdtGoods, WdtReturn, WdtExchange, CommonInput, PaymentVoucherCode, Label, WdtReissue, GyReissue, AfterSalesOrderId, BsE3Goods, PublicGoods, PublicReissueGoods, PublicExchange, GyGoods, BsE3Reissue, MemberLevel, GyReturn, AsyncSelect, WdtShopSelect, KmVideo, BasicTypeInput, SkxIdInputSelect, SkxGoods, BasicSelectOption, OrderSubForm, FlowOverallStatusSelect, ReturnWarehouse, KmExchange } from "./index";
|
|
5
|
+
BsPosting, MsgStatus, NodeInput, FlowWorkOrderStatus, WdtGoods, WdtReturn, WdtExchange, CommonInput, PaymentVoucherCode, Label, WdtReissue, GyReissue, AfterSalesOrderId, BsE3Goods, PublicGoods, PublicReissueGoods, PublicExchange, GyGoods, BsE3Reissue, MemberLevel, GyReturn, AsyncSelect, WdtShopSelect, DxdShopSelect, KmVideo, BasicTypeInput, SkxIdInputSelect, SkxGoods, BasicSelectOption, OrderSubForm, FlowOverallStatusSelect, ReturnWarehouse, KmExchange } from "./index";
|
|
6
6
|
export var factory = function factory(type, options) {
|
|
7
7
|
var _options$componentCon;
|
|
8
8
|
switch (type) {
|
|
@@ -141,6 +141,7 @@ export var factory = function factory(type, options) {
|
|
|
141
141
|
return new JstSupply(options);
|
|
142
142
|
case "BS_SYSTEM_ORDER":
|
|
143
143
|
case "KM_SYSTEM_ORDER":
|
|
144
|
+
case "DXD_SYSTEM_ORDER":
|
|
144
145
|
case "WLN_SYSTEM_ORDER":
|
|
145
146
|
case "WDT_SYSTEM_ORDER":
|
|
146
147
|
case "BS_E3_SYSTEM_ORDER":
|
|
@@ -160,6 +161,7 @@ export var factory = function factory(type, options) {
|
|
|
160
161
|
case "GY_SEND_GOOD":
|
|
161
162
|
case "JY_SEND_GOOD":
|
|
162
163
|
case "JKY_SEND_GOOD":
|
|
164
|
+
case "DXD_SEND_GOOD":
|
|
163
165
|
return new JstSendGood(options);
|
|
164
166
|
case "KM_RETURN_WAREHOUSE":
|
|
165
167
|
return new ReturnWarehouse(options);
|
|
@@ -178,6 +180,8 @@ export var factory = function factory(type, options) {
|
|
|
178
180
|
case "WLN_GOODS":
|
|
179
181
|
case "WDT_AFTERSALE_GOODS":
|
|
180
182
|
case "JST_AFTERSALE_GOODS":
|
|
183
|
+
case "DXD_GOODS":
|
|
184
|
+
case "DXD_SUPPLIERS":
|
|
181
185
|
return new PublicGoods(options);
|
|
182
186
|
case "WLN_REISSUE_GOODS":
|
|
183
187
|
case "JST_REISSUE_GOODS":
|
|
@@ -227,6 +231,7 @@ export var factory = function factory(type, options) {
|
|
|
227
231
|
case "JKY_LOGISTICS":
|
|
228
232
|
case "SKX_LOGISTICS":
|
|
229
233
|
case "SKX_RETURN_LOGISTICS":
|
|
234
|
+
case "DXD_LOGISTICS":
|
|
230
235
|
return new BsLogistics(options);
|
|
231
236
|
case "FLOW_WORK_ORDER_ID_INPUT":
|
|
232
237
|
return new FlowWorkOrderId(options);
|
|
@@ -249,14 +254,18 @@ export var factory = function factory(type, options) {
|
|
|
249
254
|
return new StatusSelect(options);
|
|
250
255
|
case "RETURN_GOODS_STATUS":
|
|
251
256
|
case "EXCHANGE_STATUS":
|
|
257
|
+
return new CommonMultiStatus(options);
|
|
252
258
|
case "WAREHOUSING_STATUS":
|
|
253
259
|
case "BS_E3_WAREHOUSING_STATUS":
|
|
254
260
|
case "WDT_WAREHOUSING_STATUS":
|
|
261
|
+
case "DXD_WAREHOUSING_STATUS":
|
|
255
262
|
case "WLN_WAREHOUSING_STATUS":
|
|
256
263
|
case "JKY_WAREHOUSING_STATUS":
|
|
257
|
-
case "KM_WAREHOUSING_STATUS":
|
|
258
264
|
case "JST_WAREHOUSING_STATUS":
|
|
259
|
-
|
|
265
|
+
case "KM_WAREHOUSING_STATUS":
|
|
266
|
+
return new CommonMultiStatus(options, {
|
|
267
|
+
isWarehousingStatus: true
|
|
268
|
+
});
|
|
260
269
|
case "MSG_STATUS":
|
|
261
270
|
return new MsgStatus(options);
|
|
262
271
|
case "GY_PAYMENT_METHOD":
|
|
@@ -301,6 +310,8 @@ export var factory = function factory(type, options) {
|
|
|
301
310
|
return new MemberLevel(options);
|
|
302
311
|
case "WDT_SHOP":
|
|
303
312
|
return new WdtShopSelect(options);
|
|
313
|
+
case "DXD_SHOP":
|
|
314
|
+
return new DxdShopSelect(options);
|
|
304
315
|
case "KM_VIDEO":
|
|
305
316
|
return new KmVideo(options);
|
|
306
317
|
case "WDT_TAGS":
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -87,6 +87,7 @@ export { default as WdtReissue } from "./components/WDT/WdtRessuie";
|
|
|
87
87
|
export { default as WdtReturn } from "./components/WDT/WdtReturn";
|
|
88
88
|
export { default as WdtExchange } from "./components/WDT/WdtExchange";
|
|
89
89
|
export { default as WdtShopSelect } from "./components/WDT/WdtShopSelect";
|
|
90
|
+
export { default as DxdShopSelect } from "./components/DXD/DxdShopSelect";
|
|
90
91
|
export { default as KmVideo } from "./components/KM/KmVideo";
|
|
91
92
|
export { default as CommonInput } from "./components/CommonInput";
|
|
92
93
|
export { default as PaymentVoucherCode } from "./components/PaymentVoucherCode";
|
package/dist/esm/index.js
CHANGED
|
@@ -87,6 +87,7 @@ export { default as WdtReissue } from "./components/WDT/WdtRessuie";
|
|
|
87
87
|
export { default as WdtReturn } from "./components/WDT/WdtReturn";
|
|
88
88
|
export { default as WdtExchange } from "./components/WDT/WdtExchange";
|
|
89
89
|
export { default as WdtShopSelect } from "./components/WDT/WdtShopSelect";
|
|
90
|
+
export { default as DxdShopSelect } from "./components/DXD/DxdShopSelect";
|
|
90
91
|
export { default as KmVideo } from "./components/KM/KmVideo";
|
|
91
92
|
export { default as CommonInput } from "./components/CommonInput";
|
|
92
93
|
export { default as PaymentVoucherCode } from "./components/PaymentVoucherCode";
|
|
@@ -15,6 +15,7 @@ export declare const queryJYLogisticsCompany: () => Promise<void>;
|
|
|
15
15
|
export declare const queryJKYLogisticsCompany: () => Promise<void>;
|
|
16
16
|
export declare const queryWLNLogisticsCompany: () => Promise<void>;
|
|
17
17
|
export declare const queryKMLogisticsCompany: () => Promise<void>;
|
|
18
|
+
export declare const queryDXDLogisticsCompany: () => Promise<void>;
|
|
18
19
|
export declare const getAlipayBillReceipt: (data: any) => Promise<any>;
|
|
19
20
|
export declare const queryLabel: () => Promise<any>;
|
|
20
21
|
export declare const queryWorkOrderDetail: (data: any) => Promise<any>;
|
package/dist/esm/service/api.js
CHANGED
|
@@ -323,6 +323,12 @@ export var queryKMLogisticsCompany = function queryKMLogisticsCompany() {
|
|
|
323
323
|
instance.expressData = data;
|
|
324
324
|
}).catch(console.log);
|
|
325
325
|
};
|
|
326
|
+
export var queryDXDLogisticsCompany = function queryDXDLogisticsCompany() {
|
|
327
|
+
var instance = ExpressData.getInstance("dxd");
|
|
328
|
+
return servers.DXD.getLogisticsDataAsync().then(function (data) {
|
|
329
|
+
instance.expressData = data;
|
|
330
|
+
}).catch(console.log);
|
|
331
|
+
};
|
|
326
332
|
// 获取支付宝电子回单
|
|
327
333
|
export var getAlipayBillReceipt = function getAlipayBillReceipt(data) {
|
|
328
334
|
return request({
|