kts-component-invoice-operate 3.2.123 → 3.2.124

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
@@ -22085,8 +22085,10 @@ var useEmptyRefill = (function () {
22085
22085
  case 0:
22086
22086
  s.goodsListState.goodsList = [];
22087
22087
  s.goodsListState.goodsMap = new Map();
22088
+ s.goodsListState.selectedGoodIndex = [];
22089
+ s.goodsListState.discountGoodIndex = [];
22088
22090
 
22089
- case 2:
22091
+ case 4:
22090
22092
  case "end":
22091
22093
  return _context.stop();
22092
22094
  }
package/dist/index.js CHANGED
@@ -22095,8 +22095,10 @@ var useEmptyRefill = (function () {
22095
22095
  case 0:
22096
22096
  s.goodsListState.goodsList = [];
22097
22097
  s.goodsListState.goodsMap = new Map();
22098
+ s.goodsListState.selectedGoodIndex = [];
22099
+ s.goodsListState.discountGoodIndex = [];
22098
22100
 
22099
- case 2:
22101
+ case 4:
22100
22102
  case "end":
22101
22103
  return _context.stop();
22102
22104
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kts-component-invoice-operate",
3
- "version": "3.2.123",
3
+ "version": "3.2.124",
4
4
  "scripts": {
5
5
  "dev": "dumi dev",
6
6
  "start": "dumi dev",
@@ -14,6 +14,8 @@ export default () => {
14
14
  controller.run(async s => {
15
15
  s.goodsListState.goodsList = [];
16
16
  s.goodsListState.goodsMap = new Map();
17
+ s.goodsListState.selectedGoodIndex = [];
18
+ s.goodsListState.discountGoodIndex = [];
17
19
  })
18
20
  }, [controller])
19
21