@kmkf-fe-packages/basic-components 1.4.0-rc.2 → 1.4.2
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/README.md +9 -0
- package/dist/index.esm.js +21 -584
- package/dist/index.js +20 -586
- package/dist/src/index.d.ts +0 -2
- package/package.json +4 -5
- package/dist/src/common/CommonExchangeGoods/index.d.ts +0 -3
- package/dist/src/common/CommonReturnGoods/index.d.ts +0 -3
package/dist/index.js
CHANGED
|
@@ -12,7 +12,6 @@ var zhCN = require('antd/lib/locale/zh_CN');
|
|
|
12
12
|
var lodash = require('lodash');
|
|
13
13
|
var ahooks = require('ahooks');
|
|
14
14
|
var pubsub = require('pubsub-js');
|
|
15
|
-
var BigNumber = require('bignumber.js');
|
|
16
15
|
|
|
17
16
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
18
17
|
|
|
@@ -20,7 +19,6 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
|
20
19
|
var request__default = /*#__PURE__*/_interopDefaultLegacy(request);
|
|
21
20
|
var zhCN__default = /*#__PURE__*/_interopDefaultLegacy(zhCN);
|
|
22
21
|
var pubsub__default = /*#__PURE__*/_interopDefaultLegacy(pubsub);
|
|
23
|
-
var BigNumber__default = /*#__PURE__*/_interopDefaultLegacy(BigNumber);
|
|
24
22
|
|
|
25
23
|
function _iterableToArrayLimit(arr, i) {
|
|
26
24
|
var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"];
|
|
@@ -10457,7 +10455,7 @@ var jstGoods = function jstGoods(props) {
|
|
|
10457
10455
|
var wdtSendOptions = kmkfUtils.WdtSendData.getInstance().wdtSendData || [];
|
|
10458
10456
|
React.useEffect(function () {
|
|
10459
10457
|
//没有值塞个默认值
|
|
10460
|
-
if (!(value === null || value === void 0 ? void 0 : value.length)
|
|
10458
|
+
if (!(value === null || value === void 0 ? void 0 : value.length)) {
|
|
10461
10459
|
onChange === null || onChange === void 0 ? void 0 : onChange(typeInitValueMap[type]);
|
|
10462
10460
|
}
|
|
10463
10461
|
}, [value, type]);
|
|
@@ -10485,9 +10483,6 @@ var jstGoods = function jstGoods(props) {
|
|
|
10485
10483
|
var changeOrderInfo = _objectSpread2({}, value[changeIndex]);
|
|
10486
10484
|
changeOrderInfo[type] = val;
|
|
10487
10485
|
changeOrderInfo['sendId'] = option.value;
|
|
10488
|
-
if (platformType === 'wdt' && type === 'sendName') {
|
|
10489
|
-
changeOrderInfo['sendSnapshotName'] = option.label;
|
|
10490
|
-
}
|
|
10491
10486
|
var newList = _toConsumableArray(value);
|
|
10492
10487
|
newList[changeIndex] = changeOrderInfo;
|
|
10493
10488
|
onChange === null || onChange === void 0 ? void 0 : onChange(newList);
|
|
@@ -10523,7 +10518,7 @@ var jstGoods = function jstGoods(props) {
|
|
|
10523
10518
|
return setChangeIndex(index);
|
|
10524
10519
|
}
|
|
10525
10520
|
}, "\u5305\u88F9".concat(index + 1)));
|
|
10526
|
-
}))) : null, value.length
|
|
10521
|
+
}))) : null, value.length ? /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, type === 1 ? /*#__PURE__*/React__default['default'].createElement(antd.Space, null, !showField || showField === 'logisticsCompany' ? /*#__PURE__*/React__default['default'].createElement(ApaasLogistics, {
|
|
10527
10522
|
disabled: disabled,
|
|
10528
10523
|
placeholder: "\u7269\u6D41\u516C\u53F8",
|
|
10529
10524
|
onChange: function onChange(val) {
|
|
@@ -11680,34 +11675,9 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
11680
11675
|
React.useEffect(function () {
|
|
11681
11676
|
setSelectedRowKeys([]);
|
|
11682
11677
|
}, [tableSelect, selectType]);
|
|
11683
|
-
var updateHandle = function updateHandle(val, index,
|
|
11678
|
+
var updateHandle = function updateHandle(val, index, type) {
|
|
11684
11679
|
if (value === null || value === void 0 ? void 0 : value.length) {
|
|
11685
|
-
value[index][
|
|
11686
|
-
if (type === 'WDT_RETURN_GOODS') {
|
|
11687
|
-
if (['sharePrice', 'num'].includes(columnType)) {
|
|
11688
|
-
var totalMoney = null;
|
|
11689
|
-
if (columnType === 'num') {
|
|
11690
|
-
totalMoney = new BigNumber__default['default'](value[index][columnType]).multipliedBy(new BigNumber__default['default'](value[index].sharePrice));
|
|
11691
|
-
} else {
|
|
11692
|
-
totalMoney = new BigNumber__default['default'](value[index][columnType]).multipliedBy(new BigNumber__default['default'](value[index].num));
|
|
11693
|
-
}
|
|
11694
|
-
if (totalMoney !== null) {
|
|
11695
|
-
value[index]['returnPrice'] = totalMoney.toString();
|
|
11696
|
-
}
|
|
11697
|
-
}
|
|
11698
|
-
} else if (type === 'WDT_EXCHANGE_GOODS') {
|
|
11699
|
-
if (['price', 'num'].includes(columnType)) {
|
|
11700
|
-
var _totalMoney = null;
|
|
11701
|
-
if (columnType === 'num') {
|
|
11702
|
-
_totalMoney = new BigNumber__default['default'](value[index][columnType]).multipliedBy(new BigNumber__default['default'](value[index].price));
|
|
11703
|
-
} else {
|
|
11704
|
-
_totalMoney = new BigNumber__default['default'](value[index][columnType]).multipliedBy(new BigNumber__default['default'](value[index].num));
|
|
11705
|
-
}
|
|
11706
|
-
if (_totalMoney !== null) {
|
|
11707
|
-
value[index]['exchangePrice'] = _totalMoney.toString();
|
|
11708
|
-
}
|
|
11709
|
-
}
|
|
11710
|
-
}
|
|
11680
|
+
value[index][type] = val;
|
|
11711
11681
|
onChange === null || onChange === void 0 ? void 0 : onChange(_toConsumableArray(value));
|
|
11712
11682
|
}
|
|
11713
11683
|
};
|
|
@@ -11813,260 +11783,6 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
11813
11783
|
}
|
|
11814
11784
|
}];
|
|
11815
11785
|
break;
|
|
11816
|
-
case 'WDT_RETURN_GOODS':
|
|
11817
|
-
{
|
|
11818
|
-
columns = [{
|
|
11819
|
-
dataIndex: 'goodId',
|
|
11820
|
-
title: "SPUID",
|
|
11821
|
-
align: 'center',
|
|
11822
|
-
ellipsis: true,
|
|
11823
|
-
width: 70
|
|
11824
|
-
}, {
|
|
11825
|
-
dataIndex: 'goodNo',
|
|
11826
|
-
title: "\u5546\u54C1SPU\u7F16\u7801",
|
|
11827
|
-
align: 'center',
|
|
11828
|
-
ellipsis: true,
|
|
11829
|
-
width: 180
|
|
11830
|
-
}, {
|
|
11831
|
-
dataIndex: 'goodName',
|
|
11832
|
-
title: "".concat(text, "\u5546\u54C1\u540D\u79F0"),
|
|
11833
|
-
align: 'center',
|
|
11834
|
-
ellipsis: true,
|
|
11835
|
-
width: 250
|
|
11836
|
-
}, {
|
|
11837
|
-
dataIndex: 'specId',
|
|
11838
|
-
title: "".concat(text, "SKUID"),
|
|
11839
|
-
align: 'center',
|
|
11840
|
-
ellipsis: true,
|
|
11841
|
-
width: 100
|
|
11842
|
-
}, {
|
|
11843
|
-
dataIndex: 'specNo',
|
|
11844
|
-
title: "".concat(text, "\u5546\u54C1SKU\u7F16\u7801"),
|
|
11845
|
-
align: 'center',
|
|
11846
|
-
ellipsis: true,
|
|
11847
|
-
width: 180
|
|
11848
|
-
}, {
|
|
11849
|
-
dataIndex: 'specName',
|
|
11850
|
-
title: "".concat(text, "\u5546\u54C1SKU\u540D\u79F0"),
|
|
11851
|
-
align: 'center',
|
|
11852
|
-
ellipsis: true,
|
|
11853
|
-
width: 250
|
|
11854
|
-
}, {
|
|
11855
|
-
dataIndex: 'num',
|
|
11856
|
-
title: "".concat(text, "\u9000\u8D27\u6570\u91CF"),
|
|
11857
|
-
align: 'center',
|
|
11858
|
-
ellipsis: true,
|
|
11859
|
-
width: 100,
|
|
11860
|
-
render: function render(val, record, index) {
|
|
11861
|
-
return !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
|
|
11862
|
-
style: {
|
|
11863
|
-
width: 70
|
|
11864
|
-
},
|
|
11865
|
-
value: val,
|
|
11866
|
-
min: 1,
|
|
11867
|
-
precision: 0,
|
|
11868
|
-
onChange: function onChange(num) {
|
|
11869
|
-
return updateHandle(num, index, 'num');
|
|
11870
|
-
}
|
|
11871
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
|
|
11872
|
-
}
|
|
11873
|
-
}, {
|
|
11874
|
-
dataIndex: 'sharePrice',
|
|
11875
|
-
title: "\u5206\u644A\u4EF7",
|
|
11876
|
-
align: 'center',
|
|
11877
|
-
ellipsis: true,
|
|
11878
|
-
width: 80,
|
|
11879
|
-
render: function render(val, record, index) {
|
|
11880
|
-
return !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
|
|
11881
|
-
style: {
|
|
11882
|
-
width: 70
|
|
11883
|
-
},
|
|
11884
|
-
value: val,
|
|
11885
|
-
min: 0,
|
|
11886
|
-
onChange: function onChange(value) {
|
|
11887
|
-
return updateHandle(value, index, 'sharePrice');
|
|
11888
|
-
}
|
|
11889
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
|
|
11890
|
-
}
|
|
11891
|
-
}, {
|
|
11892
|
-
dataIndex: 'returnPrice',
|
|
11893
|
-
title: "".concat(text, "\u9000\u8D27\u91D1\u989D"),
|
|
11894
|
-
align: 'center',
|
|
11895
|
-
ellipsis: true,
|
|
11896
|
-
width: 100
|
|
11897
|
-
}, {
|
|
11898
|
-
dataIndex: 'giftType',
|
|
11899
|
-
title: "\u8D60\u54C1\u65B9\u5F0F",
|
|
11900
|
-
align: 'center',
|
|
11901
|
-
ellipsis: true,
|
|
11902
|
-
width: 100,
|
|
11903
|
-
render: function render(val) {
|
|
11904
|
-
var giftTypeMap = {
|
|
11905
|
-
0: '非赠品',
|
|
11906
|
-
1: '自动赠送',
|
|
11907
|
-
2: '手工赠送',
|
|
11908
|
-
3: '回购自动送赠品',
|
|
11909
|
-
4: '前N有礼送赠品',
|
|
11910
|
-
6: '天猫优仓赠品',
|
|
11911
|
-
7: '淘宝CRM会员送赠'
|
|
11912
|
-
};
|
|
11913
|
-
return /*#__PURE__*/React__default['default'].createElement("span", null, giftTypeMap[val]);
|
|
11914
|
-
}
|
|
11915
|
-
}, {
|
|
11916
|
-
dataIndex: 'type',
|
|
11917
|
-
title: "".concat(text, "\u5546\u54C1\u7C7B\u578B"),
|
|
11918
|
-
align: 'center',
|
|
11919
|
-
ellipsis: true,
|
|
11920
|
-
width: 100,
|
|
11921
|
-
render: function render(val, record, index) {
|
|
11922
|
-
var options = [{
|
|
11923
|
-
label: '单品',
|
|
11924
|
-
value: '1'
|
|
11925
|
-
}, {
|
|
11926
|
-
label: '组合装',
|
|
11927
|
-
value: '2'
|
|
11928
|
-
}];
|
|
11929
|
-
return !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.Select, {
|
|
11930
|
-
style: {
|
|
11931
|
-
width: 70
|
|
11932
|
-
},
|
|
11933
|
-
options: options,
|
|
11934
|
-
value: val,
|
|
11935
|
-
onChange: function onChange(value) {
|
|
11936
|
-
return updateHandle(value, index, 'type');
|
|
11937
|
-
}
|
|
11938
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
|
|
11939
|
-
}
|
|
11940
|
-
}];
|
|
11941
|
-
}
|
|
11942
|
-
break;
|
|
11943
|
-
case 'WDT_EXCHANGE_GOODS':
|
|
11944
|
-
{
|
|
11945
|
-
columns = [{
|
|
11946
|
-
dataIndex: 'goodId',
|
|
11947
|
-
title: "SPUID",
|
|
11948
|
-
align: 'center',
|
|
11949
|
-
ellipsis: true,
|
|
11950
|
-
width: 70
|
|
11951
|
-
}, {
|
|
11952
|
-
dataIndex: 'goodNo',
|
|
11953
|
-
title: "\u5546\u54C1SPU\u7F16\u7801",
|
|
11954
|
-
align: 'center',
|
|
11955
|
-
ellipsis: true,
|
|
11956
|
-
width: 180
|
|
11957
|
-
}, {
|
|
11958
|
-
dataIndex: 'goodName',
|
|
11959
|
-
title: "".concat(text, "\u5546\u54C1\u540D\u79F0"),
|
|
11960
|
-
align: 'center',
|
|
11961
|
-
ellipsis: true,
|
|
11962
|
-
width: 250
|
|
11963
|
-
}, {
|
|
11964
|
-
dataIndex: 'specId',
|
|
11965
|
-
title: "".concat(text, "SKUID"),
|
|
11966
|
-
align: 'center',
|
|
11967
|
-
ellipsis: true,
|
|
11968
|
-
width: 100
|
|
11969
|
-
}, {
|
|
11970
|
-
dataIndex: 'specNo',
|
|
11971
|
-
title: "".concat(text, "\u5546\u54C1SKU\u7F16\u7801"),
|
|
11972
|
-
align: 'center',
|
|
11973
|
-
ellipsis: true,
|
|
11974
|
-
width: 180
|
|
11975
|
-
}, {
|
|
11976
|
-
dataIndex: 'specName',
|
|
11977
|
-
title: "".concat(text, "\u5546\u54C1SKU\u540D\u79F0"),
|
|
11978
|
-
align: 'center',
|
|
11979
|
-
ellipsis: true,
|
|
11980
|
-
width: 250
|
|
11981
|
-
}, {
|
|
11982
|
-
dataIndex: 'num',
|
|
11983
|
-
title: "".concat(text, "\u6362\u51FA\u6570\u91CF"),
|
|
11984
|
-
align: 'center',
|
|
11985
|
-
ellipsis: true,
|
|
11986
|
-
width: 100,
|
|
11987
|
-
render: function render(val, record, index) {
|
|
11988
|
-
return !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
|
|
11989
|
-
style: {
|
|
11990
|
-
width: 70
|
|
11991
|
-
},
|
|
11992
|
-
value: val,
|
|
11993
|
-
min: 1,
|
|
11994
|
-
precision: 0,
|
|
11995
|
-
onChange: function onChange(num) {
|
|
11996
|
-
return updateHandle(num, index, 'num');
|
|
11997
|
-
}
|
|
11998
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
|
|
11999
|
-
}
|
|
12000
|
-
}, {
|
|
12001
|
-
dataIndex: 'price',
|
|
12002
|
-
title: "".concat(text, "\u5546\u54C1\u5355\u4EF7"),
|
|
12003
|
-
align: 'center',
|
|
12004
|
-
ellipsis: true,
|
|
12005
|
-
width: 100,
|
|
12006
|
-
render: function render(val, record, index) {
|
|
12007
|
-
return !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
|
|
12008
|
-
style: {
|
|
12009
|
-
width: 70
|
|
12010
|
-
},
|
|
12011
|
-
value: val,
|
|
12012
|
-
min: 0,
|
|
12013
|
-
onChange: function onChange(value) {
|
|
12014
|
-
return updateHandle(value, index, 'price');
|
|
12015
|
-
}
|
|
12016
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
|
|
12017
|
-
}
|
|
12018
|
-
}, {
|
|
12019
|
-
dataIndex: 'exchangePrice',
|
|
12020
|
-
title: "".concat(text, "\u6362\u51FA\u91D1\u989D"),
|
|
12021
|
-
align: 'center',
|
|
12022
|
-
ellipsis: true,
|
|
12023
|
-
width: 100
|
|
12024
|
-
}, {
|
|
12025
|
-
dataIndex: 'giftType',
|
|
12026
|
-
title: "\u8D60\u54C1\u65B9\u5F0F",
|
|
12027
|
-
align: 'center',
|
|
12028
|
-
ellipsis: true,
|
|
12029
|
-
width: 100,
|
|
12030
|
-
render: function render(val) {
|
|
12031
|
-
var giftTypeMap = {
|
|
12032
|
-
0: '非赠品',
|
|
12033
|
-
1: '自动赠送',
|
|
12034
|
-
2: '手工赠送',
|
|
12035
|
-
3: '回购自动送赠品',
|
|
12036
|
-
4: '前N有礼送赠品',
|
|
12037
|
-
6: '天猫优仓赠品',
|
|
12038
|
-
7: '淘宝CRM会员送赠'
|
|
12039
|
-
};
|
|
12040
|
-
return /*#__PURE__*/React__default['default'].createElement("span", null, giftTypeMap[val]);
|
|
12041
|
-
}
|
|
12042
|
-
}, {
|
|
12043
|
-
dataIndex: 'type',
|
|
12044
|
-
title: "".concat(text, "\u5546\u54C1\u7C7B\u578B"),
|
|
12045
|
-
align: 'center',
|
|
12046
|
-
ellipsis: true,
|
|
12047
|
-
width: 100,
|
|
12048
|
-
render: function render(val, record, index) {
|
|
12049
|
-
var options = [{
|
|
12050
|
-
label: '单品',
|
|
12051
|
-
value: '1'
|
|
12052
|
-
}, {
|
|
12053
|
-
label: '组合装',
|
|
12054
|
-
value: '2'
|
|
12055
|
-
}];
|
|
12056
|
-
return !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.Select, {
|
|
12057
|
-
style: {
|
|
12058
|
-
width: 70
|
|
12059
|
-
},
|
|
12060
|
-
options: options,
|
|
12061
|
-
value: val,
|
|
12062
|
-
onChange: function onChange(value) {
|
|
12063
|
-
return updateHandle(value, index, 'type');
|
|
12064
|
-
}
|
|
12065
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
|
|
12066
|
-
}
|
|
12067
|
-
}];
|
|
12068
|
-
}
|
|
12069
|
-
break;
|
|
12070
11786
|
default:
|
|
12071
11787
|
columns = [{
|
|
12072
11788
|
dataIndex: 'mark',
|
|
@@ -12208,7 +11924,7 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
12208
11924
|
}, [showHeader, value, disabled]);
|
|
12209
11925
|
var onSubmit = function onSubmit(list) {
|
|
12210
11926
|
var newList = [];
|
|
12211
|
-
if (['WDT_REISSUE_GOODS', 'WDT_GOODS'
|
|
11927
|
+
if (['WDT_REISSUE_GOODS', 'WDT_GOODS'].includes(type)) {
|
|
12212
11928
|
newList = list.map(function (item) {
|
|
12213
11929
|
item.uuid = kmkfUtils.uuid();
|
|
12214
11930
|
item.canDelete = true;
|
|
@@ -12216,10 +11932,6 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
12216
11932
|
item.orderPrice = 0;
|
|
12217
11933
|
item.sharePrice = 0;
|
|
12218
11934
|
item.canUpdateNumber = canUpdateNumber;
|
|
12219
|
-
if (type === 'WDT_EXCHANGE_GOODS') {
|
|
12220
|
-
item.price = item.retailPrice;
|
|
12221
|
-
item.type = '1';
|
|
12222
|
-
}
|
|
12223
11935
|
return item;
|
|
12224
11936
|
});
|
|
12225
11937
|
} else {
|
|
@@ -12290,7 +12002,7 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
12290
12002
|
locale: {
|
|
12291
12003
|
emptyText: '暂无数据'
|
|
12292
12004
|
}
|
|
12293
|
-
})), ['WDT_REISSUE_GOODS', 'WDT_GOODS'
|
|
12005
|
+
})), ['WDT_REISSUE_GOODS', 'WDT_GOODS'].includes(type) ? /*#__PURE__*/React__default['default'].createElement(WdtGoodsModal, {
|
|
12294
12006
|
ref: refModal,
|
|
12295
12007
|
onSubmit: onSubmit,
|
|
12296
12008
|
width: width,
|
|
@@ -13051,7 +12763,7 @@ var index$1 = (function (props) {
|
|
|
13051
12763
|
}();
|
|
13052
12764
|
var getWdtOrderList = /*#__PURE__*/function () {
|
|
13053
12765
|
var _ref3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(orderNo) {
|
|
13054
|
-
var _yield$request3, success, data
|
|
12766
|
+
var _yield$request3, success, data;
|
|
13055
12767
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
13056
12768
|
while (1) switch (_context3.prev = _context3.next) {
|
|
13057
12769
|
case 0:
|
|
@@ -13067,25 +12779,15 @@ var index$1 = (function (props) {
|
|
|
13067
12779
|
success = _yield$request3.success;
|
|
13068
12780
|
data = _yield$request3.data;
|
|
13069
12781
|
if (success) {
|
|
13070
|
-
trades = ((data === null || data === void 0 ? void 0 : data.trades) || []).filter(function (item) {
|
|
13071
|
-
return (item.srcTid || '').split(',').includes(orderNo);
|
|
13072
|
-
}).map(function (item) {
|
|
13073
|
-
if (Array.isArray(item.goodDetails)) {
|
|
13074
|
-
item.goodDetails = item.goodDetails.filter(function (good) {
|
|
13075
|
-
return good.srcTid === orderNo;
|
|
13076
|
-
});
|
|
13077
|
-
}
|
|
13078
|
-
return item;
|
|
13079
|
-
});
|
|
13080
12782
|
_onChange(_objectSpread2(_objectSpread2({}, value), {}, {
|
|
13081
|
-
orders: trades.map(function (item) {
|
|
12783
|
+
orders: ((data === null || data === void 0 ? void 0 : data.trades) || []).map(function (item) {
|
|
13082
12784
|
return _objectSpread2(_objectSpread2({}, item), {}, {
|
|
13083
12785
|
billNo: item.tradeNo,
|
|
13084
12786
|
billType: kmkfUtils.WDT_ORDER_TYPE_MAP[item.tradeType],
|
|
13085
12787
|
billTag: item.tagName
|
|
13086
12788
|
});
|
|
13087
12789
|
}),
|
|
13088
|
-
showOrderInfo: trades.map(function (item) {
|
|
12790
|
+
showOrderInfo: data === null || data === void 0 ? void 0 : data.trades.map(function (item) {
|
|
13089
12791
|
return {
|
|
13090
12792
|
billNo: item.tradeNo,
|
|
13091
12793
|
billType: kmkfUtils.WDT_ORDER_TYPE_MAP[item.tradeType],
|
|
@@ -13175,10 +12877,8 @@ var componentMap$1 = {
|
|
|
13175
12877
|
reissueType: 'wdtReissueType',
|
|
13176
12878
|
returnType: 'wdtReturnType',
|
|
13177
12879
|
returnSelectListReturn: 'wdtReturnSelectListReturn',
|
|
13178
|
-
returnSelectList: 'wdtReturnSelectList',
|
|
13179
12880
|
deleteGood: 'wdtDeleteGood',
|
|
13180
|
-
returnDeleteGood: 'wdtReturnDeleteGood'
|
|
13181
|
-
exchangeDeleteGood: 'wdtExchangeDeleteGood'
|
|
12881
|
+
returnDeleteGood: 'wdtReturnDeleteGood'
|
|
13182
12882
|
}
|
|
13183
12883
|
}
|
|
13184
12884
|
};
|
|
@@ -13245,7 +12945,7 @@ var CommonGoods = function CommonGoods(props) {
|
|
|
13245
12945
|
setTableSelect(['2', '4'].includes(data.val));
|
|
13246
12946
|
if (['1', '3'].includes(data.val)) {
|
|
13247
12947
|
var _valueRef$current5, _valueRef$current6;
|
|
13248
|
-
pubsub__default['default'].publish(componentMap$1[
|
|
12948
|
+
pubsub__default['default'].publish(componentMap$1[type].eventNameMap.returnSelectListReturn, {
|
|
13249
12949
|
list: lodash.cloneDeep((valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current5 = valueRef.current) === null || _valueRef$current5 === void 0 ? void 0 : _valueRef$current5[componentMap$1[compType].key]) || []),
|
|
13250
12950
|
shopCode: valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current6 = valueRef.current) === null || _valueRef$current6 === void 0 ? void 0 : _valueRef$current6.shopCode,
|
|
13251
12951
|
goodValue: data === null || data === void 0 ? void 0 : data.goodValue
|
|
@@ -13263,15 +12963,15 @@ var CommonGoods = function CommonGoods(props) {
|
|
|
13263
12963
|
};
|
|
13264
12964
|
}, [disabled]);
|
|
13265
12965
|
var _onSelect = function onSelect(list) {
|
|
13266
|
-
var
|
|
12966
|
+
var _withInfo$current, _withInfo$current2, _valueRef$current7;
|
|
13267
12967
|
if (disabled) return;
|
|
13268
12968
|
var newList = lodash.cloneDeep(list);
|
|
13269
|
-
var typeMap = (
|
|
12969
|
+
var typeMap = _defineProperty({
|
|
13270
12970
|
// type: componentMap[compType].eventNameMap.selectList,
|
|
13271
12971
|
// returnType: componentMap[compType].eventNameMap.returnSelectList,
|
|
13272
12972
|
// reissueType: componentMap[compType].eventNameMap.reissueSelectList,
|
|
13273
12973
|
type: componentMap$1[compType].eventNameMap.selectList
|
|
13274
|
-
},
|
|
12974
|
+
}, "".concat(componentMap$1[compType].type, "ReissueType"), componentMap$1[compType].eventNameMap.reissueSelectList);
|
|
13275
12975
|
var type = typeMap[(_withInfo$current = withInfo.current) === null || _withInfo$current === void 0 ? void 0 : _withInfo$current.type];
|
|
13276
12976
|
// console.log('onSelect', type, withInfo.current, newList);
|
|
13277
12977
|
pubsub__default['default'].publish(type, {
|
|
@@ -13289,7 +12989,6 @@ var CommonGoods = function CommonGoods(props) {
|
|
|
13289
12989
|
pubsub__default['default'].publish(componentMap$1[compType].eventNameMap.deleteGood, deleteId);
|
|
13290
12990
|
pubsub__default['default'].publish(componentMap$1[compType].eventNameMap.reissueDeleteGood, deleteId);
|
|
13291
12991
|
pubsub__default['default'].publish(componentMap$1[compType].eventNameMap.returnDeleteGood, deleteId);
|
|
13292
|
-
pubsub__default['default'].publish(componentMap$1[compType].eventNameMap.exchangeDeleteGood, deleteId);
|
|
13293
12992
|
};
|
|
13294
12993
|
var changeHandle = function changeHandle(list) {
|
|
13295
12994
|
onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, componentMap$1[compType].key, list)));
|
|
@@ -13314,263 +13013,6 @@ var CommonGoods = function CommonGoods(props) {
|
|
|
13314
13013
|
}));
|
|
13315
13014
|
};
|
|
13316
13015
|
|
|
13317
|
-
var componentMap$2 = {
|
|
13318
|
-
'WDT_RETURN_GOODS': {
|
|
13319
|
-
type: 'wdt',
|
|
13320
|
-
valueKey: 'wdtReturnGoods',
|
|
13321
|
-
returnTypeKey: 'wdtReturnType',
|
|
13322
|
-
name: '旺店通',
|
|
13323
|
-
eventNameMap: {
|
|
13324
|
-
changeShopCode: 'wdtChangeShopCode',
|
|
13325
|
-
returnType: 'wdtReturnType',
|
|
13326
|
-
returnSelectListReturn: 'wdtReturnSelectListReturn',
|
|
13327
|
-
returnDeleteGood: 'wdtReturnDeleteGood',
|
|
13328
|
-
returnSelectList: 'wdtReturnSelectList',
|
|
13329
|
-
exchangeCopyGood: 'wdtExchangeCopyGood',
|
|
13330
|
-
exchangeBackCopyGood: 'wdtExchangeBackCopyGood'
|
|
13331
|
-
}
|
|
13332
|
-
}
|
|
13333
|
-
};
|
|
13334
|
-
var CommonReturnGoods = function CommonReturnGoods(props) {
|
|
13335
|
-
var value = props.value,
|
|
13336
|
-
onChange = props.onChange,
|
|
13337
|
-
_props$reasonList = props.reasonList,
|
|
13338
|
-
reasonList = _props$reasonList === void 0 ? [] : _props$reasonList,
|
|
13339
|
-
disabled = props.disabled,
|
|
13340
|
-
compType = props.type;
|
|
13341
|
-
var valueRef = React.useRef({});
|
|
13342
|
-
React.useEffect(function () {
|
|
13343
|
-
var subscription = pubsub__default['default'].subscribe(componentMap$2[compType].eventNameMap.exchangeCopyGood, function () {
|
|
13344
|
-
var _valueRef$current, _valueRef$current2;
|
|
13345
|
-
pubsub__default['default'].publish(componentMap$2[compType].eventNameMap.exchangeBackCopyGood, {
|
|
13346
|
-
list: lodash.cloneDeep((valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current = valueRef.current) === null || _valueRef$current === void 0 ? void 0 : _valueRef$current[componentMap$2[compType].valueKey]) || []),
|
|
13347
|
-
shopCode: valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current2 = valueRef.current) === null || _valueRef$current2 === void 0 ? void 0 : _valueRef$current2.shopCode
|
|
13348
|
-
});
|
|
13349
|
-
});
|
|
13350
|
-
return function () {
|
|
13351
|
-
pubsub__default['default'].unsubscribe(subscription);
|
|
13352
|
-
};
|
|
13353
|
-
}, []);
|
|
13354
|
-
React.useEffect(function () {
|
|
13355
|
-
var subscription = pubsub__default['default'].subscribe(componentMap$2[compType].eventNameMap.returnSelectList, function (_, data) {
|
|
13356
|
-
if (disabled) return;
|
|
13357
|
-
var newValue = _objectSpread2(_objectSpread2({}, data.goodValue), {}, {
|
|
13358
|
-
shopCode: data === null || data === void 0 ? void 0 : data.shopCode
|
|
13359
|
-
});
|
|
13360
|
-
if (compType === 'WDT_RETURN_GOODS') {
|
|
13361
|
-
newValue[componentMap$2[compType].valueKey] = ((data === null || data === void 0 ? void 0 : data.list) || []).map(function (item) {
|
|
13362
|
-
if (typeof item.type === 'undefined') {
|
|
13363
|
-
item.type = '1';
|
|
13364
|
-
}
|
|
13365
|
-
if (typeof item.returnPrice === 'undefined') {
|
|
13366
|
-
item.returnPrice = new BigNumber__default['default'](item.num).multipliedBy(new BigNumber__default['default'](item.sharePrice)).toString();
|
|
13367
|
-
}
|
|
13368
|
-
if (item.srcOid) {
|
|
13369
|
-
item.oid = item.srcOid;
|
|
13370
|
-
}
|
|
13371
|
-
return item;
|
|
13372
|
-
});
|
|
13373
|
-
} else {
|
|
13374
|
-
newValue[componentMap$2[compType].valueKey] = (data === null || data === void 0 ? void 0 : data.list) || [];
|
|
13375
|
-
}
|
|
13376
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13377
|
-
});
|
|
13378
|
-
return function () {
|
|
13379
|
-
pubsub__default['default'].unsubscribe(subscription);
|
|
13380
|
-
};
|
|
13381
|
-
}, []);
|
|
13382
|
-
React.useEffect(function () {
|
|
13383
|
-
var subscription = pubsub__default['default'].subscribe(componentMap$2[compType].eventNameMap.returnSelectListReturn, function (_, data) {
|
|
13384
|
-
if (disabled) return;
|
|
13385
|
-
var newValue = _objectSpread2(_objectSpread2({}, data.goodValue), {}, {
|
|
13386
|
-
shopCode: data === null || data === void 0 ? void 0 : data.shopCode
|
|
13387
|
-
});
|
|
13388
|
-
if (compType === 'WDT_RETURN_GOODS') {
|
|
13389
|
-
newValue[componentMap$2[compType].valueKey] = ((data === null || data === void 0 ? void 0 : data.list) || []).map(function (item) {
|
|
13390
|
-
if (typeof item.type === 'undefined') {
|
|
13391
|
-
item.type = '1';
|
|
13392
|
-
}
|
|
13393
|
-
if (typeof item.returnPrice === 'undefined') {
|
|
13394
|
-
item.returnPrice = new BigNumber__default['default'](item.num).multipliedBy(new BigNumber__default['default'](item.sharePrice)).toString();
|
|
13395
|
-
}
|
|
13396
|
-
if (item.srcOid) {
|
|
13397
|
-
item.oid = item.srcOid;
|
|
13398
|
-
}
|
|
13399
|
-
return item;
|
|
13400
|
-
});
|
|
13401
|
-
} else {
|
|
13402
|
-
newValue[componentMap$2[compType].valueKey] = (data === null || data === void 0 ? void 0 : data.list) || [];
|
|
13403
|
-
}
|
|
13404
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13405
|
-
});
|
|
13406
|
-
return function () {
|
|
13407
|
-
pubsub__default['default'].unsubscribe(subscription);
|
|
13408
|
-
};
|
|
13409
|
-
}, []);
|
|
13410
|
-
React.useEffect(function () {
|
|
13411
|
-
valueRef.current = value;
|
|
13412
|
-
pubsub__default['default'].subscribeOnce(componentMap$2[compType].eventNameMap.returnDeleteGood, function (_, data) {
|
|
13413
|
-
if (disabled) return;
|
|
13414
|
-
if (value) {
|
|
13415
|
-
var newValue = _objectSpread2({}, value);
|
|
13416
|
-
newValue[componentMap$2[compType].valueKey] = newValue[componentMap$2[compType].valueKey].filter(function (item) {
|
|
13417
|
-
return item.sku !== data;
|
|
13418
|
-
});
|
|
13419
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13420
|
-
}
|
|
13421
|
-
});
|
|
13422
|
-
pubsub__default['default'].subscribeOnce(componentMap$2[compType].eventNameMap.changeShopCode, function (type, data) {
|
|
13423
|
-
onChange(_objectSpread2(_objectSpread2({}, value), {}, {
|
|
13424
|
-
shopCode: data.shopCode
|
|
13425
|
-
}));
|
|
13426
|
-
});
|
|
13427
|
-
}, [value, disabled]);
|
|
13428
|
-
var changeTypeHandle = function changeTypeHandle(val) {
|
|
13429
|
-
var newValue = _objectSpread2({}, value);
|
|
13430
|
-
newValue[componentMap$2[compType].returnTypeKey] = val;
|
|
13431
|
-
newValue[componentMap$2[compType].valueKey] = [];
|
|
13432
|
-
if (['2'].includes(val[0])) {
|
|
13433
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13434
|
-
valueRef.current = newValue;
|
|
13435
|
-
}
|
|
13436
|
-
pubsub__default['default'].publish(componentMap$2[compType].eventNameMap.returnType, {
|
|
13437
|
-
val: val[0],
|
|
13438
|
-
goodValue: newValue
|
|
13439
|
-
});
|
|
13440
|
-
};
|
|
13441
|
-
var changeGoodHandle = function changeGoodHandle(val) {
|
|
13442
|
-
var newValue = _objectSpread2({}, value);
|
|
13443
|
-
newValue[componentMap$2[compType].valueKey] = val;
|
|
13444
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13445
|
-
};
|
|
13446
|
-
//显示选择商品按钮 原单换不显示选择商品
|
|
13447
|
-
// const showChangeBtn = useMemo(() => {
|
|
13448
|
-
// return ['2'].includes(value?.[componentMap[compType].returnTypeKey]?.[0]);
|
|
13449
|
-
// }, [value?.[componentMap[compType].returnTypeKey]]);
|
|
13450
|
-
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(antd.Cascader, {
|
|
13451
|
-
style: {
|
|
13452
|
-
marginBottom: '8px'
|
|
13453
|
-
},
|
|
13454
|
-
disabled: disabled,
|
|
13455
|
-
allowClear: false,
|
|
13456
|
-
options: reasonList,
|
|
13457
|
-
value: value === null || value === void 0 ? void 0 : value[componentMap$2[compType].returnTypeKey],
|
|
13458
|
-
onChange: function onChange(val) {
|
|
13459
|
-
return changeTypeHandle(val);
|
|
13460
|
-
}
|
|
13461
|
-
}), /*#__PURE__*/React__default['default'].createElement(GoodItem$1, _objectSpread2(_objectSpread2({
|
|
13462
|
-
key: componentMap$2[compType].type
|
|
13463
|
-
}, props), {}, {
|
|
13464
|
-
disabled: disabled,
|
|
13465
|
-
canUpdateNumber: true,
|
|
13466
|
-
showChangeBtn: false,
|
|
13467
|
-
shopCode: value === null || value === void 0 ? void 0 : value.shopCode,
|
|
13468
|
-
value: value === null || value === void 0 ? void 0 : value[componentMap$2[compType].valueKey],
|
|
13469
|
-
onChange: function onChange(val) {
|
|
13470
|
-
return changeGoodHandle(val);
|
|
13471
|
-
}
|
|
13472
|
-
})));
|
|
13473
|
-
};
|
|
13474
|
-
|
|
13475
|
-
var componentMap$3 = {
|
|
13476
|
-
'WDT_EXCHANGE_GOODS': {
|
|
13477
|
-
type: 'wdt',
|
|
13478
|
-
valueKey: 'wdtExchangeGoods',
|
|
13479
|
-
returnTypeKey: 'wdtExchangeType',
|
|
13480
|
-
name: '旺店通',
|
|
13481
|
-
eventNameMap: {
|
|
13482
|
-
changeShopCode: 'wdtChangeShopCode',
|
|
13483
|
-
exchangeDeleteGood: 'wdtExchangeDeleteGood',
|
|
13484
|
-
exchangeCopyGood: 'wdtExchangeCopyGood',
|
|
13485
|
-
exchangeBackCopyGood: 'wdtExchangeBackCopyGood'
|
|
13486
|
-
}
|
|
13487
|
-
}
|
|
13488
|
-
};
|
|
13489
|
-
var CommonExchangeGoods = function CommonExchangeGoods(props) {
|
|
13490
|
-
var value = props.value,
|
|
13491
|
-
onChange = props.onChange,
|
|
13492
|
-
disabled = props.disabled,
|
|
13493
|
-
compType = props.type;
|
|
13494
|
-
var valueRef = React.useRef({});
|
|
13495
|
-
React.useEffect(function () {
|
|
13496
|
-
var subscription = pubsub__default['default'].subscribe(componentMap$3[compType].eventNameMap.exchangeBackCopyGood, function (_, data) {
|
|
13497
|
-
if (disabled) return;
|
|
13498
|
-
var newValue = {
|
|
13499
|
-
shopCode: data === null || data === void 0 ? void 0 : data.shopCode
|
|
13500
|
-
};
|
|
13501
|
-
if (compType === 'WDT_EXCHANGE_GOODS') {
|
|
13502
|
-
newValue[componentMap$3[compType].valueKey] = ((data === null || data === void 0 ? void 0 : data.list) || []).map(function (item) {
|
|
13503
|
-
if (typeof item.type === 'undefined') {
|
|
13504
|
-
item.type = '1';
|
|
13505
|
-
}
|
|
13506
|
-
item.price = item.sharePrice;
|
|
13507
|
-
if (typeof item.exchangePrice === 'undefined') {
|
|
13508
|
-
item.exchangePrice = new BigNumber__default['default'](item.num).multipliedBy(new BigNumber__default['default'](item.price)).toString();
|
|
13509
|
-
}
|
|
13510
|
-
return item;
|
|
13511
|
-
});
|
|
13512
|
-
} else {
|
|
13513
|
-
newValue[componentMap$3[compType].valueKey] = (data === null || data === void 0 ? void 0 : data.list) || [];
|
|
13514
|
-
}
|
|
13515
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13516
|
-
});
|
|
13517
|
-
return function () {
|
|
13518
|
-
pubsub__default['default'].unsubscribe(subscription);
|
|
13519
|
-
};
|
|
13520
|
-
});
|
|
13521
|
-
React.useEffect(function () {
|
|
13522
|
-
valueRef.current = value;
|
|
13523
|
-
pubsub__default['default'].subscribeOnce(componentMap$3[compType].eventNameMap.exchangeDeleteGood, function (_, data) {
|
|
13524
|
-
if (disabled) return;
|
|
13525
|
-
if (value) {
|
|
13526
|
-
var newValue = _objectSpread2({}, value);
|
|
13527
|
-
newValue[componentMap$3[compType].valueKey] = newValue[componentMap$3[compType].valueKey].filter(function (item) {
|
|
13528
|
-
return item.sku !== data;
|
|
13529
|
-
});
|
|
13530
|
-
onChange(newValue);
|
|
13531
|
-
}
|
|
13532
|
-
});
|
|
13533
|
-
pubsub__default['default'].subscribeOnce(componentMap$3[compType].eventNameMap.changeShopCode, function (type, data) {
|
|
13534
|
-
onChange(_objectSpread2(_objectSpread2({}, value), {}, {
|
|
13535
|
-
shopCode: data.shopCode
|
|
13536
|
-
}));
|
|
13537
|
-
});
|
|
13538
|
-
}, [value]);
|
|
13539
|
-
var changeGoodHandle = function changeGoodHandle(val) {
|
|
13540
|
-
var newValue = _objectSpread2({}, value);
|
|
13541
|
-
if (compType === 'WDT_EXCHANGE_GOODS') {
|
|
13542
|
-
val = val.map(function (item) {
|
|
13543
|
-
item.exchangePrice = new BigNumber__default['default'](item.num).multipliedBy(new BigNumber__default['default'](item.price)).toString();
|
|
13544
|
-
return item;
|
|
13545
|
-
});
|
|
13546
|
-
}
|
|
13547
|
-
newValue[componentMap$3[compType].valueKey] = val;
|
|
13548
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13549
|
-
};
|
|
13550
|
-
var copyGoods = function copyGoods() {
|
|
13551
|
-
var copyHandle = function copyHandle() {
|
|
13552
|
-
pubsub__default['default'].publish(componentMap$3[compType].eventNameMap.exchangeCopyGood, 'WDT_EXCHANGE_GOODS');
|
|
13553
|
-
};
|
|
13554
|
-
return /*#__PURE__*/React__default['default'].createElement(antd.Button, {
|
|
13555
|
-
type: "link",
|
|
13556
|
-
onClick: copyHandle
|
|
13557
|
-
}, "\u590D\u5236\u9000\u56DE\u5546\u54C1");
|
|
13558
|
-
};
|
|
13559
|
-
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(GoodItem$1, _objectSpread2(_objectSpread2({
|
|
13560
|
-
key: componentMap$3[compType].type
|
|
13561
|
-
}, props), {}, {
|
|
13562
|
-
disabled: disabled,
|
|
13563
|
-
canUpdateNumber: true,
|
|
13564
|
-
showChangeBtn: true,
|
|
13565
|
-
shopCode: value === null || value === void 0 ? void 0 : value.shopCode,
|
|
13566
|
-
value: value === null || value === void 0 ? void 0 : value[componentMap$3[compType].valueKey],
|
|
13567
|
-
otherOperations: copyGoods(),
|
|
13568
|
-
onChange: function onChange(val) {
|
|
13569
|
-
return changeGoodHandle(val);
|
|
13570
|
-
}
|
|
13571
|
-
})));
|
|
13572
|
-
};
|
|
13573
|
-
|
|
13574
13016
|
var _excluded$g = ["value", "onChange", "reasonList", "disabled", "type"];
|
|
13575
13017
|
var typeMap$1 = {
|
|
13576
13018
|
WDT_REISSUE_GOODS: {
|
|
@@ -14359,7 +13801,7 @@ var CommonSystemOrder = function CommonSystemOrder(props) {
|
|
|
14359
13801
|
changeIndex = _useState2[0],
|
|
14360
13802
|
setChangeIndex = _useState2[1]; //选中的包裹
|
|
14361
13803
|
React.useEffect(function () {
|
|
14362
|
-
if (!(value === null || value === void 0 ? void 0 : value.length)
|
|
13804
|
+
if (!(value === null || value === void 0 ? void 0 : value.length)) {
|
|
14363
13805
|
onChange === null || onChange === void 0 ? void 0 : onChange(typeInitValueMap$1[type].initValue);
|
|
14364
13806
|
}
|
|
14365
13807
|
}, [value, type]);
|
|
@@ -14398,7 +13840,7 @@ var CommonSystemOrder = function CommonSystemOrder(props) {
|
|
|
14398
13840
|
return setChangeIndex(index);
|
|
14399
13841
|
}
|
|
14400
13842
|
}, "\u7CFB\u7EDF\u8BA2\u5355\u53F7".concat(index + 1)));
|
|
14401
|
-
}))) : null, value.length
|
|
13843
|
+
}))) : null, value.length ? /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, type === 1 ? /*#__PURE__*/React__default['default'].createElement(antd.Space, null, /*#__PURE__*/React__default['default'].createElement(antd.Input, {
|
|
14402
13844
|
disabled: disabled,
|
|
14403
13845
|
placeholder: "\u8BF7\u8F93\u5165\u51FA\u5E93\u5355\u7F16\u53F7",
|
|
14404
13846
|
onChange: function onChange(e) {
|
|
@@ -14413,18 +13855,12 @@ var CommonSystemOrder = function CommonSystemOrder(props) {
|
|
|
14413
13855
|
},
|
|
14414
13856
|
value: (_value$changeIndex2 = value[changeIndex]) === null || _value$changeIndex2 === void 0 ? void 0 : _value$changeIndex2.returnGoodsTradeId
|
|
14415
13857
|
})) : null, type === 3 ? /*#__PURE__*/React__default['default'].createElement(antd.Space, null, /*#__PURE__*/React__default['default'].createElement(antd.Input, {
|
|
14416
|
-
disabled:
|
|
13858
|
+
disabled: true,
|
|
14417
13859
|
placeholder: "\u8BF7\u8F93\u5165\u8865\u53D1\u5355id",
|
|
14418
|
-
onChange: function onChange(e) {
|
|
14419
|
-
return changeInputHandle(e.target.value, 'billNo');
|
|
14420
|
-
},
|
|
14421
13860
|
value: (_value$changeIndex3 = value[changeIndex]) === null || _value$changeIndex3 === void 0 ? void 0 : _value$changeIndex3.billNo
|
|
14422
13861
|
})) : null, type === 4 ? /*#__PURE__*/React__default['default'].createElement(antd.Space, null, /*#__PURE__*/React__default['default'].createElement(antd.Input, {
|
|
14423
|
-
disabled:
|
|
13862
|
+
disabled: true,
|
|
14424
13863
|
placeholder: "\u8BF7\u8F93\u5165\u6362\u8D27\u5355id",
|
|
14425
|
-
onChange: function onChange(e) {
|
|
14426
|
-
return changeInputHandle(e.target.value, 'billNo');
|
|
14427
|
-
},
|
|
14428
13864
|
value: (_value$changeIndex4 = value[changeIndex]) === null || _value$changeIndex4 === void 0 ? void 0 : _value$changeIndex4.billNo
|
|
14429
13865
|
})) : null) : null);
|
|
14430
13866
|
};
|
|
@@ -14486,7 +13922,7 @@ var CommonSystemOrder$1 = function CommonSystemOrder(props) {
|
|
|
14486
13922
|
return setChangeIndex(index);
|
|
14487
13923
|
}
|
|
14488
13924
|
}, "\u7CFB\u7EDF\u8BA2\u5355\u53F7".concat(index + 1)));
|
|
14489
|
-
}))) : null, /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(antd.Space, null, /*#__PURE__*/React__default['default'].createElement(antd.Select, _objectSpread2(_objectSpread2({}, other), {}, {
|
|
13925
|
+
}))) : null, value.length && type === 1 || type === 2 ? /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(antd.Space, null, /*#__PURE__*/React__default['default'].createElement(antd.Select, _objectSpread2(_objectSpread2({}, other), {}, {
|
|
14490
13926
|
showSearch: true,
|
|
14491
13927
|
value: (_value$changeIndex = value[changeIndex]) === null || _value$changeIndex === void 0 ? void 0 : _value$changeIndex.status,
|
|
14492
13928
|
filterOption: function filterOption(input, option) {
|
|
@@ -14502,7 +13938,7 @@ var CommonSystemOrder$1 = function CommonSystemOrder(props) {
|
|
|
14502
13938
|
}
|
|
14503
13939
|
}))), ((_value$changeIndex2 = value[changeIndex]) === null || _value$changeIndex2 === void 0 ? void 0 : _value$changeIndex2.reason) ? /*#__PURE__*/React__default['default'].createElement("div", {
|
|
14504
13940
|
className: "c-red"
|
|
14505
|
-
}, "\u5931\u8D25\u539F\u56E0\uFF1A", (_value$changeIndex3 = value[changeIndex]) === null || _value$changeIndex3 === void 0 ? void 0 : _value$changeIndex3.reason) : null));
|
|
13941
|
+
}, "\u5931\u8D25\u539F\u56E0\uFF1A", (_value$changeIndex3 = value[changeIndex]) === null || _value$changeIndex3 === void 0 ? void 0 : _value$changeIndex3.reason) : null) : null);
|
|
14506
13942
|
};
|
|
14507
13943
|
|
|
14508
13944
|
var _excluded$j = ["value", "onChange", "disabled", "failValue", "type"];
|
|
@@ -14618,10 +14054,8 @@ exports.BsSystemOrder = index$1;
|
|
|
14618
14054
|
exports.BuyerNick = BuyerNick;
|
|
14619
14055
|
exports.CalculationInput = CalculationInput;
|
|
14620
14056
|
exports.ChooseBaby = ChooseBaby;
|
|
14621
|
-
exports.CommonExchangeGoods = CommonExchangeGoods;
|
|
14622
14057
|
exports.CommonGoods = CommonGoods;
|
|
14623
14058
|
exports.CommonMultiStatus = CommonSystemOrder$1;
|
|
14624
|
-
exports.CommonReturnGoods = CommonReturnGoods;
|
|
14625
14059
|
exports.CommonStatus = CommonStatus;
|
|
14626
14060
|
exports.CommonSystemOrder = CommonSystemOrder;
|
|
14627
14061
|
exports.ExpressLogistics = ExpressLogistics;
|