@kmkf-fe-packages/basic-components 2.3.14 → 2.3.16

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/index.js CHANGED
@@ -7951,7 +7951,8 @@ var IdentifyAddress = function IdentifyAddress(props) {
7951
7951
  placeholder: "\u6536\u4EF6\u4EBA\u59D3\u540D",
7952
7952
  allowClear: true,
7953
7953
  onChange: function onChange(e) {
7954
- return changeHandle(e.target.value, 'receiverName');
7954
+ var _e$target$value;
7955
+ return changeHandle((_e$target$value = e.target.value) === null || _e$target$value === void 0 ? void 0 : _e$target$value.trim(), 'receiverName');
7955
7956
  }
7956
7957
  }), /*#__PURE__*/React__default['default'].createElement(antd.Input, {
7957
7958
  value: value.receiverMobile,
@@ -7959,7 +7960,8 @@ var IdentifyAddress = function IdentifyAddress(props) {
7959
7960
  allowClear: true,
7960
7961
  placeholder: "\u6536\u4EF6\u4EBA\u7535\u8BDD",
7961
7962
  onChange: function onChange(e) {
7962
- return changeHandle(e.target.value, 'receiverMobile');
7963
+ var _e$target$value2;
7964
+ return changeHandle((_e$target$value2 = e.target.value) === null || _e$target$value2 === void 0 ? void 0 : _e$target$value2.trim(), 'receiverMobile');
7963
7965
  }
7964
7966
  })), /*#__PURE__*/React__default['default'].createElement(antd.Space, {
7965
7967
  wrap: true
@@ -7976,7 +7978,8 @@ var IdentifyAddress = function IdentifyAddress(props) {
7976
7978
  placeholder: "\u8BE6\u7EC6\u5730\u5740",
7977
7979
  allowClear: true,
7978
7980
  onChange: function onChange(e) {
7979
- return changeHandle(e.target.value, 'detail');
7981
+ var _e$target$value3;
7982
+ return changeHandle((_e$target$value3 = e.target.value) === null || _e$target$value3 === void 0 ? void 0 : _e$target$value3.trim(), 'detail');
7980
7983
  }
7981
7984
  })));
7982
7985
  };
@@ -8698,6 +8701,21 @@ var processErpSendGood = function processErpSendGood(getValue) {
8698
8701
  return _defineProperty({}, nex.uniqueKey, (itemList === null || itemList === void 0 ? void 0 : itemList.length) ? itemList : initValue);
8699
8702
  };
8700
8703
  };
8704
+ var processErpReturnWarehouse = function processErpReturnWarehouse(getValue) {
8705
+ return function (nex, config) {
8706
+ var kmReturnWarehouseMap = {
8707
+ KM_RETURN_WAREHOUSE: {
8708
+ list: 'kmReturnWarehouse'
8709
+ }
8710
+ };
8711
+ var initValue = [{
8712
+ kmReturnWarehouseName: '',
8713
+ kmReturnWarehouseId: ''
8714
+ }];
8715
+ var itemList = jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_").concat(kmReturnWarehouseMap[nex.workOrderComponentType].list)), initValue);
8716
+ return _defineProperty({}, nex.uniqueKey, (itemList === null || itemList === void 0 ? void 0 : itemList.length) ? itemList : initValue);
8717
+ };
8718
+ };
8701
8719
  var processBsPosting = function processBsPosting(getValue) {
8702
8720
  return function (nex, config) {
8703
8721
  var bsAddress = [transTextToNumber(getValue("".concat(nex.uniqueKey, "_bsPostingProvince"))), transTextToNumber(getValue("".concat(nex.uniqueKey, "_bsPostingCity")))];
@@ -8997,6 +9015,14 @@ var processWdtExchangeGoods = function processWdtExchangeGoods(getValue) {
8997
9015
  });
8998
9016
  };
8999
9017
  };
9018
+ var processKmExchangeGoods = function processKmExchangeGoods(getValue) {
9019
+ return function (nex, config) {
9020
+ return _defineProperty({}, nex.uniqueKey, {
9021
+ kmExchangeGoods: jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_kmExchangeGoods")), []),
9022
+ shopCode: getValue("".concat(nex.uniqueKey, "_shopCode"))
9023
+ });
9024
+ };
9025
+ };
9000
9026
  var processJstExchangeGoods = function processJstExchangeGoods(getValue) {
9001
9027
  return function (nex, config) {
9002
9028
  return _defineProperty({}, nex.uniqueKey, {
@@ -9213,6 +9239,28 @@ var processKmReissueGoods = function processKmReissueGoods(templateColumns) {
9213
9239
  };
9214
9240
  };
9215
9241
  };
9242
+ var processKmReturnGoods = function processKmReturnGoods(templateColumns) {
9243
+ return function (getValue) {
9244
+ return function (nex, config) {
9245
+ var orderNo = '';
9246
+ var tradeId = templateColumns === null || templateColumns === void 0 ? void 0 : templateColumns.find(function (col) {
9247
+ return col.workOrderComponentType === 'TRADE_ID_INPUT';
9248
+ });
9249
+ if (tradeId) {
9250
+ orderNo = getValue("".concat(tradeId.uniqueKey, "_").concat(updateWorkTypeKeys[tradeId.workOrderComponentType]));
9251
+ }
9252
+ return _defineProperty({}, nex.uniqueKey, {
9253
+ kmSystemOrder: {
9254
+ orderNo: orderNo
9255
+ },
9256
+ kmReturnType: jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_kmReturnType")), !kmkfUtils.isNull(config === null || config === void 0 ? void 0 : config.initReason) ? [config.initReason] : ['1']),
9257
+ kmReturnGoods: jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_kmReturnGoods")), []),
9258
+ shopCode: getValue("".concat(nex.uniqueKey, "_shopCode")),
9259
+ kmSystemOrderNo: getValue("".concat(nex.uniqueKey, "_kmSystemOrderNo"))
9260
+ });
9261
+ };
9262
+ };
9263
+ };
9216
9264
  var processGyReissueGoods = function processGyReissueGoods(templateColumns) {
9217
9265
  return function (getValue) {
9218
9266
  return function (nex, config) {
@@ -9306,14 +9354,14 @@ var processJstReturnGoods = function processJstReturnGoods(templateColumns) {
9306
9354
  };
9307
9355
  var processLabel = function processLabel(getValue) {
9308
9356
  return function (nex, config) {
9309
- var _ref74;
9310
- return _ref74 = {}, _defineProperty(_ref74, nex.uniqueKey, jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_label")), [])), _defineProperty(_ref74, "".concat(nex.uniqueKey, "_label"), jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_label")), [])), _ref74;
9357
+ var _ref77;
9358
+ return _ref77 = {}, _defineProperty(_ref77, nex.uniqueKey, jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_label")), [])), _defineProperty(_ref77, "".concat(nex.uniqueKey, "_label"), jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_label")), [])), _ref77;
9311
9359
  };
9312
9360
  };
9313
9361
  var processMemberLevel = function processMemberLevel(getValue) {
9314
9362
  return function (nex, config) {
9315
- var _ref75;
9316
- return _ref75 = {}, _defineProperty(_ref75, nex.uniqueKey, jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_memberLevel")), [])), _defineProperty(_ref75, "".concat(nex.uniqueKey, "_memberLevel"), jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_memberLevel")), [])), _ref75;
9363
+ var _ref78;
9364
+ return _ref78 = {}, _defineProperty(_ref78, nex.uniqueKey, jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_memberLevel")), [])), _defineProperty(_ref78, "".concat(nex.uniqueKey, "_memberLevel"), jsonParseSecurity(getValue("".concat(nex.uniqueKey, "_memberLevel")), [])), _ref78;
9317
9365
  };
9318
9366
  };
9319
9367
  var processAfterSalesOrderId = function processAfterSalesOrderId(getValue) {
@@ -9430,6 +9478,7 @@ var transformWorkOrderData = function transformWorkOrderData(templateColumns) {
9430
9478
  BS_E3_SEND_GOOD: processErpSendGood,
9431
9479
  KM_SEND_GOOD: processErpSendGood,
9432
9480
  GY_SEND_GOOD: processErpSendGood,
9481
+ KM_RETURN_WAREHOUSE: processErpReturnWarehouse,
9433
9482
  BS_POSTING: processBsPosting,
9434
9483
  BS_GOODS: processBsGoods,
9435
9484
  WDT_GOODS: processWdtGoods(templateColumns),
@@ -9440,10 +9489,12 @@ var transformWorkOrderData = function transformWorkOrderData(templateColumns) {
9440
9489
  GY_GOODS: processGyGoods(templateColumns),
9441
9490
  KM_GOODS: processKmGoods(templateColumns),
9442
9491
  KM_REISSUE_GOODS: processKmReissueGoods(templateColumns),
9492
+ KM_RETURN_GOODS: processKmReturnGoods(templateColumns),
9443
9493
  JST_GOODS: processJstGoods(templateColumns),
9444
9494
  BS_REISSUE_GOODS: processBsReissueGoods,
9445
9495
  BS_EXCHANGE_GOODS: processBsExchangeGoods,
9446
9496
  WDT_EXCHANGE_GOODS: processWdtExchangeGoods,
9497
+ KM_EXCHANGE_GOODS: processKmExchangeGoods,
9447
9498
  JST_EXCHANGE_GOODS: processJstExchangeGoods,
9448
9499
  BS_RETURN_GOODS: processBsReturnGoods,
9449
9500
  WDT_RETURN_GOODS: processWdtReturnGoods(),
@@ -10743,7 +10794,8 @@ var BuyerNick = function BuyerNick(props) {
10743
10794
  disabled = props.disabled,
10744
10795
  _onBlur = props.onBlur;
10745
10796
  var changeValue = function changeValue(e, type) {
10746
- onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, type, e.target.value)));
10797
+ var _e$target$value;
10798
+ onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, type, (_e$target$value = e.target.value) === null || _e$target$value === void 0 ? void 0 : _e$target$value.trim())));
10747
10799
  };
10748
10800
  // useEffect(() => {
10749
10801
  // //淘宝平台和抖音平台需要展示买家id
@@ -10768,7 +10820,8 @@ var BuyerNick = function BuyerNick(props) {
10768
10820
  changeValue(e, 'buyerNick');
10769
10821
  },
10770
10822
  onBlur: function onBlur(e) {
10771
- _onBlur === null || _onBlur === void 0 ? void 0 : _onBlur(e.target.value, 'buyerNick');
10823
+ var _e$target$value2;
10824
+ _onBlur === null || _onBlur === void 0 ? void 0 : _onBlur((_e$target$value2 = e.target.value) === null || _e$target$value2 === void 0 ? void 0 : _e$target$value2.trim(), 'buyerNick');
10772
10825
  }
10773
10826
  });
10774
10827
  };
@@ -10890,8 +10943,9 @@ var RemarkInput = function RemarkInput(props) {
10890
10943
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10891
10944
  };
10892
10945
  var changeRemark = function changeRemark(e) {
10946
+ var _e$target$value;
10893
10947
  var newValue = _objectSpread2(_objectSpread2({}, value), {}, {
10894
- remark: e.target.value
10948
+ remark: (_e$target$value = e.target.value) === null || _e$target$value === void 0 ? void 0 : _e$target$value.trim()
10895
10949
  });
10896
10950
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
10897
10951
  };
@@ -10934,7 +10988,7 @@ var Logistics = function Logistics(props) {
10934
10988
  var handleInputChange = function handleInputChange(e) {
10935
10989
  var val = e.target.value;
10936
10990
  typeof onChange === 'function' && onChange(_objectSpread2(_objectSpread2({}, value), {}, {
10937
- order: val
10991
+ order: val === null || val === void 0 ? void 0 : val.trim()
10938
10992
  }));
10939
10993
  };
10940
10994
  var handelSelectChange = function handelSelectChange(val) {
@@ -10998,7 +11052,8 @@ var AliPay = function AliPay(props) {
10998
11052
  disabled = props.disabled,
10999
11053
  _onBlur = props.onBlur;
11000
11054
  var changeValue = function changeValue(e, type) {
11001
- onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, type, e.target.value)));
11055
+ var _e$target$value;
11056
+ onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, type, (_e$target$value = e.target.value) === null || _e$target$value === void 0 ? void 0 : _e$target$value.trim())));
11002
11057
  };
11003
11058
  return /*#__PURE__*/React__default['default'].createElement("div", null, !isSingle ? /*#__PURE__*/React__default['default'].createElement("div", null, /*#__PURE__*/React__default['default'].createElement(antd.Input, {
11004
11059
  disabled: disabled,
@@ -12669,7 +12724,8 @@ var Invoice = function Invoice(props) {
12669
12724
  }),
12670
12725
  current = _useRef.current;
12671
12726
  var handleInputChange = function handleInputChange(e) {
12672
- var ordinaryTaitou = e.target.value;
12727
+ var _e$target$value;
12728
+ var ordinaryTaitou = (_e$target$value = e.target.value) === null || _e$target$value === void 0 ? void 0 : _e$target$value.trim();
12673
12729
  setVisible(false);
12674
12730
  setList([]);
12675
12731
  var newValue = _objectSpread2(_objectSpread2({}, value), {}, {
@@ -12692,8 +12748,9 @@ var Invoice = function Invoice(props) {
12692
12748
  handleChange(ordinaryTaitou);
12693
12749
  };
12694
12750
  var handleValueClick = function handleValueClick(e) {
12751
+ var _e$target$value2;
12695
12752
  var newValue = _objectSpread2(_objectSpread2({}, value), {}, {
12696
- ordinarySerial: e.target.value
12753
+ ordinarySerial: (_e$target$value2 = e.target.value) === null || _e$target$value2 === void 0 ? void 0 : _e$target$value2.trim()
12697
12754
  });
12698
12755
  onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2({}, newValue));
12699
12756
  };
@@ -13004,7 +13061,8 @@ var Payment = function Payment(props) {
13004
13061
  // }
13005
13062
  // }, [shopId, shopList]);
13006
13063
  var changeValue = function changeValue(e, type) {
13007
- var newValue = _objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, type, e.target.value));
13064
+ var _e$target$value;
13065
+ var newValue = _objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, type, (_e$target$value = e.target.value) === null || _e$target$value === void 0 ? void 0 : _e$target$value.trim()));
13008
13066
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
13009
13067
  type === 'enterprisePaymentTid' && (onSearch === null || onSearch === void 0 ? void 0 : onSearch(e));
13010
13068
  };
@@ -13065,7 +13123,8 @@ var Payment = function Payment(props) {
13065
13123
  return changeValue(e, item.name);
13066
13124
  },
13067
13125
  onBlur: function onBlur(e) {
13068
- return _onBlur === null || _onBlur === void 0 ? void 0 : _onBlur(e.target.value, item.name);
13126
+ var _e$target$value2;
13127
+ return _onBlur === null || _onBlur === void 0 ? void 0 : _onBlur((_e$target$value2 = e.target.value) === null || _e$target$value2 === void 0 ? void 0 : _e$target$value2.trim(), item.name);
13069
13128
  }
13070
13129
  }), (replaceValueCh === null || replaceValueCh === void 0 ? void 0 : replaceValueCh[item.name]) && /*#__PURE__*/React__default['default'].createElement("p", {
13071
13130
  style: {
@@ -13358,7 +13417,8 @@ var LogisticsInterception = function LogisticsInterception(props) {
13358
13417
  disabled: disabled || isEdit,
13359
13418
  placeholder: "\u7269\u6D41\u5355\u53F7",
13360
13419
  onChange: function onChange(e) {
13361
- return changeHandle(e.target.value, 'interceptCode');
13420
+ var _e$target$value;
13421
+ return changeHandle((_e$target$value = e.target.value) === null || _e$target$value === void 0 ? void 0 : _e$target$value.trim(), 'interceptCode');
13362
13422
  },
13363
13423
  value: value === null || value === void 0 ? void 0 : value.interceptCode
13364
13424
  }))), /*#__PURE__*/React__default['default'].createElement(antd.Space, null, /*#__PURE__*/React__default['default'].createElement(Item, {
@@ -13433,7 +13493,8 @@ var LogisticsInterception = function LogisticsInterception(props) {
13433
13493
  disabled: disabled || isEdit,
13434
13494
  placeholder: senderMobileLabel,
13435
13495
  onChange: function onChange(e) {
13436
- return changeHandle(e.target.value, 'interceptSenderMobile');
13496
+ var _e$target$value2;
13497
+ return changeHandle((_e$target$value2 = e.target.value) === null || _e$target$value2 === void 0 ? void 0 : _e$target$value2.trim(), 'interceptSenderMobile');
13437
13498
  }
13438
13499
  })), /*#__PURE__*/React__default['default'].createElement(Item, {
13439
13500
  label: '退回地址',
@@ -13492,7 +13553,8 @@ var LogisticsInterception = function LogisticsInterception(props) {
13492
13553
  },
13493
13554
  placeholder: "\u5176\u4ED6",
13494
13555
  onChange: function onChange(e) {
13495
- return changeHandle(e.target.value, 'interceptLogisticsStatusOther');
13556
+ var _e$target$value3;
13557
+ return changeHandle((_e$target$value3 = e.target.value) === null || _e$target$value3 === void 0 ? void 0 : _e$target$value3.trim(), 'interceptLogisticsStatusOther');
13496
13558
  }
13497
13559
  })), /*#__PURE__*/React__default['default'].createElement(Item, {
13498
13560
  label: '拦截状态',
@@ -13546,7 +13608,8 @@ var LogisticsInterception = function LogisticsInterception(props) {
13546
13608
  disabled: true,
13547
13609
  placeholder: "\u63A5\u53E3\u72B6\u6001\u539F\u56E0",
13548
13610
  onChange: function onChange(e) {
13549
- return changeHandle(e.target.value, 'interceptLogisticsApiStatusReason');
13611
+ var _e$target$value4;
13612
+ return changeHandle((_e$target$value4 = e.target.value) === null || _e$target$value4 === void 0 ? void 0 : _e$target$value4.trim(), 'interceptLogisticsApiStatusReason');
13550
13613
  }
13551
13614
  })));
13552
13615
  };
@@ -13622,7 +13685,7 @@ var LogisticsTrajectory = function LogisticsTrajectory(props) {
13622
13685
  trajectoryApiStatus = _props$trajectoryApiS === void 0 ? false : _props$trajectoryApiS;
13623
13686
  var handleInputChange = function handleInputChange(e, type) {
13624
13687
  var val = e.target.value;
13625
- typeof onChange === 'function' && onChange(_objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, type, val)));
13688
+ typeof onChange === 'function' && onChange(_objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, type, val === null || val === void 0 ? void 0 : val.trim())));
13626
13689
  };
13627
13690
  var handelSelectChange = function handelSelectChange(val) {
13628
13691
  typeof onChange === 'function' && onChange(_objectSpread2(_objectSpread2({}, value), {}, {
@@ -14022,10 +14085,14 @@ var typeInitValueMap = {
14022
14085
  }],
14023
14086
  4: [{
14024
14087
  deliveryNo: null
14088
+ }],
14089
+ 5: [{
14090
+ returnWarehouseName: null,
14091
+ returnWarehouseId: null
14025
14092
  }]
14026
14093
  };
14027
14094
  var jstGoods = function jstGoods(props) {
14028
- var _value$changeIndex, _value$changeIndex2, _value$changeIndex3, _value$changeIndex4, _value$changeIndex5, _value$changeIndex6, _value$changeIndex7, _value$changeIndex8, _value$changeIndex9, _value$changeIndex10, _value$changeIndex11, _value$changeIndex12, _value$changeIndex13;
14095
+ var _value$changeIndex, _value$changeIndex2, _value$changeIndex3, _value$changeIndex4, _value$changeIndex5, _value$changeIndex6, _value$changeIndex7, _value$changeIndex8, _value$changeIndex9, _value$changeIndex10, _value$changeIndex11, _value$changeIndex12, _value$changeIndex13, _value$changeIndex14, _value$changeIndex15, _value$changeIndex16, _value$changeIndex17;
14029
14096
  var _props$value = props.value,
14030
14097
  value = _props$value === void 0 ? [] : _props$value,
14031
14098
  onChange = props.onChange,
@@ -14098,13 +14165,28 @@ var jstGoods = function jstGoods(props) {
14098
14165
  newList[changeIndex] = changeOrderInfo;
14099
14166
  onChange === null || onChange === void 0 ? void 0 : onChange(newList);
14100
14167
  };
14168
+ var handleSelectedReturn = function handleSelectedReturn(val, type, option, onlyShowFieldSelect) {
14169
+ var changeOrderInfo = _objectSpread2({}, value[changeIndex]);
14170
+ changeOrderInfo[type] = val;
14171
+ if (!onlyShowFieldSelect) {
14172
+ changeOrderInfo['returnWarehouseId'] = option.value;
14173
+ }
14174
+ if (isSelectName && type === 'returnWarehouseName') {
14175
+ // 如果发货仓名称存的是name,将id存入快照,同时把id替换成名称
14176
+ changeOrderInfo['sendSnapshotId'] = option.value;
14177
+ changeOrderInfo['returnWarehouseName'] = option.label;
14178
+ }
14179
+ var newList = _toConsumableArray(value);
14180
+ newList[changeIndex] = changeOrderInfo;
14181
+ onChange === null || onChange === void 0 ? void 0 : onChange(newList);
14182
+ };
14101
14183
  var filterOption = function filterOption(input, option) {
14102
14184
  var _option$label;
14103
14185
  return ((_option$label = option === null || option === void 0 ? void 0 : option.label) !== null && _option$label !== void 0 ? _option$label : '').includes(input);
14104
14186
  };
14105
14187
  var changeInputHandle = function changeInputHandle(val, type) {
14106
14188
  var changeOrderInfo = _objectSpread2({}, value[changeIndex]);
14107
- changeOrderInfo[type] = val;
14189
+ changeOrderInfo[type] = val === null || val === void 0 ? void 0 : val.trim();
14108
14190
  var newList = _toConsumableArray(value);
14109
14191
  newList[changeIndex] = changeOrderInfo;
14110
14192
  onChange === null || onChange === void 0 ? void 0 : onChange(newList);
@@ -14212,7 +14294,35 @@ var jstGoods = function jstGoods(props) {
14212
14294
  return changeInputHandle(e.target.value, 'deliveryNo');
14213
14295
  },
14214
14296
  value: (_value$changeIndex13 = value[changeIndex]) === null || _value$changeIndex13 === void 0 ? void 0 : _value$changeIndex13.sendName
14215
- })) : null) : null);
14297
+ })) : null, type === 5 ? /*#__PURE__*/React__default['default'].createElement(antd.Space, null, ['returnWarehouseId', 'all'].includes(showField) && /*#__PURE__*/React__default['default'].createElement(antd.Input, {
14298
+ disabled: disabled,
14299
+ placeholder: "\u8BF7\u8F93\u5165\u9000\u8D27\u4ED3\u7F16\u7801",
14300
+ onChange: function onChange(e) {
14301
+ return changeInputHandle(e.target.value, 'returnWarehouseId');
14302
+ },
14303
+ value: (_value$changeIndex14 = value[changeIndex]) === null || _value$changeIndex14 === void 0 ? void 0 : _value$changeIndex14.returnWarehouseId
14304
+ }), ['returnWarehouseName', 'all'].includes(showField) && (isSelectName ? /*#__PURE__*/React__default['default'].createElement(antd.Select, {
14305
+ style: {
14306
+ minWidth: '100px',
14307
+ maxWidth: '180px'
14308
+ },
14309
+ disabled: disabled,
14310
+ placeholder: "\u9000\u8D27\u4ED3\u540D\u79F0",
14311
+ showSearch: true,
14312
+ options: sendOptions,
14313
+ filterOption: filterOption,
14314
+ value: ((_value$changeIndex15 = value[changeIndex]) === null || _value$changeIndex15 === void 0 ? void 0 : _value$changeIndex15.sendSnapshotId) || ((_value$changeIndex16 = value[changeIndex]) === null || _value$changeIndex16 === void 0 ? void 0 : _value$changeIndex16.returnWarehouseName) || null,
14315
+ onChange: function onChange(value, option) {
14316
+ return handleSelectedReturn(value, 'returnWarehouseName', option, onlyShowFieldSelect);
14317
+ }
14318
+ }) : /*#__PURE__*/React__default['default'].createElement(antd.Input, {
14319
+ disabled: disabled,
14320
+ placeholder: "\u8BF7\u8F93\u5165\u9000\u8D27\u4ED3\u540D\u79F0",
14321
+ onChange: function onChange(e) {
14322
+ return changeInputHandle(e.target.value, 'returnWarehouseName');
14323
+ },
14324
+ value: (_value$changeIndex17 = value[changeIndex]) === null || _value$changeIndex17 === void 0 ? void 0 : _value$changeIndex17.returnWarehouseName
14325
+ }))) : null) : null);
14216
14326
  };
14217
14327
 
14218
14328
  var css_248z$a = ".jstGoodsBox {\n display: flex;\n flex-wrap: wrap;\n}\n.jstGoodsBox .goodBox-Img {\n width: 80px;\n margin: 0 10px 10px 0;\n}\n.jstGoodsBox .right-context {\n font-size: 12px;\n}\n.jstGoodsBox .right-context .ant-input {\n font-size: 12px;\n width: 80px;\n height: 20px;\n padding-left: 5px;\n padding-right: 5px;\n}\n.jstGoodsBox .right-context .ant-input.id-textarea {\n width: 80px;\n resize: none;\n height: 45px;\n}\n.jstGoodsBox.goodsBox-item-horizontal--box {\n flex-direction: row;\n width: auto;\n}\n.jstimgBox {\n position: relative;\n width: 80px;\n height: 80px;\n border-radius: 4px;\n border: 1px solid #f2f3f5;\n margin: 0 10px 10px 0;\n text-align: center;\n background-color: #f2f3f5;\n display: flex;\n justify-items: center;\n align-items: center;\n}\n.jstimgBox .add-btn {\n color: #86909c;\n}\n.jstimgBox .text {\n color: #86909c;\n}\n.icon-close {\n position: absolute;\n top: -5px;\n right: -5px;\n width: 13px;\n height: 13px;\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 50%;\n z-index: 3;\n background-color: #fff;\n cursor: pointer;\n}\n.img {\n width: 100%;\n height: 100%;\n -o-object-fit: contain;\n object-fit: contain;\n}\n.goods-title {\n margin: 0 0 10px 5px;\n color: #4e5969;\n}\n.searchBox {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n margin-bottom: 10px;\n}\n.searchBox .search {\n width: 150px;\n margin-left: 6px;\n}\n.deg90 {\n transform: rotate(90deg);\n}\n.goodsMain {\n display: flex;\n flex-wrap: wrap;\n height: 400px;\n overflow-y: auto;\n margin-bottom: 10px;\n}\n.goodsMain .goodItem {\n width: 142px;\n height: 184px;\n padding: 7px;\n margin: 0 16px 16px 0;\n border-radius: 4px;\n background: #ffffff;\n box-sizing: border-box;\n /* 主题色/常规 */\n border: 1px solid #c9cdd4;\n}\n.goodsMain .goodItem .goodImg {\n width: 128px;\n height: 128px;\n border-radius: 4px;\n overflow: hidden;\n}\n.goodsMain .goodItem .goodImg img {\n width: 100%;\n height: 100%;\n -o-object-fit: contain;\n object-fit: contain;\n}\n.goodsMain .goodItem .goodText {\n text-align: center;\n font-size: 12px;\n color: #4e5969;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.goodsMain .goodItem .goodPrice {\n text-align: center;\n font-size: 14px;\n color: #1d2129;\n}\n.goodsMain .goodItem.active {\n border: 1px solid #1b5bf3;\n}\n@media screen and (max-width: 500px) {\n .goodsMain {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n grid-gap: 8px;\n height: 300px;\n }\n .goodsMain .goodItem {\n height: 126px;\n width: 83px;\n padding: 4px;\n margin: 0;\n border-radius: 4px;\n background: #FFFFFF;\n box-sizing: border-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n }\n .goodsMain .goodItem .goodImg {\n width: 98%;\n height: 77px;\n }\n .goodsMain .goodItem .goodText {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .goodsMain .goodItem.active {\n border: 1px solid #3089dc;\n }\n .searchBox {\n display: flex;\n flex-wrap: wrap;\n justify-content: initial;\n }\n .searchBox .classify {\n width: 120px;\n }\n .goodModal .ant-modal-body {\n padding: 8px;\n }\n}\n.goods-uploaded-count {\n color: #ff3638;\n}\n.footer {\n display: flex;\n justify-content: flex-end;\n}\n.right-context {\n display: flex;\n flex-direction: column;\n}\n.right-context .info-row {\n width: 80px;\n display: flex;\n align-items: center;\n padding: 0px 8px;\n border-radius: 2px;\n cursor: pointer;\n background: #f2f3f5;\n margin-bottom: 4px;\n}\n.right-context .info-row > div {\n text-overflow: ellipsis;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n overflow: hidden;\n word-break: break-all;\n}\n.sphPagination {\n display: flex;\n align-items: center;\n}\n.sphPagination .shpBtn {\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 0 8px;\n height: 32px;\n border: 1px solid #d9d9d9;\n border-radius: 2px;\n cursor: pointer;\n margin: 0 8px;\n}\n.sphPagination .shpBtn.unCursor {\n color: #eee;\n cursor: not-allowed;\n}\n";
@@ -21681,16 +21791,28 @@ function toNum$3(value) {
21681
21791
  }
21682
21792
  return void 0;
21683
21793
  }
21684
- var getColumns$6 = function getColumns(_ref) {
21685
- var _ref$text = _ref.text,
21794
+ var isNumberOrNumberString$2 = function isNumberOrNumberString(value) {
21795
+ if (typeof value === 'number') return true;
21796
+ if (typeof value === 'string' && !isNaN(Number(value)) && value.trim() !== '') return true;
21797
+ return false;
21798
+ };
21799
+ var getColumns$6 = function getColumns() {
21800
+ var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
21801
+ _ref$text = _ref.text,
21686
21802
  disabled = _ref.disabled,
21687
- updateHandle = _ref.updateHandle;
21803
+ updateHandle = _ref.updateHandle,
21804
+ updateDataHandle = _ref.updateDataHandle;
21688
21805
  return {
21689
21806
  KM_GOODS: [{
21690
21807
  dataIndex: 'skuPropertiesName',
21691
21808
  title: "\u89C4\u683C\u540D\u79F0",
21692
21809
  width: 250,
21693
21810
  render: renderTextEllipsis
21811
+ }, {
21812
+ dataIndex: 'sysSkuPropertiesName',
21813
+ title: "\u7CFB\u7EDF\u89C4\u683C\u540D\u79F0",
21814
+ width: 150,
21815
+ render: renderTextEllipsis
21694
21816
  }, {
21695
21817
  dataIndex: 'sysTitle',
21696
21818
  title: "\u7CFB\u7EDF\u5546\u54C1\u540D\u79F0",
@@ -21798,6 +21920,11 @@ var getColumns$6 = function getColumns(_ref) {
21798
21920
  title: "\u4F9B\u5E94\u5546\u7F16\u7801",
21799
21921
  width: 150,
21800
21922
  render: renderTextEllipsis
21923
+ }, {
21924
+ dataIndex: 'remark',
21925
+ title: "\u5907\u6CE8",
21926
+ width: 200,
21927
+ render: renderTextEllipsis
21801
21928
  }].map(function (item) {
21802
21929
  return _objectSpread2(_objectSpread2({}, item), {}, {
21803
21930
  align: 'center',
@@ -21809,6 +21936,11 @@ var getColumns$6 = function getColumns(_ref) {
21809
21936
  title: "\u89C4\u683C\u540D\u79F0",
21810
21937
  width: 250,
21811
21938
  render: renderTextEllipsis
21939
+ }, {
21940
+ dataIndex: 'sysSkuPropertiesName',
21941
+ title: "\u7CFB\u7EDF\u89C4\u683C\u540D\u79F0",
21942
+ width: 150,
21943
+ render: renderTextEllipsis
21812
21944
  }, {
21813
21945
  dataIndex: 'sysTitle',
21814
21946
  title: "\u7CFB\u7EDF\u5546\u54C1\u540D\u79F0",
@@ -21853,7 +21985,9 @@ var getColumns$6 = function getColumns(_ref) {
21853
21985
  dataIndex: 'realNum',
21854
21986
  title: "\u5B9E\u9645\u8865\u53D1\u6570\u91CF",
21855
21987
  width: 100,
21856
- validator: function validator(_rule, value) {
21988
+ validator: function validator(_rule, value, extraParams) {
21989
+ console.log('实际补发数量-extraParams', extraParams);
21990
+ if (!(extraParams === null || extraParams === void 0 ? void 0 : extraParams.quantityVerify)) return undefined;
21857
21991
  var title = '';
21858
21992
  if (((value === null || value === void 0 ? void 0 : value.kmReissueGoods) || []).some(function (goods) {
21859
21993
  var realNum = toNum$3(goods === null || goods === void 0 ? void 0 : goods.realNum);
@@ -21881,8 +22015,21 @@ var getColumns$6 = function getColumns(_ref) {
21881
22015
  }
21882
22016
  }, {
21883
22017
  dataIndex: 'desiredNum',
21884
- title: "\u5E94\u8865\u53D1\u6570\u91CF",
22018
+ title: "\u7533\u8BF7\u8865\u53D1\u6570\u91CF",
21885
22019
  width: 100,
22020
+ validator: function validator(_rule, value) {
22021
+ var title = '';
22022
+ if (((value === null || value === void 0 ? void 0 : value.kmReissueGoods) || []).some(function (goods) {
22023
+ var desiredNum = toNum$3(goods === null || goods === void 0 ? void 0 : goods.desiredNum);
22024
+ var res = typeof desiredNum === 'number' ? desiredNum < 1 : true;
22025
+ if (res) {
22026
+ title = (goods === null || goods === void 0 ? void 0 : goods.goodName) ? "[".concat(goods === null || goods === void 0 ? void 0 : goods.goodName, "]") : '';
22027
+ }
22028
+ return res;
22029
+ })) {
22030
+ return Promise.reject("".concat(title, "\u7533\u8BF7\u8865\u53D1\u6570\u91CF\u5FC5\u987B\u5927\u4E8E0"));
22031
+ }
22032
+ },
21886
22033
  render: function render(val, record, index) {
21887
22034
  return record.canEdit && !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
21888
22035
  style: {
@@ -21951,11 +22098,336 @@ var getColumns$6 = function getColumns(_ref) {
21951
22098
  align: 'center',
21952
22099
  ellipsis: true
21953
22100
  });
22101
+ }),
22102
+ KM_RETURN_GOODS: [{
22103
+ dataIndex: 'skuPropertiesName',
22104
+ title: "\u89C4\u683C\u540D\u79F0",
22105
+ width: 250,
22106
+ render: renderTextEllipsis
22107
+ }, {
22108
+ dataIndex: 'sysSkuPropertiesName',
22109
+ title: "\u7CFB\u7EDF\u89C4\u683C\u540D\u79F0",
22110
+ width: 150,
22111
+ render: renderTextEllipsis
22112
+ }, {
22113
+ dataIndex: 'sysTitle',
22114
+ title: "\u7CFB\u7EDF\u5546\u54C1\u540D\u79F0",
22115
+ width: 150,
22116
+ render: renderTextEllipsis
22117
+ }, {
22118
+ dataIndex: 'shortTitle',
22119
+ title: "\u5546\u54C1\u7B80\u79F0",
22120
+ width: 150,
22121
+ render: renderTextEllipsis
22122
+ }, {
22123
+ dataIndex: 'title',
22124
+ title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
22125
+ width: 150,
22126
+ render: renderTextEllipsis
22127
+ }, {
22128
+ dataIndex: 'sysOuterId',
22129
+ title: "\u7CFB\u7EDF\u5546\u5BB6\u7F16\u7801",
22130
+ width: 150,
22131
+ render: renderTextEllipsis
22132
+ }, {
22133
+ dataIndex: 'itemSysId',
22134
+ title: "\u7CFB\u7EDF\u5546\u54C1ID",
22135
+ width: 150,
22136
+ render: renderTextEllipsis
22137
+ }, {
22138
+ dataIndex: 'skuSysId',
22139
+ title: "\u7CFB\u7EDF\u89C4\u683CID",
22140
+ width: 150,
22141
+ render: renderTextEllipsis
22142
+ }, {
22143
+ dataIndex: 'skuId',
22144
+ title: "\u5E73\u53F0\u89C4\u683CID",
22145
+ width: 170,
22146
+ render: renderTextEllipsis
22147
+ }, {
22148
+ dataIndex: 'outerSkuId',
22149
+ title: "\u5E73\u53F0\u89C4\u683C\u7F16\u7801",
22150
+ width: 170,
22151
+ render: renderTextEllipsis
22152
+ }, {
22153
+ dataIndex: 'realNum',
22154
+ title: "\u5B9E\u9645\u9000\u8D27\u6570\u91CF",
22155
+ width: 100,
22156
+ render: function render(val, record, index) {
22157
+ return record.canEdit && !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
22158
+ style: {
22159
+ width: 70
22160
+ },
22161
+ value: val,
22162
+ min: 1,
22163
+ precision: 0,
22164
+ onChange: function onChange(num) {
22165
+ updateDataHandle({
22166
+ realNum: num,
22167
+ refundMoney: num && isNumberOrNumberString$2(record.price) ? num * record.price : null
22168
+ }, index);
22169
+ }
22170
+ }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
22171
+ }
22172
+ }, {
22173
+ dataIndex: 'desiredNum',
22174
+ title: "\u7533\u8BF7\u9000\u8D27\u6570\u91CF",
22175
+ width: 100,
22176
+ validator: function validator(_rule, value) {
22177
+ var title = '';
22178
+ if (((value === null || value === void 0 ? void 0 : value.kmReturnGoods) || []).some(function (goods) {
22179
+ var desiredNum = toNum$3(goods === null || goods === void 0 ? void 0 : goods.desiredNum);
22180
+ var res = typeof desiredNum === 'number' ? desiredNum < 1 : true;
22181
+ if (res) {
22182
+ title = (goods === null || goods === void 0 ? void 0 : goods.goodName) ? "[".concat(goods === null || goods === void 0 ? void 0 : goods.goodName, "]") : '';
22183
+ }
22184
+ return res;
22185
+ })) {
22186
+ return Promise.reject("".concat(title, "\u7533\u8BF7\u9000\u8D27\u6570\u91CF\u5FC5\u987B\u5927\u4E8E0"));
22187
+ }
22188
+ },
22189
+ render: function render(val, record, index) {
22190
+ return record.canEdit && !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
22191
+ style: {
22192
+ width: 70
22193
+ },
22194
+ value: val,
22195
+ min: 1,
22196
+ precision: 0,
22197
+ onChange: function onChange(num) {
22198
+ return updateHandle === null || updateHandle === void 0 ? void 0 : updateHandle(num, index, 'desiredNum');
22199
+ }
22200
+ }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
22201
+ }
22202
+ }, {
22203
+ dataIndex: 'goodNum',
22204
+ title: "\u826F\u54C1\u6570",
22205
+ width: 100,
22206
+ render: function render(val, record, index) {
22207
+ return record.canEdit && !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
22208
+ style: {
22209
+ width: 70
22210
+ },
22211
+ value: val,
22212
+ min: 1,
22213
+ precision: 0,
22214
+ onChange: function onChange(num) {
22215
+ return updateHandle === null || updateHandle === void 0 ? void 0 : updateHandle(num, index, 'goodNum');
22216
+ }
22217
+ }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
22218
+ }
22219
+ }, {
22220
+ dataIndex: 'defectiveNum',
22221
+ title: "\u6B21\u54C1\u6570",
22222
+ width: 100,
22223
+ render: function render(val, record, index) {
22224
+ return record.canEdit && !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
22225
+ style: {
22226
+ width: 70
22227
+ },
22228
+ value: val,
22229
+ min: 1,
22230
+ precision: 0,
22231
+ onChange: function onChange(num) {
22232
+ return updateHandle === null || updateHandle === void 0 ? void 0 : updateHandle(num, index, 'defectiveNum');
22233
+ }
22234
+ }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
22235
+ }
22236
+ }, {
22237
+ dataIndex: 'price',
22238
+ title: "\u5546\u54C1\u9500\u552E\u4EF7",
22239
+ width: 150,
22240
+ render: function render(val) {
22241
+ return val || val === 0 ? Number(val).toFixed(2) : '';
22242
+ }
22243
+ }, {
22244
+ dataIndex: 'refundMoney',
22245
+ title: "\u5B9E\u9000\u91D1\u989D",
22246
+ width: 150,
22247
+ render: function render(val, record, index) {
22248
+ return record.canEdit && !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
22249
+ style: {
22250
+ width: 130
22251
+ },
22252
+ value: val,
22253
+ min: 0,
22254
+ precision: 2,
22255
+ onChange: function onChange(num) {
22256
+ return updateHandle === null || updateHandle === void 0 ? void 0 : updateHandle(num, index, 'refundMoney');
22257
+ }
22258
+ }) : /*#__PURE__*/React__default['default'].createElement("span", null, val || val === 0 ? Number(val).toFixed(2) : '');
22259
+ }
22260
+ }, {
22261
+ dataIndex: 'type',
22262
+ title: "\u5546\u54C1\u7C7B\u578B",
22263
+ width: 150,
22264
+ render: renderTextEllipsis
22265
+ }, {
22266
+ dataIndex: 'sysPicPath',
22267
+ title: "\u5546\u54C1\u56FE\u7247",
22268
+ width: 100,
22269
+ headerComponentType: 'pic',
22270
+ render: function render(val) {
22271
+ var imgUrl = (val === null || val === void 0 ? void 0 : val.startsWith('http')) ? val : "https://erp.superboss.cc".concat(val);
22272
+ return /*#__PURE__*/React__default['default'].createElement(antd.Image, {
22273
+ width: 30,
22274
+ src: imgUrl
22275
+ });
22276
+ }
22277
+ }].map(function (item) {
22278
+ return _objectSpread2(_objectSpread2({}, item), {}, {
22279
+ align: 'center',
22280
+ ellipsis: true
22281
+ });
22282
+ }),
22283
+ KM_EXCHANGE_GOODS: [{
22284
+ dataIndex: 'skuPropertiesName',
22285
+ title: "\u89C4\u683C\u540D\u79F0",
22286
+ width: 250,
22287
+ render: renderTextEllipsis
22288
+ }, {
22289
+ dataIndex: 'sysSkuPropertiesName',
22290
+ title: "\u7CFB\u7EDF\u89C4\u683C\u540D\u79F0",
22291
+ width: 150,
22292
+ render: renderTextEllipsis
22293
+ }, {
22294
+ dataIndex: 'sysTitle',
22295
+ title: "\u7CFB\u7EDF\u5546\u54C1\u540D\u79F0",
22296
+ width: 150,
22297
+ render: renderTextEllipsis
22298
+ }, {
22299
+ dataIndex: 'shortTitle',
22300
+ title: "\u5546\u54C1\u7B80\u79F0",
22301
+ width: 150,
22302
+ render: renderTextEllipsis
22303
+ }, {
22304
+ dataIndex: 'title',
22305
+ title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
22306
+ width: 150,
22307
+ render: renderTextEllipsis
22308
+ }, {
22309
+ dataIndex: 'sysOuterId',
22310
+ title: "\u7CFB\u7EDF\u5546\u5BB6\u7F16\u7801",
22311
+ width: 150,
22312
+ render: renderTextEllipsis
22313
+ }, {
22314
+ dataIndex: 'itemSysId',
22315
+ title: "\u7CFB\u7EDF\u5546\u54C1ID",
22316
+ width: 150,
22317
+ render: renderTextEllipsis
22318
+ }, {
22319
+ dataIndex: 'skuSysId',
22320
+ title: "\u7CFB\u7EDF\u89C4\u683CID",
22321
+ width: 150,
22322
+ render: renderTextEllipsis
22323
+ }, {
22324
+ dataIndex: 'skuId',
22325
+ title: "\u5E73\u53F0\u89C4\u683CID",
22326
+ width: 170,
22327
+ render: renderTextEllipsis
22328
+ }, {
22329
+ dataIndex: 'outerSkuId',
22330
+ title: "\u5E73\u53F0\u89C4\u683C\u7F16\u7801",
22331
+ width: 170,
22332
+ render: renderTextEllipsis
22333
+ }, {
22334
+ dataIndex: 'realNum',
22335
+ title: "\u5B9E\u9645\u6362\u51FA\u6570\u91CF",
22336
+ width: 100,
22337
+ validator: function validator(_rule, value, extraParams) {
22338
+ if (!(extraParams === null || extraParams === void 0 ? void 0 : extraParams.quantityVerify)) return undefined;
22339
+ var title = '';
22340
+ if (((value === null || value === void 0 ? void 0 : value.kmExchangeGoods) || []).some(function (goods) {
22341
+ var realNum = toNum$3(goods === null || goods === void 0 ? void 0 : goods.realNum);
22342
+ var res = typeof realNum === 'number' ? realNum < 1 : true;
22343
+ if (res) {
22344
+ title = (goods === null || goods === void 0 ? void 0 : goods.goodName) ? "[".concat(goods === null || goods === void 0 ? void 0 : goods.goodName, "]") : '';
22345
+ }
22346
+ return res;
22347
+ })) {
22348
+ return Promise.reject("".concat(title, "\u5B9E\u9645\u6362\u51FA\u6570\u91CF\u5FC5\u987B\u5927\u4E8E0"));
22349
+ }
22350
+ },
22351
+ render: function render(val, record, index) {
22352
+ return record.canEdit && !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
22353
+ style: {
22354
+ width: 70
22355
+ },
22356
+ value: val,
22357
+ min: 1,
22358
+ precision: 0,
22359
+ onChange: function onChange(num) {
22360
+ updateDataHandle({
22361
+ realNum: num,
22362
+ refundMoney: num && isNumberOrNumberString$2(record.price) ? num * record.price : null
22363
+ }, index);
22364
+ }
22365
+ }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
22366
+ }
22367
+ }, {
22368
+ dataIndex: 'desiredNum',
22369
+ title: "\u5E94\u6362\u51FA\u6570\u91CF",
22370
+ width: 100,
22371
+ validator: function validator(_rule, value) {
22372
+ var title = '';
22373
+ if (((value === null || value === void 0 ? void 0 : value.kmExchangeGoods) || []).some(function (goods) {
22374
+ var desiredNum = toNum$3(goods === null || goods === void 0 ? void 0 : goods.desiredNum);
22375
+ var res = typeof desiredNum === 'number' ? desiredNum < 1 : true;
22376
+ if (res) {
22377
+ title = (goods === null || goods === void 0 ? void 0 : goods.goodName) ? "[".concat(goods === null || goods === void 0 ? void 0 : goods.goodName, "]") : '';
22378
+ }
22379
+ return res;
22380
+ })) {
22381
+ return Promise.reject("".concat(title, "\u5E94\u6362\u51FA\u6570\u91CF\u5FC5\u987B\u5927\u4E8E0"));
22382
+ }
22383
+ },
22384
+ render: function render(val, record, index) {
22385
+ return record.canEdit && !disabled ? /*#__PURE__*/React__default['default'].createElement(antd.InputNumber, {
22386
+ style: {
22387
+ width: 70
22388
+ },
22389
+ value: val,
22390
+ min: 1,
22391
+ precision: 0,
22392
+ onChange: function onChange(num) {
22393
+ return updateHandle === null || updateHandle === void 0 ? void 0 : updateHandle(num, index, 'desiredNum');
22394
+ }
22395
+ }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
22396
+ }
22397
+ }, {
22398
+ dataIndex: 'price',
22399
+ title: "\u5546\u54C1\u9500\u552E\u4EF7",
22400
+ width: 150,
22401
+ render: function render(val) {
22402
+ return val || val === 0 ? Number(val).toFixed(2) : '';
22403
+ }
22404
+ }, {
22405
+ dataIndex: 'type',
22406
+ title: "\u5546\u54C1\u7C7B\u578B",
22407
+ width: 150,
22408
+ render: renderTextEllipsis
22409
+ }, {
22410
+ dataIndex: 'sysPicPath',
22411
+ title: "\u5546\u54C1\u56FE\u7247",
22412
+ width: 100,
22413
+ headerComponentType: 'pic',
22414
+ render: function render(val) {
22415
+ var imgUrl = (val === null || val === void 0 ? void 0 : val.startsWith('http')) ? val : "https://erp.superboss.cc".concat(val);
22416
+ return /*#__PURE__*/React__default['default'].createElement(antd.Image, {
22417
+ width: 30,
22418
+ src: imgUrl
22419
+ });
22420
+ }
22421
+ }].map(function (item) {
22422
+ return _objectSpread2(_objectSpread2({}, item), {}, {
22423
+ align: 'center',
22424
+ ellipsis: true
22425
+ });
21954
22426
  })
21955
22427
  };
21956
22428
  };
21957
22429
 
21958
- var isNumberOrNumberString$2 = function isNumberOrNumberString(value) {
22430
+ var isNumberOrNumberString$3 = function isNumberOrNumberString(value) {
21959
22431
  if (typeof value === 'number') return true;
21960
22432
  if (typeof value === 'string' && !isNaN(Number(value)) && value.trim() !== '') return true;
21961
22433
  return false;
@@ -22093,7 +22565,7 @@ var getColumns$7 = function getColumns(_ref) {
22093
22565
  onChange: function onChange(num) {
22094
22566
  updateDataHandle({
22095
22567
  sellCount: num,
22096
- sellTotal: num && isNumberOrNumberString$2(record.sellPrice) ? num * record.sellPrice : null
22568
+ sellTotal: num && isNumberOrNumberString$3(record.sellPrice) ? num * record.sellPrice : null
22097
22569
  }, index);
22098
22570
  }
22099
22571
  }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
@@ -22113,7 +22585,7 @@ var getColumns$7 = function getColumns(_ref) {
22113
22585
  onChange: function onChange(num) {
22114
22586
  updateDataHandle({
22115
22587
  sellPrice: num,
22116
- sellTotal: num && isNumberOrNumberString$2(record.sellCount) ? num * record.sellCount : null
22588
+ sellTotal: num && isNumberOrNumberString$3(record.sellCount) ? num * record.sellCount : null
22117
22589
  }, index);
22118
22590
  }
22119
22591
  }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
@@ -22316,7 +22788,7 @@ var getColumns$7 = function getColumns(_ref) {
22316
22788
  onChange: function onChange(num) {
22317
22789
  updateDataHandle({
22318
22790
  sellCount: num,
22319
- sellTotal: num && isNumberOrNumberString$2(record.sellPrice) ? num * record.sellPrice : null
22791
+ sellTotal: num && isNumberOrNumberString$3(record.sellPrice) ? num * record.sellPrice : null
22320
22792
  }, index);
22321
22793
  }
22322
22794
  }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
@@ -22336,7 +22808,7 @@ var getColumns$7 = function getColumns(_ref) {
22336
22808
  onChange: function onChange(num) {
22337
22809
  updateDataHandle({
22338
22810
  sellPrice: num,
22339
- sellTotal: num && isNumberOrNumberString$2(record.sellCount) ? num * record.sellCount : null
22811
+ sellTotal: num && isNumberOrNumberString$3(record.sellCount) ? num * record.sellCount : null
22340
22812
  }, index);
22341
22813
  }
22342
22814
  }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
@@ -22448,7 +22920,7 @@ var getColumns$8 = function getColumns(_ref) {
22448
22920
  };
22449
22921
  };
22450
22922
 
22451
- var isNumberOrNumberString$3 = function isNumberOrNumberString(value) {
22923
+ var isNumberOrNumberString$4 = function isNumberOrNumberString(value) {
22452
22924
  if (typeof value === 'number') return true;
22453
22925
  if (typeof value === 'string' && !isNaN(Number(value)) && value.trim() !== '') return true;
22454
22926
  return false;
@@ -22538,7 +23010,7 @@ var getColumns$9 = function getColumns(_ref) {
22538
23010
  onChange: function onChange(num) {
22539
23011
  updateDataHandle({
22540
23012
  sellCount: num,
22541
- sellTotal: num && isNumberOrNumberString$3(record.sellPrice) ? num * record.sellPrice : null
23013
+ sellTotal: num && isNumberOrNumberString$4(record.sellPrice) ? num * record.sellPrice : null
22542
23014
  }, index);
22543
23015
  }
22544
23016
  }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
@@ -22563,7 +23035,7 @@ var getColumns$9 = function getColumns(_ref) {
22563
23035
  onChange: function onChange(num) {
22564
23036
  updateDataHandle({
22565
23037
  sellPrice: num,
22566
- sellTotal: num && isNumberOrNumberString$3(record.sellCount) ? num * record.sellCount : null
23038
+ sellTotal: num && isNumberOrNumberString$4(record.sellCount) ? num * record.sellCount : null
22567
23039
  }, index);
22568
23040
  }
22569
23041
  }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
@@ -22862,7 +23334,7 @@ var getColumns$9 = function getColumns(_ref) {
22862
23334
  onChange: function onChange(num) {
22863
23335
  updateDataHandle({
22864
23336
  sellCount: num,
22865
- sellTotal: num && isNumberOrNumberString$3(record.sellPrice) ? num * record.sellPrice : null
23337
+ sellTotal: num && isNumberOrNumberString$4(record.sellPrice) ? num * record.sellPrice : null
22866
23338
  }, index);
22867
23339
  }
22868
23340
  }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
@@ -22882,7 +23354,7 @@ var getColumns$9 = function getColumns(_ref) {
22882
23354
  onChange: function onChange(num) {
22883
23355
  updateDataHandle({
22884
23356
  sellPrice: num,
22885
- sellTotal: num && isNumberOrNumberString$3(record.sellCount) ? num * record.sellCount : null
23357
+ sellTotal: num && isNumberOrNumberString$4(record.sellCount) ? num * record.sellCount : null
22886
23358
  }, index);
22887
23359
  }
22888
23360
  }) : /*#__PURE__*/React__default['default'].createElement("span", null, val);
@@ -23110,7 +23582,8 @@ var getColumnsMap$1 = function getColumnsMap(args) {
23110
23582
  })), getColumns$6({
23111
23583
  text: text,
23112
23584
  disabled: disabled,
23113
- updateHandle: updateHandle
23585
+ updateHandle: updateHandle,
23586
+ updateDataHandle: updateDataHandle
23114
23587
  })), getColumns$7({
23115
23588
  text: text,
23116
23589
  disabled: disabled,
@@ -23134,7 +23607,7 @@ var getColumnsMap$1 = function getColumnsMap(args) {
23134
23607
  });
23135
23608
  };
23136
23609
  var erpColumnsMap = getColumnsMap$1();
23137
- var erpFormValidator = function erpFormValidator(_rule, value, type) {
23610
+ var erpFormValidator = function erpFormValidator(_rule, value, type, extraParams) {
23138
23611
  var validatorFnList = (erpColumnsMap[type] || erpColumnsMap['default']).map(function (column) {
23139
23612
  return column.validator;
23140
23613
  }).filter(Boolean);
@@ -23144,7 +23617,7 @@ var erpFormValidator = function erpFormValidator(_rule, value, type) {
23144
23617
  try {
23145
23618
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
23146
23619
  var validatorFn = _step.value;
23147
- var validatorResult = validatorFn(_rule, value, type);
23620
+ var validatorResult = validatorFn(_rule, value, extraParams);
23148
23621
  if (validatorResult) {
23149
23622
  res = validatorResult;
23150
23623
  break;
@@ -23269,7 +23742,7 @@ var isErpType = {
23269
23742
  return ['JST_GOODS', 'JST_REISSUE_GOODS', 'JST_RETURN_GOODS', 'JST_EXCHANGE_GOODS'].includes(type);
23270
23743
  },
23271
23744
  isKm: function isKm(type) {
23272
- return ['KM_GOODS', 'KM_REISSUE_GOODS'].includes(type);
23745
+ return ['KM_GOODS', 'KM_REISSUE_GOODS', 'KM_RETURN_GOODS', 'KM_EXCHANGE_GOODS'].includes(type);
23273
23746
  },
23274
23747
  isJy: function isJy(type) {
23275
23748
  return ['JY_GOODS', 'JY_REISSUE_GOODS'].includes(type);
@@ -23534,11 +24007,17 @@ var processKmGoods$1 = function processKmGoods(_ref8) {
23534
24007
  KM_REISSUE_GOODS: {
23535
24008
  realNum: 1,
23536
24009
  desiredNum: 1
24010
+ },
24011
+ KM_RETURN_GOODS: {},
24012
+ KM_EXCHANGE_GOODS: {
24013
+ realNum: 1,
24014
+ desiredNum: 1
23537
24015
  }
23538
24016
  };
23539
24017
  return list.map(function (item) {
23540
24018
  return _objectSpread2(_objectSpread2({}, item), {}, {
23541
24019
  skuPropertiesName: item.specName,
24020
+ sysSkuPropertiesName: item.specId,
23542
24021
  sysTitle: item.goodName,
23543
24022
  title: null,
23544
24023
  shortTitle: item.goodShortName,
@@ -23603,6 +24082,8 @@ var GoodsModalMap = {
23603
24082
  JST_EXCHANGE_GOODS: JstGoodsModal,
23604
24083
  KM_GOODS: KmGoodsModal,
23605
24084
  KM_REISSUE_GOODS: KmGoodsModal,
24085
+ KM_RETURN_GOODS: KmGoodsModal,
24086
+ KM_EXCHANGE_GOODS: KmGoodsModal,
23606
24087
  JY_GOODS: JyGoodsModal$1,
23607
24088
  JY_REISSUE_GOODS: JyGoodsModal$1,
23608
24089
  JKY_GOODS: JkyGoodsModal$1,
@@ -23622,6 +24103,8 @@ var systemOrderNoMap = {
23622
24103
  JKY_GOODS: 'tradeNo',
23623
24104
  JKY_REISSUE_GOODS: 'tradeNo',
23624
24105
  KM_REISSUE_GOODS: 'sid',
24106
+ KM_RETURN_GOODS: 'sid',
24107
+ KM_EXCHANGE_GOODS: 'sid',
23625
24108
  JST_REISSUE_GOODS: 'oId',
23626
24109
  GY_REISSUE_GOODS: 'code',
23627
24110
  BS_E3_REISSUE_GOODS: 'orderSn',
@@ -23647,7 +24130,10 @@ var SelectTradeGoods = function SelectTradeGoods(_ref) {
23647
24130
  type = _ref$type === void 0 ? '' : _ref$type,
23648
24131
  width = _ref.width,
23649
24132
  _ref$isReissueType = _ref.isReissueType,
23650
- isReissueType = _ref$isReissueType === void 0 ? false : _ref$isReissueType;
24133
+ isReissueType = _ref$isReissueType === void 0 ? false : _ref$isReissueType,
24134
+ _ref$isReloadSelectTa = _ref.isReloadSelectTable,
24135
+ isReloadSelectTable = _ref$isReloadSelectTa === void 0 ? false : _ref$isReloadSelectTa,
24136
+ validSystemOrderFn = _ref.validSystemOrderFn;
23651
24137
  var _useState = React.useState(),
23652
24138
  _useState2 = _slicedToArray(_useState, 2),
23653
24139
  selectSystemNo = _useState2[0],
@@ -23692,36 +24178,52 @@ var SelectTradeGoods = function SelectTradeGoods(_ref) {
23692
24178
  }();
23693
24179
  var openModal = /*#__PURE__*/function () {
23694
24180
  var _ref3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
24181
+ var flag;
23695
24182
  return _regeneratorRuntime().wrap(function _callee2$(_context2) {
23696
24183
  while (1) switch (_context2.prev = _context2.next) {
23697
24184
  case 0:
24185
+ if (!validSystemOrderFn) {
24186
+ _context2.next = 7;
24187
+ break;
24188
+ }
24189
+ _context2.next = 3;
24190
+ return validSystemOrderFn();
24191
+ case 3:
24192
+ flag = _context2.sent;
24193
+ if (!(flag === false)) {
24194
+ _context2.next = 7;
24195
+ break;
24196
+ }
24197
+ console.log('validSystemOrderFn校验不通过');
24198
+ return _context2.abrupt("return");
24199
+ case 7:
23698
24200
  if (!validSystemOrder) {
23699
- _context2.next = 3;
24201
+ _context2.next = 10;
23700
24202
  break;
23701
24203
  }
23702
24204
  antd.message.warning('请选择补发系统单');
23703
24205
  return _context2.abrupt("return");
23704
- case 3:
23705
- if (!(getDataSourceAsync && !(dataSource === null || dataSource === void 0 ? void 0 : dataSource.length))) {
23706
- _context2.next = 6;
24206
+ case 10:
24207
+ if (!(getDataSourceAsync && (!(dataSource === null || dataSource === void 0 ? void 0 : dataSource.length) || isReloadSelectTable))) {
24208
+ _context2.next = 13;
23707
24209
  break;
23708
24210
  }
23709
- _context2.next = 6;
24211
+ _context2.next = 13;
23710
24212
  return getDataSourceAsync();
23711
- case 6:
23712
- if (!['KM_GOODS', 'KM_REISSUE_GOODS'].includes(type)) {
23713
- _context2.next = 9;
24213
+ case 13:
24214
+ if (!['KM_GOODS', 'KM_REISSUE_GOODS', 'KM_RETURN_GOODS'].includes(type)) {
24215
+ _context2.next = 16;
23714
24216
  break;
23715
24217
  }
23716
- _context2.next = 9;
24218
+ _context2.next = 16;
23717
24219
  return getKmSupplier(dataSource);
23718
- case 9:
24220
+ case 16:
23719
24221
  setTradeGoodsVisible(true);
23720
24222
  // 补发直接传入的是systemNo
23721
24223
  if (isShowSelect && isReissueType) {
23722
24224
  setSelectSystemNo(selectedSystemOrders || []);
23723
24225
  }
23724
- case 11:
24226
+ case 18:
23725
24227
  case "end":
23726
24228
  return _context2.stop();
23727
24229
  }
@@ -23836,7 +24338,7 @@ var SelectTradeGoods = function SelectTradeGoods(_ref) {
23836
24338
  SelectTradeGoods.displayName = 'SelectTradeGoods';
23837
24339
  var getButtonText = function getButtonText() {
23838
24340
  var type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
23839
- if (['KM_GOODS', 'KM_REISSUE_GOODS'].includes(type)) {
24341
+ if (['KM_GOODS', 'KM_REISSUE_GOODS', 'KM_EXCHANGE_GOODS'].includes(type)) {
23840
24342
  return '选择快麦ERP商品';
23841
24343
  }
23842
24344
  if (['BS_E3_GOODS', 'BS_E3_REISSUE_GOODS', 'BS_E3_EXCHANGE_GOODS'].includes(type)) {
@@ -23907,14 +24409,16 @@ var GoodItem$1 = function GoodItem(props) {
23907
24409
  _props$templateDetail = props.templateDetail,
23908
24410
  templateDetail = _props$templateDetail === void 0 ? {} : _props$templateDetail,
23909
24411
  _props$hasSelectedSys = props.hasSelectedSystemOrder,
23910
- hasSelectedSystemOrder = _props$hasSelectedSys === void 0 ? false : _props$hasSelectedSys;
24412
+ hasSelectedSystemOrder = _props$hasSelectedSys === void 0 ? false : _props$hasSelectedSys,
24413
+ isReloadSelectTable = props.isReloadSelectTable,
24414
+ validSystemOrderFn = props.validSystemOrderFn;
23911
24415
  var canDelete = ['JST_AFTERSALE_GOODS'].includes(type);
23912
24416
  var uniqueKey = (tradeGoods === null || tradeGoods === void 0 ? void 0 : tradeGoods.uniqueKey) || 'uuid';
23913
24417
  // 监听聚水潭退货商品
23914
24418
  var jstReturnGoods = antd.Form === null || antd.Form === void 0 ? void 0 : antd.Form.useWatch('3979edfd6d', form);
23915
24419
  var isShowSelectTradeGoods = type !== 'JST_EXCHANGE_GOODS' || (jstReturnGoods === null || jstReturnGoods === void 0 ? void 0 : jstReturnGoods.jstSystemOrderNo);
23916
24420
  // 判断是否为是否展示系统单筛选项
23917
- var isShowSelect = type && ['WDT_GOODS', 'BS_E3_GOODS', 'GY_GOODS', 'JST_GOODS', 'WLN_GOODS', 'KM_GOODS', 'JY_GOODS', 'JY_REISSUE_GOODS', 'JKY_GOODS', 'JKY_REISSUE_GOODS', 'GY_REISSUE_GOODS', 'KM_REISSUE_GOODS', 'BS_E3_REISSUE_GOODS', 'WDT_REISSUE_GOODS', 'JST_REISSUE_GOODS'].includes(type) || false;
24421
+ var isShowSelect = type && ['WDT_GOODS', 'BS_E3_GOODS', 'GY_GOODS', 'JST_GOODS', 'WLN_GOODS', 'KM_GOODS', 'JY_GOODS', 'JY_REISSUE_GOODS', 'JKY_GOODS', 'JKY_REISSUE_GOODS', 'GY_REISSUE_GOODS', 'KM_REISSUE_GOODS', 'KM_RETURN_GOODS', 'BS_E3_REISSUE_GOODS', 'WDT_REISSUE_GOODS', 'JST_REISSUE_GOODS'].includes(type) || false;
23918
24422
  var isReissueType = type && ['GY_REISSUE_GOODS', 'KM_REISSUE_GOODS', 'BS_E3_REISSUE_GOODS', 'WDT_REISSUE_GOODS', 'JST_REISSUE_GOODS', 'JY_REISSUE_GOODS', 'JKY_REISSUE_GOODS'].includes(type) || false;
23919
24423
  var refModal = React.useRef();
23920
24424
  console.debug('表格数据', value);
@@ -24004,6 +24508,8 @@ var GoodItem$1 = function GoodItem(props) {
24004
24508
  case 'GY_RETURN_GOODS':
24005
24509
  case 'KM_GOODS':
24006
24510
  case 'KM_REISSUE_GOODS':
24511
+ case 'KM_RETURN_GOODS':
24512
+ case 'KM_EXCHANGE_GOODS':
24007
24513
  case 'JY_GOODS':
24008
24514
  case 'JY_REISSUE_GOODS':
24009
24515
  case 'JKY_GOODS':
@@ -24206,6 +24712,8 @@ var GoodItem$1 = function GoodItem(props) {
24206
24712
  checked: isStrict,
24207
24713
  onChange: handleCheckboxChange
24208
24714
  }, "\u5408\u5E76\u5355\uFF0C\u52FE\u9009\u540E\u53EA\u5C55\u793A\u5F53\u524D\u5E73\u53F0\u8BA2\u5355\u5546\u54C1"), !lodash.isEmpty(tradeGoods) && isShowSelectTradeGoods && /*#__PURE__*/React__default['default'].createElement(SelectTradeGoods, {
24715
+ isReloadSelectTable: isReloadSelectTable,
24716
+ validSystemOrderFn: validSystemOrderFn,
24209
24717
  validSystemOrder: validSystemOrder,
24210
24718
  isShowSelect: isShowSelect,
24211
24719
  uniqueKey: uniqueKey,
@@ -24936,7 +25444,8 @@ var getWdtOrderListSingleton = function getWdtOrderListSingleton(orderNo) {
24936
25444
  billNo: item.tradeNo,
24937
25445
  billType: kmkfUtils.WDT_ORDER_TYPE_MAP[item.tradeType],
24938
25446
  billTag: item.tagName || item.tags,
24939
- tradeStatusValue: kmkfUtils.tradeStatusMap === null || kmkfUtils.tradeStatusMap === void 0 ? void 0 : (_tradeStatusMap$data$ = kmkfUtils.tradeStatusMap[data.data.version]) === null || _tradeStatusMap$data$ === void 0 ? void 0 : _tradeStatusMap$data$[item.tradeStatus]
25447
+ tradeStatusValue: kmkfUtils.tradeStatusMap === null || kmkfUtils.tradeStatusMap === void 0 ? void 0 : (_tradeStatusMap$data$ = kmkfUtils.tradeStatusMap[data.data.version]) === null || _tradeStatusMap$data$ === void 0 ? void 0 : _tradeStatusMap$data$[item.tradeStatus],
25448
+ logisticsName: kmkfUtils.ExpressData.getInstance('wdt').getExpressNameByCode(item === null || item === void 0 ? void 0 : item.logisticsCode, false) || (item === null || item === void 0 ? void 0 : item.logisticsName)
24940
25449
  });
24941
25450
  });
24942
25451
  }
@@ -27494,6 +28003,55 @@ var componentMap$4 = {
27494
28003
  returnGoodsSysorder: 'jstReturnGoodsSysorder',
27495
28004
  returnGoodsSysorderBack: 'jstReturnGoodsSysorderBack'
27496
28005
  }
28006
+ },
28007
+ KM_EXCHANGE_GOODS: {
28008
+ type: 'km',
28009
+ showChooseTradeGoodsBtn: true,
28010
+ valueKey: 'kmExchangeGoods',
28011
+ returnTypeKey: 'kmExchangeType',
28012
+ systemOrder: 'kmSystemOrder',
28013
+ systemOrderNo: 'kmSystemOrderNo',
28014
+ oIdKey: 'billNo',
28015
+ goodDetailsKey: 'subOrders',
28016
+ skuIdKey: 'skuId',
28017
+ outerOiIdKey: '',
28018
+ name: '快麦',
28019
+ updateGoodsHandle: kmkfUtils.updateKmGoodsHandle,
28020
+ isReloadSelectTable: true,
28021
+ validSystemOrderFn: function () {
28022
+ var _validSystemOrderFn = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(form) {
28023
+ var returnGoodsValue;
28024
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
28025
+ while (1) switch (_context.prev = _context.next) {
28026
+ case 0:
28027
+ _context.next = 2;
28028
+ return form.getFieldValue('KM3F7B91C2');
28029
+ case 2:
28030
+ returnGoodsValue = _context.sent;
28031
+ if (returnGoodsValue.kmSystemOrderNo) {
28032
+ _context.next = 6;
28033
+ break;
28034
+ }
28035
+ antd.message.error('请选择退货系统单');
28036
+ return _context.abrupt("return", false);
28037
+ case 6:
28038
+ case "end":
28039
+ return _context.stop();
28040
+ }
28041
+ }, _callee);
28042
+ }));
28043
+ function validSystemOrderFn(_x) {
28044
+ return _validSystemOrderFn.apply(this, arguments);
28045
+ }
28046
+ return validSystemOrderFn;
28047
+ }(),
28048
+ eventNameMap: {
28049
+ // pubsub 事件
28050
+ exchangeCopyGood: 'kmExchangeCopyGood',
28051
+ exchangeBackCopyGood: 'kmExchangeBackCopyGood',
28052
+ returnGoodsSysorder: 'kmReturnGoodsSysorder',
28053
+ returnGoodsSysorderBack: 'kmReturnGoodsSysorderBack'
28054
+ }
27497
28055
  }
27498
28056
  };
27499
28057
  var CommonExchangeGoods = function CommonExchangeGoods(props) {
@@ -27501,7 +28059,8 @@ var CommonExchangeGoods = function CommonExchangeGoods(props) {
27501
28059
  var value = props.value,
27502
28060
  onChange = props.onChange,
27503
28061
  disabled = props.disabled,
27504
- compType = props.type;
28062
+ compType = props.type,
28063
+ form = props.form;
27505
28064
  var uniqueKey = (componentMap$4 === null || componentMap$4 === void 0 ? void 0 : (_componentMap$compTyp = componentMap$4[compType]) === null || _componentMap$compTyp === void 0 ? void 0 : _componentMap$compTyp.skuIdKey) || 'uuid';
27506
28065
  var valueRef = React.useRef({});
27507
28066
  // PS: 目前选择订单商品,只有聚水潭换出商品,而且聚水潭不用考虑合并单,所以这个值一直是 false
@@ -27594,6 +28153,10 @@ var CommonExchangeGoods = function CommonExchangeGoods(props) {
27594
28153
  return new Promise(function (resolve) {
27595
28154
  pubsub__default['default'].subscribeOnce(componentMap$4[compType].eventNameMap.returnGoodsSysorderBack, function (_, data) {
27596
28155
  resolve(data);
28156
+ console.log('getDataSourceAsync---111data--', data, getGoodDetails({
28157
+ returnGoodsValue: data,
28158
+ mode: isStrict
28159
+ }));
27597
28160
  setOriginDataSource(getGoodDetails({
27598
28161
  returnGoodsValue: data,
27599
28162
  mode: isStrict
@@ -27602,9 +28165,14 @@ var CommonExchangeGoods = function CommonExchangeGoods(props) {
27602
28165
  pubsub__default['default'].publish(componentMap$4[compType].eventNameMap.returnGoodsSysorder, compType);
27603
28166
  });
27604
28167
  };
28168
+ console.log('aaa--', originDataSource);
27605
28169
  return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(GoodItem$1, _objectSpread2(_objectSpread2({
27606
28170
  key: componentMap$4[compType].type
27607
28171
  }, props), {}, {
28172
+ validSystemOrderFn: function validSystemOrderFn() {
28173
+ return componentMap$4[compType].validSystemOrderFn(form);
28174
+ },
28175
+ isReloadSelectTable: componentMap$4[compType].isReloadSelectTable,
27608
28176
  disabled: disabled,
27609
28177
  canUpdateNumber: true,
27610
28178
  showChangeBtn: true,
@@ -27780,7 +28348,8 @@ var wdtReissue = function wdtReissue(props) {
27780
28348
  var newValue = _objectSpread2({}, value);
27781
28349
  // 原订单商品
27782
28350
  var originTradeGoodList = getGoodDetails({
27783
- mode: isStrict
28351
+ mode: isStrict,
28352
+ isAllOrders: true
27784
28353
  }) || [];
27785
28354
  // 当前选中的所有商品【包含了原订单+商品库】
27786
28355
  var currentSelectGoodList = (value === null || value === void 0 ? void 0 : value["".concat(typeMap$1 === null || typeMap$1 === void 0 ? void 0 : (_typeMap$type22 = typeMap$1[type]) === null || _typeMap$type22 === void 0 ? void 0 : _typeMap$type22.key)]) || [];
@@ -27938,6 +28507,30 @@ var typeMap$2 = {
27938
28507
  uniqueKey: 'id',
27939
28508
  isShowSelectTradeGoods: true
27940
28509
  },
28510
+ KM_RETURN_GOODS: {
28511
+ compType: '退货',
28512
+ key: 'kmReturnGoods',
28513
+ typeName: 'kmReturnType',
28514
+ systemOrder: 'kmSystemOrder',
28515
+ systemOrderNo: 'kmSystemOrderNo',
28516
+ getOrderList: kmUtils.getOrderListSingleton,
28517
+ updateGoodsHandle: kmkfUtils.updateKmGoodsHandle,
28518
+ alwaysShowChooseErpGoodsBtn: true,
28519
+ orderTypeKey: 'orderType',
28520
+ oIdKey: 'billNo',
28521
+ outerOiIdKey: '',
28522
+ goodDetailsKey: 'subOrders',
28523
+ uniqueKey: 'id',
28524
+ isShowSelectTradeGoods: true,
28525
+ showErpGoodsBtn: false,
28526
+ eventNameMap: {
28527
+ // pubsub 事件
28528
+ exchangeCopyGood: 'kmExchangeCopyGood',
28529
+ exchangeBackCopyGood: 'kmExchangeBackCopyGood',
28530
+ returnGoodsSysorder: 'kmReturnGoodsSysorder',
28531
+ returnGoodsSysorderBack: 'kmReturnGoodsSysorderBack'
28532
+ }
28533
+ },
27941
28534
  JY_REISSUE_GOODS: {
27942
28535
  compType: '补发',
27943
28536
  key: 'jyReissueGoods',
@@ -27971,7 +28564,7 @@ var typeMap$2 = {
27971
28564
  }
27972
28565
  };
27973
28566
  var PublicReissue = function PublicReissue(props) {
27974
- var _typeMap$type35, _typeMap$type41, _typeMap$type42, _typeMap$type43, _typeMap$type44, _value$typeMap$type$s8, _typeMap$type45, _typeMap$type46, _typeMap$type47, _typeMap$type48, _typeMap$type49, _typeMap$type50, _typeMap$type51, _typeMap$type52, _value$typeMap$type$s9, _typeMap$type53, _typeMap$type54, _typeMap$type55, _typeMap$type56;
28567
+ var _typeMap$type18, _typeMap$type36, _typeMap$type42, _typeMap$type43, _typeMap$type44, _typeMap$type45, _value$typeMap$type$s8, _typeMap$type46, _typeMap$type47, _typeMap$type48, _typeMap$type49, _typeMap$type50, _typeMap$type51, _typeMap$type52, _typeMap$type53, _typeMap$type54, _value$typeMap$type$s9, _typeMap$type55, _typeMap$type56, _typeMap$type57, _typeMap$type58;
27975
28568
  var value = props.value,
27976
28569
  onChange = props.onChange,
27977
28570
  _props$reasonList = props.reasonList,
@@ -28089,24 +28682,25 @@ var PublicReissue = function PublicReissue(props) {
28089
28682
  };
28090
28683
  var sysItemIdMap = React.useMemo(function () {
28091
28684
  var map = {};
28092
- if (type === 'KM_REISSUE_GOODS') {
28093
- var _value$kmReissueGoods, _value$kmReissueGoods2;
28094
- value === null || value === void 0 ? void 0 : (_value$kmReissueGoods = value.kmReissueGoods) === null || _value$kmReissueGoods === void 0 ? void 0 : (_value$kmReissueGoods2 = _value$kmReissueGoods.filter(function (item) {
28685
+ if (['KM_REISSUE_GOODS', 'KM_RETURN_GOODS'].includes(type)) {
28686
+ var _value$goodsKey, _value$goodsKey$filte;
28687
+ var goodsKey = typeMap$2[type].key;
28688
+ value === null || value === void 0 ? void 0 : (_value$goodsKey = value[goodsKey]) === null || _value$goodsKey === void 0 ? void 0 : (_value$goodsKey$filte = _value$goodsKey.filter(function (item) {
28095
28689
  return item === null || item === void 0 ? void 0 : item.sysItemId;
28096
- })) === null || _value$kmReissueGoods2 === void 0 ? void 0 : _value$kmReissueGoods2.forEach(function (item) {
28690
+ })) === null || _value$goodsKey$filte === void 0 ? void 0 : _value$goodsKey$filte.forEach(function (item) {
28097
28691
  var key = !(item === null || item === void 0 ? void 0 : item.sysSkuId) || (item === null || item === void 0 ? void 0 : item.sysSkuId) == '-1' || (item === null || item === void 0 ? void 0 : item.sysSkuId) == (item === null || item === void 0 ? void 0 : item.sysItemId) ? item === null || item === void 0 ? void 0 : item.sysItemId : "".concat(item === null || item === void 0 ? void 0 : item.sysItemId, "-").concat(item === null || item === void 0 ? void 0 : item.sysSkuId);
28098
28692
  map[key] = item;
28099
28693
  });
28100
28694
  }
28101
28695
  return map;
28102
- }, [value === null || value === void 0 ? void 0 : value.kmReissueGoods]);
28696
+ }, [value === null || value === void 0 ? void 0 : value[(_typeMap$type18 = typeMap$2[type]) === null || _typeMap$type18 === void 0 ? void 0 : _typeMap$type18.key]]);
28103
28697
  // 用于跟踪已经处理过的 sysItemId,避免重复处理
28104
28698
  var processedSysItemIdsRef = React.useRef(new Set());
28105
28699
  React.useEffect(function () {
28106
28700
  var fetchSupplier = /*#__PURE__*/function () {
28107
28701
  var _ref4 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(sysItemIds) {
28108
- var _currentValue$kmReiss;
28109
- var needFetchIds, supplierMap, hasChange, currentValue, kmReissueGoods;
28702
+ var _currentValue$goodsKe;
28703
+ var needFetchIds, supplierMap, hasChange, currentValue, goodsKey, kmGoods;
28110
28704
  return _regeneratorRuntime().wrap(function _callee2$(_context2) {
28111
28705
  while (1) switch (_context2.prev = _context2.next) {
28112
28706
  case 0:
@@ -28134,7 +28728,8 @@ var PublicReissue = function PublicReissue(props) {
28134
28728
  // 检查是否有实际变化,避免不必要的更新
28135
28729
  hasChange = false;
28136
28730
  currentValue = valueRef.current;
28137
- kmReissueGoods = currentValue === null || currentValue === void 0 ? void 0 : (_currentValue$kmReiss = currentValue.kmReissueGoods) === null || _currentValue$kmReiss === void 0 ? void 0 : _currentValue$kmReiss.map(function (item) {
28731
+ goodsKey = typeMap$2[type].key;
28732
+ kmGoods = currentValue === null || currentValue === void 0 ? void 0 : (_currentValue$goodsKe = currentValue[goodsKey]) === null || _currentValue$goodsKe === void 0 ? void 0 : _currentValue$goodsKe.map(function (item) {
28138
28733
  var key = !(item === null || item === void 0 ? void 0 : item.sysSkuId) || (item === null || item === void 0 ? void 0 : item.sysSkuId) == '-1' || (item === null || item === void 0 ? void 0 : item.sysSkuId) == (item === null || item === void 0 ? void 0 : item.sysItemId) ? item === null || item === void 0 ? void 0 : item.sysItemId : "".concat(item === null || item === void 0 ? void 0 : item.sysItemId, "-").concat(item === null || item === void 0 ? void 0 : item.sysSkuId);
28139
28734
  var supplierInfo = supplierMap.get(key);
28140
28735
  var newSupplierCode = supplierInfo === null || supplierInfo === void 0 ? void 0 : supplierInfo.supplierCode;
@@ -28151,12 +28746,10 @@ var PublicReissue = function PublicReissue(props) {
28151
28746
  }
28152
28747
  return item;
28153
28748
  }); // 只在有实际变化时才更新
28154
- if (hasChange && kmReissueGoods) {
28155
- onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2(_objectSpread2({}, currentValue), {}, {
28156
- kmReissueGoods: kmReissueGoods
28157
- }));
28749
+ if (hasChange && kmGoods) {
28750
+ onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2(_objectSpread2({}, currentValue), {}, _defineProperty({}, goodsKey, kmGoods)));
28158
28751
  }
28159
- case 12:
28752
+ case 13:
28160
28753
  case "end":
28161
28754
  return _context2.stop();
28162
28755
  }
@@ -28172,20 +28765,20 @@ var PublicReissue = function PublicReissue(props) {
28172
28765
  }
28173
28766
  }, [sysItemIdMap]);
28174
28767
  var getGoodDetails = function getGoodDetails(_ref5) {
28175
- var _typeMap$type18, _typeMap$type19, _value$typeMap$type$s6, _typeMap$type20, _typeMap$type21, _typeMap$type22, _typeMap$type23;
28768
+ var _typeMap$type19, _typeMap$type20, _value$typeMap$type$s6, _typeMap$type21, _typeMap$type22, _typeMap$type23, _typeMap$type24;
28176
28769
  var mode = _ref5.mode,
28177
28770
  sysOrderNo = _ref5.sysOrderNo,
28178
28771
  _ref5$isAllOrders = _ref5.isAllOrders,
28179
28772
  isAllOrders = _ref5$isAllOrders === void 0 ? false : _ref5$isAllOrders;
28180
- var systemOrder = value === null || value === void 0 ? void 0 : value[(_typeMap$type18 = typeMap$2[type]) === null || _typeMap$type18 === void 0 ? void 0 : _typeMap$type18.systemOrder];
28181
- var systemOrderNo = sysOrderNo !== null && sysOrderNo !== void 0 ? sysOrderNo : value === null || value === void 0 ? void 0 : value[(_typeMap$type19 = typeMap$2[type]) === null || _typeMap$type19 === void 0 ? void 0 : _typeMap$type19.systemOrderNo];
28773
+ var systemOrder = value === null || value === void 0 ? void 0 : value[(_typeMap$type19 = typeMap$2[type]) === null || _typeMap$type19 === void 0 ? void 0 : _typeMap$type19.systemOrder];
28774
+ var systemOrderNo = sysOrderNo !== null && sysOrderNo !== void 0 ? sysOrderNo : value === null || value === void 0 ? void 0 : value[(_typeMap$type20 = typeMap$2[type]) === null || _typeMap$type20 === void 0 ? void 0 : _typeMap$type20.systemOrderNo];
28182
28775
  var order = systemOrderNo && ((systemOrder === null || systemOrder === void 0 ? void 0 : systemOrder.orders) || []).find(function (order) {
28183
28776
  return order[typeMap$2[type].oIdKey] === systemOrderNo;
28184
28777
  });
28185
28778
  var orderRest = undefined;
28186
28779
  if (['JST_REISSUE_GOODS', 'JST_RETURN_GOODS'].includes(type)) {
28187
28780
  orderRest = true;
28188
- } else if (type === 'KM_REISSUE_GOODS') {
28781
+ } else if (['KM_REISSUE_GOODS', 'KM_RETURN_GOODS'].includes(type)) {
28189
28782
  orderRest = {
28190
28783
  orderBackGoodsLevel: props.orderBackGoodsLevel,
28191
28784
  canEdit: true
@@ -28199,12 +28792,12 @@ var PublicReissue = function PublicReissue(props) {
28199
28792
  canEdit: true
28200
28793
  };
28201
28794
  }
28202
- var orders = isAllOrders ? (value === null || value === void 0 ? void 0 : (_value$typeMap$type$s6 = value[(_typeMap$type20 = typeMap$2[type]) === null || _typeMap$type20 === void 0 ? void 0 : _typeMap$type20.systemOrder]) === null || _value$typeMap$type$s6 === void 0 ? void 0 : _value$typeMap$type$s6.orders) || [] : order ? [order] : [];
28795
+ var orders = isAllOrders ? (value === null || value === void 0 ? void 0 : (_value$typeMap$type$s6 = value[(_typeMap$type21 = typeMap$2[type]) === null || _typeMap$type21 === void 0 ? void 0 : _typeMap$type21.systemOrder]) === null || _value$typeMap$type$s6 === void 0 ? void 0 : _value$typeMap$type$s6.orders) || [] : order ? [order] : [];
28203
28796
  var hasGoodDetails = orders === null || orders === void 0 ? void 0 : orders.some(function (order) {
28204
28797
  var _order$typeMap$type$g;
28205
28798
  return order === null || order === void 0 ? void 0 : (_order$typeMap$type$g = order[typeMap$2[type].goodDetailsKey]) === null || _order$typeMap$type$g === void 0 ? void 0 : _order$typeMap$type$g.length;
28206
28799
  });
28207
- var goodDetails = hasGoodDetails ? (!isAllOrders || ((_typeMap$type21 = typeMap$2[type]) === null || _typeMap$type21 === void 0 ? void 0 : _typeMap$type21.isSelectTradeGoodsMerge)) && typeMap$2[type].mergeIdenticalGoods ? typeMap$2[type].mergeIdenticalGoods((_typeMap$type22 = typeMap$2[type]) === null || _typeMap$type22 === void 0 ? void 0 : _typeMap$type22.updateGoodsHandle(orders, orderRest)) : (_typeMap$type23 = typeMap$2[type]) === null || _typeMap$type23 === void 0 ? void 0 : _typeMap$type23.updateGoodsHandle(orders, orderRest) : [];
28800
+ var goodDetails = hasGoodDetails ? (!isAllOrders || ((_typeMap$type22 = typeMap$2[type]) === null || _typeMap$type22 === void 0 ? void 0 : _typeMap$type22.isSelectTradeGoodsMerge)) && typeMap$2[type].mergeIdenticalGoods ? typeMap$2[type].mergeIdenticalGoods((_typeMap$type23 = typeMap$2[type]) === null || _typeMap$type23 === void 0 ? void 0 : _typeMap$type23.updateGoodsHandle(orders, orderRest, type)) : (_typeMap$type24 = typeMap$2[type]) === null || _typeMap$type24 === void 0 ? void 0 : _typeMap$type24.updateGoodsHandle(orders, orderRest, type) : [];
28208
28801
  var orderNo = systemOrder === null || systemOrder === void 0 ? void 0 : systemOrder.orderNo;
28209
28802
  var list = mode && !isAllOrders ? goodDetails.filter(function (goodItem) {
28210
28803
  return !orderNo || goodItem[typeMap$2[type].outerOiIdKey] === orderNo;
@@ -28212,30 +28805,30 @@ var PublicReissue = function PublicReissue(props) {
28212
28805
  return list;
28213
28806
  };
28214
28807
  var changeGoodHandle = function changeGoodHandle(val) {
28215
- var _typeMap$type24;
28808
+ var _typeMap$type25;
28216
28809
  var newValue = _objectSpread2({}, value);
28217
- newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type24 = typeMap$2[type]) === null || _typeMap$type24 === void 0 ? void 0 : _typeMap$type24.key)] = val || [];
28810
+ newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type25 = typeMap$2[type]) === null || _typeMap$type25 === void 0 ? void 0 : _typeMap$type25.key)] = val || [];
28218
28811
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
28219
28812
  };
28220
28813
  var changeSystemOrderHandle = function changeSystemOrderHandle(val) {
28221
- var _typeMap$type25, _typeMap$type26, _value$typeMap$type$t2, _typeMap$type31, _value$typeMap$type$t3, _typeMap$type33;
28814
+ var _typeMap$type26, _typeMap$type27, _value$typeMap$type$t2, _typeMap$type32, _value$typeMap$type$t3, _typeMap$type34;
28222
28815
  var newValue = _objectSpread2({}, value);
28223
- newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type25 = typeMap$2[type]) === null || _typeMap$type25 === void 0 ? void 0 : _typeMap$type25.systemOrderNo)] = val;
28224
- if (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type26 = typeMap$2[type]) === null || _typeMap$type26 === void 0 ? void 0 : _typeMap$type26.systemOrderBillType) {
28225
- var _value$typeMap$type$s7, _typeMap$type27, _typeMap$type29, _typeMap$type30;
28226
- var orders = (value === null || value === void 0 ? void 0 : (_value$typeMap$type$s7 = value[(_typeMap$type27 = typeMap$2[type]) === null || _typeMap$type27 === void 0 ? void 0 : _typeMap$type27.systemOrder]) === null || _value$typeMap$type$s7 === void 0 ? void 0 : _value$typeMap$type$s7.orders) || [];
28816
+ newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type26 = typeMap$2[type]) === null || _typeMap$type26 === void 0 ? void 0 : _typeMap$type26.systemOrderNo)] = val;
28817
+ if (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type27 = typeMap$2[type]) === null || _typeMap$type27 === void 0 ? void 0 : _typeMap$type27.systemOrderBillType) {
28818
+ var _value$typeMap$type$s7, _typeMap$type28, _typeMap$type30, _typeMap$type31;
28819
+ var orders = (value === null || value === void 0 ? void 0 : (_value$typeMap$type$s7 = value[(_typeMap$type28 = typeMap$2[type]) === null || _typeMap$type28 === void 0 ? void 0 : _typeMap$type28.systemOrder]) === null || _value$typeMap$type$s7 === void 0 ? void 0 : _value$typeMap$type$s7.orders) || [];
28227
28820
  var targetOrder = val && orders.find(function (oItem) {
28228
- var _typeMap$type28;
28229
- return oItem[(_typeMap$type28 = typeMap$2[type]) === null || _typeMap$type28 === void 0 ? void 0 : _typeMap$type28.oIdKey] === val;
28821
+ var _typeMap$type29;
28822
+ return oItem[(_typeMap$type29 = typeMap$2[type]) === null || _typeMap$type29 === void 0 ? void 0 : _typeMap$type29.oIdKey] === val;
28230
28823
  });
28231
- newValue[(_typeMap$type29 = typeMap$2[type]) === null || _typeMap$type29 === void 0 ? void 0 : _typeMap$type29.systemOrderBillType] = targetOrder === null || targetOrder === void 0 ? void 0 : targetOrder[(_typeMap$type30 = typeMap$2[type]) === null || _typeMap$type30 === void 0 ? void 0 : _typeMap$type30.orderTypeKey];
28232
- }
28233
- if (['2'].includes(value === null || value === void 0 ? void 0 : (_value$typeMap$type$t2 = value[(_typeMap$type31 = typeMap$2[type]) === null || _typeMap$type31 === void 0 ? void 0 : _typeMap$type31.typeName]) === null || _value$typeMap$type$t2 === void 0 ? void 0 : _value$typeMap$type$t2[0])) {
28234
- var _typeMap$type32;
28235
- newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type32 = typeMap$2[type]) === null || _typeMap$type32 === void 0 ? void 0 : _typeMap$type32.key)] = [];
28236
- } else if (['1'].includes(value === null || value === void 0 ? void 0 : (_value$typeMap$type$t3 = value[(_typeMap$type33 = typeMap$2[type]) === null || _typeMap$type33 === void 0 ? void 0 : _typeMap$type33.typeName]) === null || _value$typeMap$type$t3 === void 0 ? void 0 : _value$typeMap$type$t3[0])) {
28237
- var _typeMap$type34;
28238
- newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type34 = typeMap$2[type]) === null || _typeMap$type34 === void 0 ? void 0 : _typeMap$type34.key)] = getGoodDetails({
28824
+ newValue[(_typeMap$type30 = typeMap$2[type]) === null || _typeMap$type30 === void 0 ? void 0 : _typeMap$type30.systemOrderBillType] = targetOrder === null || targetOrder === void 0 ? void 0 : targetOrder[(_typeMap$type31 = typeMap$2[type]) === null || _typeMap$type31 === void 0 ? void 0 : _typeMap$type31.orderTypeKey];
28825
+ }
28826
+ if (['2'].includes(value === null || value === void 0 ? void 0 : (_value$typeMap$type$t2 = value[(_typeMap$type32 = typeMap$2[type]) === null || _typeMap$type32 === void 0 ? void 0 : _typeMap$type32.typeName]) === null || _value$typeMap$type$t2 === void 0 ? void 0 : _value$typeMap$type$t2[0])) {
28827
+ var _typeMap$type33;
28828
+ newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type33 = typeMap$2[type]) === null || _typeMap$type33 === void 0 ? void 0 : _typeMap$type33.key)] = [];
28829
+ } else if (['1'].includes(value === null || value === void 0 ? void 0 : (_value$typeMap$type$t3 = value[(_typeMap$type34 = typeMap$2[type]) === null || _typeMap$type34 === void 0 ? void 0 : _typeMap$type34.typeName]) === null || _value$typeMap$type$t3 === void 0 ? void 0 : _value$typeMap$type$t3[0])) {
28830
+ var _typeMap$type35;
28831
+ newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type35 = typeMap$2[type]) === null || _typeMap$type35 === void 0 ? void 0 : _typeMap$type35.key)] = getGoodDetails({
28239
28832
  mode: isStrict,
28240
28833
  sysOrderNo: val
28241
28834
  });
@@ -28243,27 +28836,27 @@ var PublicReissue = function PublicReissue(props) {
28243
28836
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue, 'systemOrder');
28244
28837
  };
28245
28838
  //显示选择商品按钮
28246
- var showChangeBtn = !!(value === null || value === void 0 ? void 0 : value[(_typeMap$type35 = typeMap$2[type]) === null || _typeMap$type35 === void 0 ? void 0 : _typeMap$type35.systemOrderNo]);
28839
+ var showChangeBtn = !!(value === null || value === void 0 ? void 0 : value[(_typeMap$type36 = typeMap$2[type]) === null || _typeMap$type36 === void 0 ? void 0 : _typeMap$type36.systemOrderNo]);
28247
28840
  var selectedGoodsChange = React.useCallback(function (skuList) {
28248
- var _typeMap$type36, _typeMap$type37, _typeMap$type38, _uniqBy, _typeMap$type39;
28841
+ var _typeMap$type37, _typeMap$type38, _typeMap$type39, _uniqBy, _typeMap$type40;
28249
28842
  var newValue = _objectSpread2({}, value);
28250
28843
  // 原订单商品
28251
28844
  var originTradeGoodList = getGoodDetails({
28252
28845
  mode: isStrict,
28253
- isAllOrders: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type36 = typeMap$2[type]) === null || _typeMap$type36 === void 0 ? void 0 : _typeMap$type36.isShowSelectTradeGoods
28846
+ isAllOrders: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type37 = typeMap$2[type]) === null || _typeMap$type37 === void 0 ? void 0 : _typeMap$type37.isShowSelectTradeGoods
28254
28847
  }) || [];
28255
28848
  // 当前选中的所有商品【包含了原订单+商品库】
28256
- var currentSelectGoodList = (value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type37 = typeMap$2[type]) === null || _typeMap$type37 === void 0 ? void 0 : _typeMap$type37.key)]) || [];
28257
- newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type38 = typeMap$2[type]) === null || _typeMap$type38 === void 0 ? void 0 : _typeMap$type38.key)] = (_uniqBy = lodash.uniqBy(originTradeGoodList.concat(currentSelectGoodList), (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type39 = typeMap$2[type]) === null || _typeMap$type39 === void 0 ? void 0 : _typeMap$type39.uniqueKey) || 'uuid')) === null || _uniqBy === void 0 ? void 0 : _uniqBy.filter(function (item) {
28258
- var _typeMap$type40;
28259
- return skuList.includes(item[(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type40 = typeMap$2[type]) === null || _typeMap$type40 === void 0 ? void 0 : _typeMap$type40.uniqueKey) || 'uuid']);
28849
+ var currentSelectGoodList = (value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type38 = typeMap$2[type]) === null || _typeMap$type38 === void 0 ? void 0 : _typeMap$type38.key)]) || [];
28850
+ newValue["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type39 = typeMap$2[type]) === null || _typeMap$type39 === void 0 ? void 0 : _typeMap$type39.key)] = (_uniqBy = lodash.uniqBy(originTradeGoodList.concat(currentSelectGoodList), (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type40 = typeMap$2[type]) === null || _typeMap$type40 === void 0 ? void 0 : _typeMap$type40.uniqueKey) || 'uuid')) === null || _uniqBy === void 0 ? void 0 : _uniqBy.filter(function (item) {
28851
+ var _typeMap$type41;
28852
+ return skuList.includes(item[(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type41 = typeMap$2[type]) === null || _typeMap$type41 === void 0 ? void 0 : _typeMap$type41.uniqueKey) || 'uuid']);
28260
28853
  });
28261
28854
  onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
28262
- }, [value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type41 = typeMap$2[type]) === null || _typeMap$type41 === void 0 ? void 0 : _typeMap$type41.key)], isStrict]);
28855
+ }, [value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type42 = typeMap$2[type]) === null || _typeMap$type42 === void 0 ? void 0 : _typeMap$type42.key)], isStrict]);
28263
28856
  return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement(antd.Row, {
28264
28857
  gutter: 8,
28265
28858
  wrap: true,
28266
- id: (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type42 = typeMap$2[type]) === null || _typeMap$type42 === void 0 ? void 0 : _typeMap$type42.key) || "".concat(Date.now())
28859
+ id: (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type43 = typeMap$2[type]) === null || _typeMap$type43 === void 0 ? void 0 : _typeMap$type43.key) || "".concat(Date.now())
28267
28860
  }, /*#__PURE__*/React__default['default'].createElement(antd.Col, {
28268
28861
  className: "gutter-row",
28269
28862
  xs: {
@@ -28279,12 +28872,12 @@ var PublicReissue = function PublicReissue(props) {
28279
28872
  },
28280
28873
  disabled: disabled,
28281
28874
  allowClear: false,
28282
- value: value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type43 = typeMap$2[type]) === null || _typeMap$type43 === void 0 ? void 0 : _typeMap$type43.systemOrderNo)],
28875
+ value: value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type44 = typeMap$2[type]) === null || _typeMap$type44 === void 0 ? void 0 : _typeMap$type44.systemOrderNo)],
28283
28876
  onChange: function onChange(val) {
28284
28877
  return changeSystemOrderHandle(val);
28285
28878
  },
28286
- placeholder: "\u9009\u62E9".concat((typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type44 = typeMap$2[type]) === null || _typeMap$type44 === void 0 ? void 0 : _typeMap$type44.compType) || '', "\u7CFB\u7EDF\u5355")
28287
- }, ((value === null || value === void 0 ? void 0 : (_value$typeMap$type$s8 = value[(_typeMap$type45 = typeMap$2[type]) === null || _typeMap$type45 === void 0 ? void 0 : _typeMap$type45.systemOrder]) === null || _value$typeMap$type$s8 === void 0 ? void 0 : _value$typeMap$type$s8.showOrderInfo) || []).map(function (item) {
28879
+ placeholder: "\u9009\u62E9".concat((typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type45 = typeMap$2[type]) === null || _typeMap$type45 === void 0 ? void 0 : _typeMap$type45.compType) || '', "\u7CFB\u7EDF\u5355")
28880
+ }, ((value === null || value === void 0 ? void 0 : (_value$typeMap$type$s8 = value[(_typeMap$type46 = typeMap$2[type]) === null || _typeMap$type46 === void 0 ? void 0 : _typeMap$type46.systemOrder]) === null || _value$typeMap$type$s8 === void 0 ? void 0 : _value$typeMap$type$s8.showOrderInfo) || []).map(function (item) {
28288
28881
  return /*#__PURE__*/React__default['default'].createElement(antd.Select.Option, {
28289
28882
  key: item[typeMap$2[type].oIdKey],
28290
28883
  value: item[typeMap$2[type].oIdKey],
@@ -28306,11 +28899,11 @@ var PublicReissue = function PublicReissue(props) {
28306
28899
  disabled: isSettingConfig ? !isSettingConfig : disabled,
28307
28900
  allowClear: false,
28308
28901
  options: reasonList,
28309
- value: value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type46 = typeMap$2[type]) === null || _typeMap$type46 === void 0 ? void 0 : _typeMap$type46.typeName)],
28902
+ value: value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type47 = typeMap$2[type]) === null || _typeMap$type47 === void 0 ? void 0 : _typeMap$type47.typeName)],
28310
28903
  onChange: function onChange(val) {
28311
28904
  return changeTypeHandle(val);
28312
28905
  }
28313
- })), (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type47 = typeMap$2[type]) === null || _typeMap$type47 === void 0 ? void 0 : _typeMap$type47.systemOrderBillType) && !isSettingConfig && /*#__PURE__*/React__default['default'].createElement(antd.Col, {
28906
+ })), (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type48 = typeMap$2[type]) === null || _typeMap$type48 === void 0 ? void 0 : _typeMap$type48.systemOrderBillType) && !isSettingConfig && /*#__PURE__*/React__default['default'].createElement(antd.Col, {
28314
28907
  className: "gutter-row",
28315
28908
  xs: {
28316
28909
  span: 11
@@ -28319,7 +28912,7 @@ var PublicReissue = function PublicReissue(props) {
28319
28912
  span: 6
28320
28913
  }
28321
28914
  }, /*#__PURE__*/React__default['default'].createElement(antd.Input, {
28322
- value: value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type48 = typeMap$2[type]) === null || _typeMap$type48 === void 0 ? void 0 : _typeMap$type48.systemOrderBillType)],
28915
+ value: value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type49 = typeMap$2[type]) === null || _typeMap$type49 === void 0 ? void 0 : _typeMap$type49.systemOrderBillType)],
28323
28916
  disabled: disabled,
28324
28917
  readOnly: true
28325
28918
  }))), /*#__PURE__*/React__default['default'].createElement(GoodItem$1, _objectSpread2(_objectSpread2({
@@ -28330,25 +28923,25 @@ var PublicReissue = function PublicReissue(props) {
28330
28923
  canUpdateNumber: showChangeBtn,
28331
28924
  hasSelectedSystemOrder: showChangeBtn,
28332
28925
  // showChangeBtn={showChangeBtn || typeMap?.[type]?.isShowSelectTradeGoods}
28333
- alwaysShowChooseErpGoodsBtn: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type49 = typeMap$2[type]) === null || _typeMap$type49 === void 0 ? void 0 : _typeMap$type49.alwaysShowChooseErpGoodsBtn,
28334
- // showErpGoodsBtn={typeMap?.[type]?.showErpGoodsBtn}
28926
+ alwaysShowChooseErpGoodsBtn: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type50 = typeMap$2[type]) === null || _typeMap$type50 === void 0 ? void 0 : _typeMap$type50.alwaysShowChooseErpGoodsBtn,
28927
+ showErpGoodsBtn: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type51 = typeMap$2[type]) === null || _typeMap$type51 === void 0 ? void 0 : _typeMap$type51.showErpGoodsBtn,
28335
28928
  shopCode: value === null || value === void 0 ? void 0 : value.shopCode,
28336
- value: value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type50 = typeMap$2[type]) === null || _typeMap$type50 === void 0 ? void 0 : _typeMap$type50.key)],
28929
+ value: value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type52 = typeMap$2[type]) === null || _typeMap$type52 === void 0 ? void 0 : _typeMap$type52.key)],
28337
28930
  onChange: function onChange(val) {
28338
28931
  return changeGoodHandle(val);
28339
28932
  },
28340
28933
  onModeChange: handleModeChange,
28341
- showModeBtn: !!(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type51 = typeMap$2[type]) === null || _typeMap$type51 === void 0 ? void 0 : _typeMap$type51.showModeBtn),
28934
+ showModeBtn: !!(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type53 = typeMap$2[type]) === null || _typeMap$type53 === void 0 ? void 0 : _typeMap$type53.showModeBtn),
28342
28935
  isStrict: isStrict,
28343
- isShowSelectTradeGoods: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type52 = typeMap$2[type]) === null || _typeMap$type52 === void 0 ? void 0 : _typeMap$type52.isShowSelectTradeGoods,
28344
- systemOrders: value === null || value === void 0 ? void 0 : (_value$typeMap$type$s9 = value[(_typeMap$type53 = typeMap$2[type]) === null || _typeMap$type53 === void 0 ? void 0 : _typeMap$type53.systemOrder]) === null || _value$typeMap$type$s9 === void 0 ? void 0 : _value$typeMap$type$s9.orders,
28345
- selectedSystemOrders: showChangeBtn ? [value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type54 = typeMap$2[type]) === null || _typeMap$type54 === void 0 ? void 0 : _typeMap$type54.systemOrderNo)]] : [],
28936
+ isShowSelectTradeGoods: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type54 = typeMap$2[type]) === null || _typeMap$type54 === void 0 ? void 0 : _typeMap$type54.isShowSelectTradeGoods,
28937
+ systemOrders: value === null || value === void 0 ? void 0 : (_value$typeMap$type$s9 = value[(_typeMap$type55 = typeMap$2[type]) === null || _typeMap$type55 === void 0 ? void 0 : _typeMap$type55.systemOrder]) === null || _value$typeMap$type$s9 === void 0 ? void 0 : _value$typeMap$type$s9.orders,
28938
+ selectedSystemOrders: showChangeBtn ? [value === null || value === void 0 ? void 0 : value["".concat(typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type56 = typeMap$2[type]) === null || _typeMap$type56 === void 0 ? void 0 : _typeMap$type56.systemOrderNo)]] : [],
28346
28939
  tradeGoods: {
28347
28940
  originDataSource: getGoodDetails({
28348
28941
  mode: isStrict,
28349
- isAllOrders: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type55 = typeMap$2[type]) === null || _typeMap$type55 === void 0 ? void 0 : _typeMap$type55.isShowSelectTradeGoods
28942
+ isAllOrders: typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type57 = typeMap$2[type]) === null || _typeMap$type57 === void 0 ? void 0 : _typeMap$type57.isShowSelectTradeGoods
28350
28943
  }),
28351
- uniqueKey: (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type56 = typeMap$2[type]) === null || _typeMap$type56 === void 0 ? void 0 : _typeMap$type56.uniqueKey) || 'uuid',
28944
+ uniqueKey: (typeMap$2 === null || typeMap$2 === void 0 ? void 0 : (_typeMap$type58 = typeMap$2[type]) === null || _typeMap$type58 === void 0 ? void 0 : _typeMap$type58.uniqueKey) || 'uuid',
28352
28945
  selectedGoodsChange: selectedGoodsChange
28353
28946
  }
28354
28947
  })));