@kmkf-fe-packages/basic-components 2.0.79-beta.52 → 2.0.79-beta.55

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.esm.js CHANGED
@@ -13538,6 +13538,19 @@ var searchFormData = [{
13538
13538
  }, {
13539
13539
  label: '款式编码',
13540
13540
  name: 'styleCode'
13541
+ }, {
13542
+ label: '商品类型',
13543
+ name: 'skuType',
13544
+ type: 'select',
13545
+ formItemProps: {
13546
+ options: [{
13547
+ label: '普通商品',
13548
+ value: 'normal'
13549
+ }, {
13550
+ label: '组合装商品',
13551
+ value: 'combine'
13552
+ }]
13553
+ }
13541
13554
  }];
13542
13555
  var GoodList$1 = function GoodList(props, ref) {
13543
13556
  var _useState = useState([]),
@@ -19044,6 +19057,9 @@ var isErpType = {
19044
19057
  },
19045
19058
  isKm: function isKm(type) {
19046
19059
  return ['KM_GOODS', 'KM_REISSUE_GOODS'].includes(type);
19060
+ },
19061
+ isJy: function isJy(type) {
19062
+ return ['JY_GOODS', 'JY_REISSUE_GOODS'].includes(type);
19047
19063
  }
19048
19064
  };
19049
19065
  var processGoods = function processGoods(_ref) {
@@ -21120,6 +21136,9 @@ var isErpType$1 = {
21120
21136
  },
21121
21137
  isWln: function isWln(type) {
21122
21138
  return ['WLN_GOODS'].includes(type);
21139
+ },
21140
+ isJy: function isJy(type) {
21141
+ return ['JY_GOODS'].includes(type);
21123
21142
  }
21124
21143
  };
21125
21144
  var processAllOrders = function processAllOrders(_ref) {
@@ -24455,4 +24474,4 @@ var KmVideo = function KmVideo(_ref) {
24455
24474
  }))));
24456
24475
  };
24457
24476
 
24458
- export { ApaasAddress as Address, AliPay, Province as ApaasAddress, ApaasCascader, ApaasCheckbox, ApaasDate, withFormItem as ApaasHoc, ApaasInput, ApaasInputNumber, ApaasLogistics, ApaasMultipleSelect, ApaasPosting, ApaasRadio, ApaasRate, ApaasSelect, ApaasSlider, ApaasTextArea, ApaasUpload, index as ApaasUploadAsync, ApaasUploadFile, index$1 as ApaasUploadProAsync, AsyncSelect, bsE3Reissue as BsE3Reissue, BsExchange, BsGoods, BsReissue, BsReturnGoods as BsReturn, index$3 as BsSystemOrder, BuyerNick, CalculationInput, ChooseBaby, CommonExchangeGoods, CommonGoods, CommonSystemOrder$1 as CommonMultiStatus, CommonReturnGoods, CommonStatus, CommonSystemOrder, CopyTextIcon, ExpressLogistics, Goods, index$4 as GoodsTable, GyReissue, GyReturnGoods as GyReturn, IdentifyAddress, Invoice, jstGoods as JstGoods, ItemList as JstItemList, KmVideo, LogisticsInterception, LogisticsMoreInterception, LogisticsMoreTrajectory, LogisticsTrajectory, MsgStatus, ParseLogistics, Payment, PublicReissue, RemarkInput as Remark, ExpressLogistics as ReturnLogistics, ShopNameSelect as ShopName, Status, SubForm, Supplier, TBGoodId, TBGoodSerial, TradeId, WdtGoodList, wdtReissue as WdtReissue, WlnGoods, columnsBaseInfoMap, erpColumnsMap, erpFormValidator, index$2 as erpModalColumnsMap, getColumns$4 as getGyColumns, getColumns$5 as getJstColumns, getColumns$6 as getKmColumns, getColumns$2 as getWdtColumns, getColumns$3 as getWlnColumns };
24477
+ export { ApaasAddress as Address, AliPay, Province as ApaasAddress, ApaasCascader, ApaasCheckbox, ApaasDate, withFormItem as ApaasHoc, ApaasInput, ApaasInputNumber, ApaasLogistics, ApaasMultipleSelect, ApaasPosting, ApaasRadio, ApaasRate, ApaasSelect, ApaasSlider, ApaasTextArea, ApaasUpload, index as ApaasUploadAsync, ApaasUploadFile, index$1 as ApaasUploadProAsync, AsyncSelect, bsE3Reissue as BsE3Reissue, BsExchange, BsGoods, BsReissue, BsReturnGoods as BsReturn, index$3 as BsSystemOrder, BuyerNick, CalculationInput, ChooseBaby, CommonExchangeGoods, CommonGoods, CommonSystemOrder$1 as CommonMultiStatus, CommonReturnGoods, CommonStatus, CommonSystemOrder, CopyTextIcon, ExpressLogistics, Goods, index$4 as GoodsTable, GyReissue, GyReturnGoods as GyReturn, IdentifyAddress, Invoice, jstGoods as JstGoods, ItemList as JstItemList, KmVideo, LogisticsInterception, LogisticsMoreInterception, LogisticsMoreTrajectory, LogisticsTrajectory, MsgStatus, ParseLogistics, Payment, PublicReissue, RemarkInput as Remark, ExpressLogistics as ReturnLogistics, ShopNameSelect as ShopName, Status, SubForm, Supplier, TBGoodId, TBGoodSerial, TradeId, WdtGoodList, wdtReissue as WdtReissue, WlnGoods, columnsBaseInfoMap, erpColumnsMap, erpFormValidator, index$2 as erpModalColumnsMap, getColumns$4 as getGyColumns, getColumns$5 as getJstColumns, getColumns$7 as getJyColumns, getColumns$6 as getKmColumns, getColumns$2 as getWdtColumns, getColumns$3 as getWlnColumns };
package/dist/index.js CHANGED
@@ -13551,6 +13551,19 @@ var searchFormData = [{
13551
13551
  }, {
13552
13552
  label: '款式编码',
13553
13553
  name: 'styleCode'
13554
+ }, {
13555
+ label: '商品类型',
13556
+ name: 'skuType',
13557
+ type: 'select',
13558
+ formItemProps: {
13559
+ options: [{
13560
+ label: '普通商品',
13561
+ value: 'normal'
13562
+ }, {
13563
+ label: '组合装商品',
13564
+ value: 'combine'
13565
+ }]
13566
+ }
13554
13567
  }];
13555
13568
  var GoodList$1 = function GoodList(props, ref) {
13556
13569
  var _useState = React.useState([]),
@@ -19057,6 +19070,9 @@ var isErpType = {
19057
19070
  },
19058
19071
  isKm: function isKm(type) {
19059
19072
  return ['KM_GOODS', 'KM_REISSUE_GOODS'].includes(type);
19073
+ },
19074
+ isJy: function isJy(type) {
19075
+ return ['JY_GOODS', 'JY_REISSUE_GOODS'].includes(type);
19060
19076
  }
19061
19077
  };
19062
19078
  var processGoods = function processGoods(_ref) {
@@ -21133,6 +21149,9 @@ var isErpType$1 = {
21133
21149
  },
21134
21150
  isWln: function isWln(type) {
21135
21151
  return ['WLN_GOODS'].includes(type);
21152
+ },
21153
+ isJy: function isJy(type) {
21154
+ return ['JY_GOODS'].includes(type);
21136
21155
  }
21137
21156
  };
21138
21157
  var processAllOrders = function processAllOrders(_ref) {
@@ -24542,6 +24561,7 @@ exports.erpFormValidator = erpFormValidator;
24542
24561
  exports.erpModalColumnsMap = index$2;
24543
24562
  exports.getGyColumns = getColumns$4;
24544
24563
  exports.getJstColumns = getColumns$5;
24564
+ exports.getJyColumns = getColumns$7;
24545
24565
  exports.getKmColumns = getColumns$6;
24546
24566
  exports.getWdtColumns = getColumns$2;
24547
24567
  exports.getWlnColumns = getColumns$3;
@@ -3,3 +3,4 @@ export { default as getWlnColumns } from './wln';
3
3
  export { default as getGyColumns } from './gy';
4
4
  export { default as getWdtColumns } from './wdt';
5
5
  export { default as getKmColumns } from './km';
6
+ export { default as getJyColumns } from './jy';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "2.0.79-beta.52",
3
+ "version": "2.0.79-beta.55",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "",
6
6
  "license": "ISC",
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "41c227e32bbb551269c71df7b15d07574d0de141"
69
+ "gitHead": "8eaedc49a52c4014f7a978512b4dc1b6b3fe345b"
70
70
  }