@pisell/pisellos 2.2.283 → 2.2.285

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.
Files changed (283) hide show
  1. package/dist/core/index.js +6 -10
  2. package/dist/model/strategy/adapter/walletPass/example.js +3 -26
  3. package/dist/model/strategy/strategy-example.js +5 -19
  4. package/dist/modules/Cart/index.js +0 -3
  5. package/dist/modules/Cart/utils/cartProduct.js +0 -1
  6. package/dist/modules/Date/index.js +1 -5
  7. package/dist/modules/Discount/index.js +2 -4
  8. package/dist/modules/OpenData/index.js +0 -2
  9. package/dist/modules/Order/index.d.ts +1 -1
  10. package/dist/modules/Order/index.js +64 -86
  11. package/dist/modules/Order/types.d.ts +3 -1
  12. package/dist/modules/Order/types.js +1 -0
  13. package/dist/modules/Payment/index.js +97 -162
  14. package/dist/modules/ProductList/index.js +91 -65
  15. package/dist/modules/Rules/index.js +1 -4
  16. package/dist/modules/Schedule/index.js +0 -1
  17. package/dist/modules/Schedule/utils.js +0 -1
  18. package/dist/modules/Step/index.js +0 -1
  19. package/dist/plugins/request.js +1 -4
  20. package/dist/plugins/window.js +2 -6
  21. package/dist/server/index.js +97 -129
  22. package/dist/server/modules/menu/index.js +32 -41
  23. package/dist/server/modules/order/index.js +2 -4
  24. package/dist/server/modules/products/index.js +24 -42
  25. package/dist/server/modules/quotation/index.js +29 -38
  26. package/dist/server/modules/resource/index.js +3 -4
  27. package/dist/server/modules/schedule/index.js +27 -35
  28. package/dist/server/utils/product.js +0 -1
  29. package/dist/solution/BaseSales/index.js +115 -76
  30. package/dist/solution/BookingByStep/index.d.ts +1 -1
  31. package/dist/solution/BookingByStep/index.js +7 -59
  32. package/dist/solution/BookingByStep/utils/capacity.js +1 -11
  33. package/dist/solution/BookingByStep/utils/resources.js +1 -3
  34. package/dist/solution/BookingByStep/utils/timeslots.js +2 -43
  35. package/dist/solution/BookingTicket/index.d.ts +6 -16
  36. package/dist/solution/BookingTicket/index.js +13 -6
  37. package/dist/solution/BookingTicket/utils/scan/cloudSearch.js +6 -7
  38. package/dist/solution/BookingTicket/utils/scan/handleScan.js +25 -31
  39. package/dist/solution/BookingTicket/utils/scan/index.js +6 -10
  40. package/dist/solution/BuyTickets/index.js +9 -12
  41. package/dist/solution/Checkout/index.js +177 -252
  42. package/dist/solution/Checkout/utils/index.js +4 -16
  43. package/dist/solution/RegisterAndLogin/index.js +30 -76
  44. package/dist/solution/ScanOrder/index.js +50 -60
  45. package/dist/solution/ShopDiscount/index.js +2 -7
  46. package/dist/solution/VenueBooking/index.js +45 -55
  47. package/dist/utils/task.js +15 -18
  48. package/dist/utils/watch.js +0 -1
  49. package/lib/apis/picoding.js +2 -0
  50. package/lib/core/index.js +131 -132
  51. package/lib/effects/index.js +46 -57
  52. package/lib/index.js +82 -49
  53. package/lib/model/index.js +14 -21
  54. package/lib/model/strategy/adapter/dataVariant/adapter.js +38 -50
  55. package/lib/model/strategy/adapter/dataVariant/evaluator.js +162 -236
  56. package/lib/model/strategy/adapter/dataVariant/examples.js +229 -237
  57. package/lib/model/strategy/adapter/dataVariant/index.js +39 -34
  58. package/lib/model/strategy/adapter/dataVariant/type.js +57 -28
  59. package/lib/model/strategy/adapter/index.js +100 -64
  60. package/lib/model/strategy/adapter/itemRule/adapter.js +156 -144
  61. package/lib/model/strategy/adapter/itemRule/evaluator.js +36 -48
  62. package/lib/model/strategy/adapter/itemRule/examples.js +295 -225
  63. package/lib/model/strategy/adapter/itemRule/index.js +83 -57
  64. package/lib/model/strategy/adapter/itemRule/type.js +97 -36
  65. package/lib/model/strategy/adapter/promotion/adapter.js +91 -69
  66. package/lib/model/strategy/adapter/promotion/evaluator.js +444 -310
  67. package/lib/model/strategy/adapter/promotion/examples.js +222 -234
  68. package/lib/model/strategy/adapter/promotion/index.js +46 -0
  69. package/lib/model/strategy/adapter/promotion/type.js +243 -36
  70. package/lib/model/strategy/adapter/type.js +4 -16
  71. package/lib/model/strategy/adapter/walletPass/evaluator.js +180 -150
  72. package/lib/model/strategy/adapter/walletPass/example.js +217 -190
  73. package/lib/model/strategy/adapter/walletPass/index.js +75 -51
  74. package/lib/model/strategy/adapter/walletPass/locales.js +36 -58
  75. package/lib/model/strategy/adapter/walletPass/type.js +4 -16
  76. package/lib/model/strategy/adapter/walletPass/utils.js +588 -378
  77. package/lib/model/strategy/engine.js +270 -168
  78. package/lib/model/strategy/index.js +49 -34
  79. package/lib/model/strategy/strategy-example.js +243 -239
  80. package/lib/model/strategy/type.js +100 -40
  81. package/lib/modules/Account/index.js +39 -53
  82. package/lib/modules/Account/types.js +20 -33
  83. package/lib/modules/AccountList/index.js +116 -154
  84. package/lib/modules/AccountList/types.js +30 -31
  85. package/lib/modules/AccountList/utils.js +18 -30
  86. package/lib/modules/BaseModule.js +23 -42
  87. package/lib/modules/BookingContext/index.js +158 -136
  88. package/lib/modules/BookingContext/types.js +46 -32
  89. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +138 -146
  90. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +78 -83
  91. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +170 -150
  92. package/lib/modules/BookingContext/utils/flexible.js +38 -55
  93. package/lib/modules/BookingContext/utils/formatResourceList.js +19 -34
  94. package/lib/modules/BookingContext/utils/index.js +124 -41
  95. package/lib/modules/BookingContext/utils/noResource.js +58 -70
  96. package/lib/modules/BookingContext/utils/orderLineDisplay.js +14 -41
  97. package/lib/modules/BookingContext/utils/productExtend.js +202 -155
  98. package/lib/modules/BookingContext/utils/resourceErrors.js +53 -53
  99. package/lib/modules/BookingContext/utils/resourceSelection.js +19 -41
  100. package/lib/modules/BookingContext/utils/resources.js +209 -167
  101. package/lib/modules/BookingContext/utils/serviceTimes.js +115 -116
  102. package/lib/modules/BookingContext/utils/timeSlices.js +76 -86
  103. package/lib/modules/Cart/index.js +170 -124
  104. package/lib/modules/Cart/types.js +46 -51
  105. package/lib/modules/Cart/utils/cartAccount.js +40 -39
  106. package/lib/modules/Cart/utils/cartDate.js +56 -61
  107. package/lib/modules/Cart/utils/cartDiscount.js +28 -33
  108. package/lib/modules/Cart/utils/cartNote.js +27 -32
  109. package/lib/modules/Cart/utils/cartProduct.js +321 -251
  110. package/lib/modules/Cart/utils/cartRelationForms.js +29 -35
  111. package/lib/modules/Cart/utils/cartResource.js +70 -78
  112. package/lib/modules/Cart/utils/changePrice.js +22 -50
  113. package/lib/modules/Cart/utils/index.js +106 -48
  114. package/lib/modules/Customer/constants.js +13 -34
  115. package/lib/modules/Customer/index.js +235 -172
  116. package/lib/modules/Customer/types.js +38 -35
  117. package/lib/modules/Date/index.js +116 -115
  118. package/lib/modules/Date/types.js +16 -28
  119. package/lib/modules/Date/utils.js +174 -123
  120. package/lib/modules/Discount/index.js +122 -127
  121. package/lib/modules/Discount/types.js +9 -31
  122. package/lib/modules/Guests/index.js +30 -56
  123. package/lib/modules/Guests/types.js +23 -33
  124. package/lib/modules/Holder/index.js +209 -189
  125. package/lib/modules/Holder/types.js +4 -16
  126. package/lib/modules/Holder/utils.js +20 -49
  127. package/lib/modules/OpenData/index.js +70 -76
  128. package/lib/modules/OpenData/types.js +4 -16
  129. package/lib/modules/OpenData/utils.js +44 -78
  130. package/lib/modules/Order/index.d.ts +1 -1
  131. package/lib/modules/Order/index.js +1728 -2123
  132. package/lib/modules/Order/payment-utils.js +77 -120
  133. package/lib/modules/Order/types.d.ts +3 -1
  134. package/lib/modules/Order/types.js +88 -35
  135. package/lib/modules/Order/utils/bundleDiscountHydration.js +41 -74
  136. package/lib/modules/Order/utils/discountProductLineIdentity.js +142 -100
  137. package/lib/modules/Order/utils/manualProductDiscount.js +124 -123
  138. package/lib/modules/Order/utils/orderCollectionIdentity.js +184 -244
  139. package/lib/modules/Order/utils.js +814 -647
  140. package/lib/modules/Payment/cash.js +20 -33
  141. package/lib/modules/Payment/cashRecommendationAlgorithm.js +145 -76
  142. package/lib/modules/Payment/eftpos.js +16 -30
  143. package/lib/modules/Payment/index.js +532 -399
  144. package/lib/modules/Payment/mx51.js +1 -0
  145. package/lib/modules/Payment/types.js +230 -108
  146. package/lib/modules/Payment/utils.js +52 -51
  147. package/lib/modules/Payment/walletpass.js +485 -660
  148. package/lib/modules/Product/index.js +51 -46
  149. package/lib/modules/Product/types.js +4 -16
  150. package/lib/modules/Product/utils.js +32 -33
  151. package/lib/modules/ProductList/index.js +119 -123
  152. package/lib/modules/ProductList/types.js +9 -31
  153. package/lib/modules/Quotation/index.js +66 -100
  154. package/lib/modules/Quotation/types.js +4 -16
  155. package/lib/modules/Resource/index.js +27 -59
  156. package/lib/modules/Resource/types.js +22 -32
  157. package/lib/modules/Resource/utils.js +30 -38
  158. package/lib/modules/ResourcePlanner/index.js +60 -61
  159. package/lib/modules/ResourcePlanner/planner.js +346 -384
  160. package/lib/modules/ResourcePlanner/types.js +4 -16
  161. package/lib/modules/Rules/index.js +1218 -959
  162. package/lib/modules/Rules/types.js +17 -40
  163. package/lib/modules/SalesSummary/index.js +85 -90
  164. package/lib/modules/SalesSummary/types.js +4 -16
  165. package/lib/modules/SalesSummary/utils.js +355 -430
  166. package/lib/modules/ScanOrderLogger/index.js +59 -79
  167. package/lib/modules/ScanOrderLogger/providers/feishu.js +54 -78
  168. package/lib/modules/ScanOrderLogger/providers/grafana.js +13 -36
  169. package/lib/modules/ScanOrderLogger/types.js +4 -16
  170. package/lib/modules/Schedule/getDateIsInSchedule.js +334 -163
  171. package/lib/modules/Schedule/index.js +100 -114
  172. package/lib/modules/Schedule/type.js +4 -16
  173. package/lib/modules/Schedule/types.js +4 -16
  174. package/lib/modules/Schedule/utils.js +433 -291
  175. package/lib/modules/Step/index.js +40 -52
  176. package/lib/modules/Step/tyeps.js +4 -16
  177. package/lib/modules/Summary/index.js +66 -71
  178. package/lib/modules/Summary/types.js +4 -16
  179. package/lib/modules/Summary/utils.js +773 -418
  180. package/lib/modules/SurchargeList/index.js +46 -60
  181. package/lib/modules/SurchargeList/types.js +4 -16
  182. package/lib/modules/index.js +245 -63
  183. package/lib/plugins/app.js +4 -16
  184. package/lib/plugins/index.js +36 -25
  185. package/lib/plugins/request.js +137 -126
  186. package/lib/plugins/shopStore.js +4 -16
  187. package/lib/plugins/user.js +4 -16
  188. package/lib/plugins/window.js +171 -179
  189. package/lib/server/index.js +3027 -2655
  190. package/lib/server/modules/floor-plan/index.js +102 -123
  191. package/lib/server/modules/floor-plan/types.js +15 -30
  192. package/lib/server/modules/index.js +106 -68
  193. package/lib/server/modules/menu/index.js +146 -122
  194. package/lib/server/modules/menu/types.js +18 -31
  195. package/lib/server/modules/order/index.js +758 -956
  196. package/lib/server/modules/order/types.js +122 -33
  197. package/lib/server/modules/order/utils/filterBookings.js +219 -194
  198. package/lib/server/modules/order/utils/filterOrders.js +118 -92
  199. package/lib/server/modules/payment/index.js +59 -83
  200. package/lib/server/modules/payment/types.js +4 -16
  201. package/lib/server/modules/products/index.js +575 -459
  202. package/lib/server/modules/products/types.js +44 -34
  203. package/lib/server/modules/quotation/index.js +137 -172
  204. package/lib/server/modules/quotation/types.js +21 -31
  205. package/lib/server/modules/resource/index.js +213 -184
  206. package/lib/server/modules/resource/types.js +42 -33
  207. package/lib/server/modules/schedule/index.js +135 -123
  208. package/lib/server/modules/schedule/types.js +14 -21
  209. package/lib/server/modules/schedule/utils.js +334 -163
  210. package/lib/server/types.js +4 -16
  211. package/lib/server/utils/index.js +25 -23
  212. package/lib/server/utils/product.js +196 -139
  213. package/lib/server/utils/schedule.js +34 -41
  214. package/lib/server/utils/small-ticket.js +479 -456
  215. package/lib/server/utils/time.js +40 -49
  216. package/lib/solution/BaseSales/index.js +1220 -1412
  217. package/lib/solution/BaseSales/types.js +42 -38
  218. package/lib/solution/BaseSales/utils/cartPromotion.js +650 -502
  219. package/lib/solution/BaseSales/utils/parseSalesResponse.js +85 -105
  220. package/lib/solution/BaseSales/utils/quotationPrice.js +56 -114
  221. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +108 -145
  222. package/lib/solution/BaseSales/utils.js +158 -143
  223. package/lib/solution/BookingByStep/index.d.ts +1 -1
  224. package/lib/solution/BookingByStep/index.js +1527 -1340
  225. package/lib/solution/BookingByStep/types.js +40 -99
  226. package/lib/solution/BookingByStep/utils/capacity.js +192 -160
  227. package/lib/solution/BookingByStep/utils/products.js +42 -52
  228. package/lib/solution/BookingByStep/utils/resources.js +527 -330
  229. package/lib/solution/BookingByStep/utils/stock.js +65 -44
  230. package/lib/solution/BookingByStep/utils/timeslots.js +129 -131
  231. package/lib/solution/BookingTicket/index.d.ts +6 -16
  232. package/lib/solution/BookingTicket/index.js +608 -517
  233. package/lib/solution/BookingTicket/types.js +99 -77
  234. package/lib/solution/BookingTicket/utils/addProductDecision.js +225 -187
  235. package/lib/solution/BookingTicket/utils/addTimeAvailability.js +58 -89
  236. package/lib/solution/BookingTicket/utils/bookingStatus.js +107 -78
  237. package/lib/solution/BookingTicket/utils/cartView.js +114 -99
  238. package/lib/solution/BookingTicket/utils/exampleData.js +185 -0
  239. package/lib/solution/BookingTicket/utils/orderCustomer.js +18 -41
  240. package/lib/solution/BookingTicket/utils/resolveBestAddTimePlan.js +219 -86
  241. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.js +168 -116
  242. package/lib/solution/BookingTicket/utils/scan/cloudSearch.js +79 -91
  243. package/lib/solution/BookingTicket/utils/scan/formatGlobalScan.js +54 -41
  244. package/lib/solution/BookingTicket/utils/scan/handleScan.js +84 -81
  245. package/lib/solution/BookingTicket/utils/scan/index.js +98 -104
  246. package/lib/solution/BookingTicket/utils/scan/scanCache.js +90 -43
  247. package/lib/solution/BookingTicket/utils/scan/scanProductValues.js +52 -64
  248. package/lib/solution/BookingTicket/utils/sessionCatalogStale.js +56 -58
  249. package/lib/solution/BookingTicket/utils/weighingProductSku.js +34 -48
  250. package/lib/solution/BuyTickets/index.js +67 -70
  251. package/lib/solution/BuyTickets/types.js +22 -38
  252. package/lib/solution/Checkout/index.js +1451 -1158
  253. package/lib/solution/Checkout/types.js +91 -61
  254. package/lib/solution/Checkout/utils/index.js +228 -156
  255. package/lib/solution/PlaceOrder/index.js +55 -0
  256. package/lib/solution/RegisterAndLogin/config.js +493 -460
  257. package/lib/solution/RegisterAndLogin/index.js +633 -630
  258. package/lib/solution/RegisterAndLogin/types.js +189 -76
  259. package/lib/solution/RegisterAndLogin/utils.js +183 -125
  260. package/lib/solution/Sales/index.js +328 -324
  261. package/lib/solution/Sales/types.js +27 -33
  262. package/lib/solution/ScanOrder/index.js +832 -864
  263. package/lib/solution/ScanOrder/types.js +33 -34
  264. package/lib/solution/ScanOrder/utils.js +409 -374
  265. package/lib/solution/ShopDiscount/index.js +226 -232
  266. package/lib/solution/ShopDiscount/types.js +15 -37
  267. package/lib/solution/ShopDiscount/utils.js +300 -172
  268. package/lib/solution/UnifiedBookingSales/index.js +437 -487
  269. package/lib/solution/UnifiedBookingSales/types.js +12 -31
  270. package/lib/solution/VenueBooking/index.js +811 -879
  271. package/lib/solution/VenueBooking/types.js +19 -39
  272. package/lib/solution/VenueBooking/utils/dateSummary.js +27 -56
  273. package/lib/solution/VenueBooking/utils/resource.js +31 -54
  274. package/lib/solution/VenueBooking/utils/slotMerge.js +94 -107
  275. package/lib/solution/VenueBooking/utils/timeSlot.js +132 -132
  276. package/lib/solution/VenueBooking/utils.js +130 -67
  277. package/lib/solution/index.js +124 -41
  278. package/lib/store/createStore.js +32 -29
  279. package/lib/types/index.js +4 -16
  280. package/lib/utils/payment-number.js +26 -46
  281. package/lib/utils/task.js +36 -36
  282. package/lib/utils/watch.js +81 -47
  283. package/package.json +2 -1
@@ -84,9 +84,7 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
84
84
  app = appPlugin.getApp();
85
85
  this.dbManager = app.dbManager;
86
86
  this.logger = app.logger;
87
- if (this.dbManager) {
88
- console.log('[Menu] IndexDB Manager 已初始化');
89
- } else {
87
+ if (this.dbManager) {} else {
90
88
  console.warn('[Menu] IndexDB Manager 未找到');
91
89
  }
92
90
  }
@@ -262,7 +260,6 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
262
260
  } finally {
263
261
  _iterator2.f();
264
262
  }
265
- console.log("[Menu] Map \u7F13\u5B58\u5DF2\u540C\u6B65\uFF0C\u5171 ".concat(this.store.map.size, " \u4E2A\u9910\u724C"));
266
263
  }
267
264
 
268
265
  /**
@@ -285,33 +282,31 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
285
282
 
286
283
  // 同时清空 IndexDB 中的数据
287
284
  if (!this.dbManager) {
288
- _context4.next = 17;
285
+ _context4.next = 16;
289
286
  break;
290
287
  }
291
288
  _context4.prev = 5;
292
289
  _context4.next = 8;
293
290
  return this.dbManager.clear(INDEXDB_STORE_NAME);
294
291
  case 8:
295
- console.log('[Menu] IndexDB 缓存已清空');
296
292
  this.logInfo('IndexDB 缓存已清空');
297
- _context4.next = 17;
293
+ _context4.next = 16;
298
294
  break;
299
- case 12:
300
- _context4.prev = 12;
295
+ case 11:
296
+ _context4.prev = 11;
301
297
  _context4.t0 = _context4["catch"](5);
302
298
  errorMessage = _context4.t0 instanceof Error ? _context4.t0.message : String(_context4.t0);
303
299
  console.error('[Menu] 清空 IndexDB 缓存失败:', _context4.t0);
304
300
  this.logError('清空 IndexDB 缓存失败', {
305
301
  error: errorMessage
306
302
  });
307
- case 17:
308
- console.log('[Menu] 缓存已清空');
303
+ case 16:
309
304
  this.logInfo('缓存清空完成');
310
- case 19:
305
+ case 17:
311
306
  case "end":
312
307
  return _context4.stop();
313
308
  }
314
- }, _callee4, this, [[5, 12]]);
309
+ }, _callee4, this, [[5, 11]]);
315
310
  }));
316
311
  function clear() {
317
312
  return _clear.apply(this, arguments);
@@ -402,14 +397,13 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
402
397
  _context6.next = 10;
403
398
  return Promise.all(savePromises);
404
399
  case 10:
405
- console.log("[Menu] \u5DF2\u5C06 ".concat(menuList.length, " \u6761\u9910\u724C\u6570\u636E\u4FDD\u5B58\u5230 IndexDB"));
406
400
  this.logInfo('餐牌数据已保存到 IndexDB', {
407
401
  menuCount: menuList.length
408
402
  });
409
- _context6.next = 19;
403
+ _context6.next = 18;
410
404
  break;
411
- case 14:
412
- _context6.prev = 14;
405
+ case 13:
406
+ _context6.prev = 13;
413
407
  _context6.t0 = _context6["catch"](4);
414
408
  errorMessage = _context6.t0 instanceof Error ? _context6.t0.message : String(_context6.t0);
415
409
  console.error('[Menu] 保存数据到 IndexDB 失败:', _context6.t0);
@@ -417,11 +411,11 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
417
411
  menuCount: menuList.length,
418
412
  error: errorMessage
419
413
  });
420
- case 19:
414
+ case 18:
421
415
  case "end":
422
416
  return _context6.stop();
423
417
  }
424
- }, _callee6, this, [[4, 14]]);
418
+ }, _callee6, this, [[4, 13]]);
425
419
  }));
426
420
  function saveMenuToIndexDB(_x4) {
427
421
  return _saveMenuToIndexDB.apply(this, arguments);
@@ -441,19 +435,17 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
441
435
  return _regeneratorRuntime().wrap(function _callee7$(_context7) {
442
436
  while (1) switch (_context7.prev = _context7.next) {
443
437
  case 0:
444
- console.log('[Menu] 开始预加载数据...');
445
438
  startTime = Date.now();
446
439
  this.logInfo('开始预加载数据');
447
- _context7.prev = 3;
448
- _context7.next = 6;
440
+ _context7.prev = 2;
441
+ _context7.next = 5;
449
442
  return this.loadMenuFromIndexDB();
450
- case 6:
443
+ case 5:
451
444
  cachedData = _context7.sent;
452
445
  if (!(cachedData && cachedData.length > 0)) {
453
- _context7.next = 15;
446
+ _context7.next = 13;
454
447
  break;
455
448
  }
456
- console.log("[Menu] \u4ECE IndexDB \u52A0\u8F7D\u4E86 ".concat(cachedData.length, " \u6761\u9910\u724C\u6570\u636E"));
457
449
  // 将缓存数据放入 store
458
450
  this.store.menuList = cloneDeep(cachedData);
459
451
  // 同步更新 Map 缓存
@@ -466,31 +458,30 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
466
458
  source: 'IndexDB'
467
459
  });
468
460
  return _context7.abrupt("return");
469
- case 15:
470
- console.log('[Menu] IndexDB 中没有缓存数据,从服务器加载...');
461
+ case 13:
471
462
  this.logInfo('IndexDB 中没有缓存数据,准备从服务器加载');
472
- _context7.next = 24;
463
+ _context7.next = 21;
473
464
  break;
474
- case 19:
475
- _context7.prev = 19;
476
- _context7.t0 = _context7["catch"](3);
465
+ case 16:
466
+ _context7.prev = 16;
467
+ _context7.t0 = _context7["catch"](2);
477
468
  errorMessage = _context7.t0 instanceof Error ? _context7.t0.message : String(_context7.t0);
478
469
  console.warn('[Menu] 从 IndexDB 加载数据失败:', _context7.t0);
479
470
  this.logWarning('从 IndexDB 加载数据失败,准备从服务器加载', {
480
471
  error: errorMessage
481
472
  });
482
- case 24:
483
- _context7.next = 26;
473
+ case 21:
474
+ _context7.next = 23;
484
475
  return this.loadMenuList();
485
- case 26:
476
+ case 23:
486
477
  menuList = _context7.sent;
487
478
  if (!(menuList && menuList.length > 0)) {
488
- _context7.next = 37;
479
+ _context7.next = 34;
489
480
  break;
490
481
  }
491
- _context7.next = 30;
482
+ _context7.next = 27;
492
483
  return this.saveMenuToIndexDB(menuList);
493
- case 30:
484
+ case 27:
494
485
  this.store.menuList = cloneDeep(menuList);
495
486
  // 同步更新 Map 缓存
496
487
  this.syncMenuMap();
@@ -501,18 +492,18 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
501
492
  duration: "".concat(_duration2, "ms"),
502
493
  source: 'Server'
503
494
  });
504
- _context7.next = 39;
495
+ _context7.next = 36;
505
496
  break;
506
- case 37:
497
+ case 34:
507
498
  _duration3 = Date.now() - startTime;
508
499
  this.logWarning('预加载完成但未获取到数据', {
509
500
  duration: "".concat(_duration3, "ms")
510
501
  });
511
- case 39:
502
+ case 36:
512
503
  case "end":
513
504
  return _context7.stop();
514
505
  }
515
- }, _callee7, this, [[3, 19]]);
506
+ }, _callee7, this, [[2, 16]]);
516
507
  }));
517
508
  function preload() {
518
509
  return _preload.apply(this, arguments);
@@ -115,7 +115,6 @@ export var OrderModule = /*#__PURE__*/function (_BaseModule) {
115
115
  case 0:
116
116
  changedOrders = _args.length > 0 && _args[0] !== undefined ? _args[0] : [];
117
117
  source = _args.length > 1 ? _args[1] : undefined;
118
- console.log('触发emitOrdersChanged');
119
118
  payload = {
120
119
  list: this.store.list,
121
120
  changedOrders: changedOrders.map(function (order) {
@@ -123,9 +122,9 @@ export var OrderModule = /*#__PURE__*/function (_BaseModule) {
123
122
  }),
124
123
  source: source
125
124
  };
126
- _context.next = 6;
125
+ _context.next = 5;
127
126
  return this.core.effects.emit(OrderHooks.onOrdersChanged, payload);
128
- case 6:
127
+ case 5:
129
128
  case "end":
130
129
  return _context.stop();
131
130
  }
@@ -2041,7 +2040,6 @@ export var OrderModule = /*#__PURE__*/function (_BaseModule) {
2041
2040
  pubsub: {
2042
2041
  callback: function callback(res) {
2043
2042
  var _message$id, _message$order_id, _message$type;
2044
- console.log('orderDataSource', res);
2045
2043
  var pubsubReceivedAt = Date.now();
2046
2044
  var message = _this13.normalizeOrderSyncMessage(res);
2047
2045
  if (!message) return;
@@ -124,9 +124,7 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
124
124
  app = appPlugin.getApp();
125
125
  this.dbManager = app.dbManager;
126
126
  this.logger = app.logger;
127
- if (this.dbManager) {
128
- console.log('[Products] IndexDB Manager 已初始化');
129
- } else {
127
+ if (this.dbManager) {} else {
130
128
  console.warn('[Products] IndexDB Manager 未找到');
131
129
  }
132
130
  }
@@ -847,14 +845,13 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
847
845
  _context7.prev = 29;
848
846
  _context7.t0 = _context7["catch"](4);
849
847
  errorMessage = _context7.t0 instanceof Error ? _context7.t0.message : String(_context7.t0);
850
- console.log("[ProductsModule] \uD83C\uDF10 ERROR", _context7.t0);
851
848
  this.logError('prepareProductsWithPrice 处理失败', {
852
849
  schedule_date: schedule_date,
853
850
  error: errorMessage
854
851
  });
855
- case 34:
852
+ case 33:
856
853
  return _context7.abrupt("return", []);
857
- case 35:
854
+ case 34:
858
855
  case "end":
859
856
  return _context7.stop();
860
857
  }
@@ -1083,10 +1080,8 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1083
1080
  // 创建 legacy 报价单格式化器
1084
1081
  var legacyPriceFormatter = function legacyPriceFormatter(products, context) {
1085
1082
  if (!context.priceData || context.priceData.length === 0) {
1086
- console.log('[ProductsModule] 💰 没有价格数据,跳过 legacy 报价单价格应用');
1087
1083
  return products;
1088
1084
  }
1089
- console.log("[ProductsModule] \uD83D\uDCB0 \u5E94\u7528 legacy \u62A5\u4EF7\u5355\u4EF7\u683C\u5230 ".concat(products.length, " \u4E2A\u5546\u54C1"));
1090
1085
  return applyPriceDataToProducts(products, context.priceData);
1091
1086
  };
1092
1087
  var i18nFormatter = function i18nFormatter(products, context) {
@@ -1102,7 +1097,6 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1102
1097
  this.formatters.push(i18nFormatter);
1103
1098
  this.formatters.push(detailValueFormatter);
1104
1099
  this.isBuiltinFormatterRegistered = true;
1105
- console.log('[ProductsModule] ✅ 内置商品格式化器已注册(智能定价优先)');
1106
1100
  }
1107
1101
 
1108
1102
  /**
@@ -1150,11 +1144,9 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1150
1144
  // 插入到内置智能定价格式化器之后;legacy 报价单启用时需跳过它。
1151
1145
  var insertIndex = this.isBuiltinFormatterRegistered ? this.isLegacyPriceFormatterEnabled ? 2 : 1 : 0;
1152
1146
  this.formatters.splice(insertIndex, 0, formatter);
1153
- console.log("[ProductsModule] \uD83D\uDCCC \u5DF2\u5728\u4F4D\u7F6E ".concat(insertIndex + 1, " \u63D2\u5165\u683C\u5F0F\u5316\u5668\uFF0C\u5F53\u524D\u5171 ").concat(this.formatters.length, " \u4E2A"));
1154
1147
  } else {
1155
1148
  // 追加到末尾
1156
1149
  this.formatters.push(formatter);
1157
- console.log("[ProductsModule] \uD83D\uDCCC \u5DF2\u6CE8\u518C\u683C\u5F0F\u5316\u5668\uFF0C\u5F53\u524D\u5171 ".concat(this.formatters.length, " \u4E2A"));
1158
1150
  }
1159
1151
  }
1160
1152
 
@@ -1170,11 +1162,9 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1170
1162
  // 保留 legacy 兜底(如果启用)和智能定价格式化器。
1171
1163
  var builtinCount = this.isLegacyPriceFormatterEnabled ? 2 : 1;
1172
1164
  this.formatters = this.formatters.slice(0, builtinCount);
1173
- console.log('[ProductsModule] 🧹 已清空自定义格式化器,保留内置智能定价格式化器');
1174
1165
  } else {
1175
1166
  this.formatters = [];
1176
1167
  this.isBuiltinFormatterRegistered = false;
1177
- console.log('[ProductsModule] 🧹 已清空所有格式化器');
1178
1168
  }
1179
1169
  }
1180
1170
 
@@ -1190,7 +1180,6 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1190
1180
  var keys = Array.from(this.productsPriceCache.keys());
1191
1181
  var oldestKey = keys[0];
1192
1182
  this.productsPriceCache.delete(oldestKey);
1193
- console.log("[ProductsModule] \uD83E\uDDF9 \u6E05\u7406\u8FC7\u671F\u5546\u54C1\u4EF7\u683C\u7F13\u5B58: ".concat(oldestKey));
1194
1183
  }
1195
1184
  }
1196
1185
 
@@ -1202,7 +1191,6 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1202
1191
  key: "clearPriceCache",
1203
1192
  value: function clearPriceCache() {
1204
1193
  this.productsPriceCache.clear();
1205
- console.log('[ProductsModule] 🗑️ 商品价格缓存已清空');
1206
1194
  }
1207
1195
 
1208
1196
  /**
@@ -1714,33 +1702,31 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1714
1702
 
1715
1703
  // 同时清空 IndexDB 中的所有数据(包括商品和元数据)
1716
1704
  if (!this.dbManager) {
1717
- _context17.next = 16;
1705
+ _context17.next = 15;
1718
1706
  break;
1719
1707
  }
1720
1708
  _context17.prev = 4;
1721
1709
  _context17.next = 7;
1722
1710
  return this.dbManager.clear(INDEXDB_STORE_NAME);
1723
1711
  case 7:
1724
- console.log('[Products] IndexDB 缓存已清空');
1725
1712
  this.logInfo('IndexDB 缓存已清空');
1726
- _context17.next = 16;
1713
+ _context17.next = 15;
1727
1714
  break;
1728
- case 11:
1729
- _context17.prev = 11;
1715
+ case 10:
1716
+ _context17.prev = 10;
1730
1717
  _context17.t0 = _context17["catch"](4);
1731
1718
  errorMessage = _context17.t0 instanceof Error ? _context17.t0.message : String(_context17.t0);
1732
1719
  console.error('[Products] 清空 IndexDB 缓存失败:', _context17.t0);
1733
1720
  this.logError('清空 IndexDB 缓存失败', {
1734
1721
  error: errorMessage
1735
1722
  });
1736
- case 16:
1737
- console.log('[Products] 缓存已清空');
1723
+ case 15:
1738
1724
  this.logInfo('缓存清空完成');
1739
- case 18:
1725
+ case 16:
1740
1726
  case "end":
1741
1727
  return _context17.stop();
1742
1728
  }
1743
- }, _callee17, this, [[4, 11]]);
1729
+ }, _callee17, this, [[4, 10]]);
1744
1730
  }));
1745
1731
  function clear() {
1746
1732
  return _clear.apply(this, arguments);
@@ -2080,23 +2066,21 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
2080
2066
  return _regeneratorRuntime().wrap(function _callee24$(_context24) {
2081
2067
  while (1) switch (_context24.prev = _context24.next) {
2082
2068
  case 0:
2083
- console.log('[Products] 开始预加载数据...');
2084
2069
  tTotal = performance.now();
2085
2070
  this.logInfo('开始预加载数据');
2086
- _context24.prev = 3;
2071
+ _context24.prev = 2;
2087
2072
  tIndexDB = performance.now();
2088
- _context24.next = 7;
2073
+ _context24.next = 6;
2089
2074
  return this.loadProductsFromIndexDB();
2090
- case 7:
2075
+ case 6:
2091
2076
  cachedData = _context24.sent;
2092
2077
  perfMark('preload.loadFromIndexDB', performance.now() - tIndexDB, {
2093
2078
  count: (_cachedData$length = cachedData === null || cachedData === void 0 ? void 0 : cachedData.length) !== null && _cachedData$length !== void 0 ? _cachedData$length : 0
2094
2079
  });
2095
2080
  if (!(cachedData && cachedData.length > 0)) {
2096
- _context24.next = 20;
2081
+ _context24.next = 18;
2097
2082
  break;
2098
2083
  }
2099
- console.log("[Products] \u4ECE IndexDB \u52A0\u8F7D\u4E86 ".concat(cachedData.length, " \u4E2A\u5546\u54C1"));
2100
2084
  // IndexDB 反序列化的数据已经是全新的,无需 cloneDeep
2101
2085
  this.store.list = cachedData;
2102
2086
  tSync = performance.now();
@@ -2116,24 +2100,23 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
2116
2100
  });
2117
2101
  this.lastPreloadCompletedAtMs = Date.now();
2118
2102
  return _context24.abrupt("return");
2119
- case 20:
2120
- console.log('[Products] IndexDB 中没有缓存数据,从服务器加载...');
2103
+ case 18:
2121
2104
  this.logInfo('IndexDB 中没有缓存数据,准备从服务器加载');
2122
- _context24.next = 29;
2105
+ _context24.next = 26;
2123
2106
  break;
2124
- case 24:
2125
- _context24.prev = 24;
2126
- _context24.t0 = _context24["catch"](3);
2107
+ case 21:
2108
+ _context24.prev = 21;
2109
+ _context24.t0 = _context24["catch"](2);
2127
2110
  errorMessage = _context24.t0 instanceof Error ? _context24.t0.message : String(_context24.t0);
2128
2111
  console.warn('[Products] 从 IndexDB 加载数据失败:', _context24.t0);
2129
2112
  this.logWarning('从 IndexDB 加载数据失败,准备从服务器加载', {
2130
2113
  error: errorMessage
2131
2114
  });
2132
- case 29:
2115
+ case 26:
2133
2116
  tServer = performance.now();
2134
- _context24.next = 32;
2117
+ _context24.next = 29;
2135
2118
  return this.loadProductsByServer();
2136
- case 32:
2119
+ case 29:
2137
2120
  products = _context24.sent;
2138
2121
  perfMark('preload.loadFromServer', performance.now() - tServer, {
2139
2122
  count: (_products$length3 = products === null || products === void 0 ? void 0 : products.length) !== null && _products$length3 !== void 0 ? _products$length3 : 0
@@ -2165,11 +2148,11 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
2165
2148
  duration: "".concat(Math.round(performance.now() - tTotal), "ms")
2166
2149
  });
2167
2150
  }
2168
- case 35:
2151
+ case 32:
2169
2152
  case "end":
2170
2153
  return _context24.stop();
2171
2154
  }
2172
- }, _callee24, this, [[3, 24]]);
2155
+ }, _callee24, this, [[2, 21]]);
2173
2156
  }));
2174
2157
  function preload() {
2175
2158
  return _preload.apply(this, arguments);
@@ -2213,7 +2196,6 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
2213
2196
  return function (message) {
2214
2197
  var data = (message === null || message === void 0 ? void 0 : message.data) || message;
2215
2198
  if (!data) return;
2216
- console.log("[ProductsModule] \u6536\u5230\u540C\u6B65\u6D88\u606F [".concat(channelKey, "]:"), data);
2217
2199
  _this11.logInfo('收到同步消息', {
2218
2200
  channelKey: channelKey,
2219
2201
  action: data.action,
@@ -82,9 +82,7 @@ export var QuotationModule = /*#__PURE__*/function (_BaseModule) {
82
82
  if (appPlugin) {
83
83
  app = appPlugin.getApp();
84
84
  this.dbManager = app.dbManager;
85
- if (this.dbManager) {
86
- console.log('[Quotation] IndexDB Manager 已初始化');
87
- } else {
85
+ if (this.dbManager) {} else {
88
86
  console.warn('[Quotation] IndexDB Manager 未找到');
89
87
  }
90
88
  }
@@ -319,27 +317,24 @@ export var QuotationModule = /*#__PURE__*/function (_BaseModule) {
319
317
 
320
318
  // 同时清空 IndexDB 中的数据
321
319
  if (!this.dbManager) {
322
- _context5.next = 11;
320
+ _context5.next = 10;
323
321
  break;
324
322
  }
325
323
  _context5.prev = 2;
326
324
  _context5.next = 5;
327
325
  return this.dbManager.clear(INDEXDB_STORE_NAME);
328
326
  case 5:
329
- console.log('[Quotation] IndexDB 缓存已清空');
330
- _context5.next = 11;
327
+ _context5.next = 10;
331
328
  break;
332
- case 8:
333
- _context5.prev = 8;
329
+ case 7:
330
+ _context5.prev = 7;
334
331
  _context5.t0 = _context5["catch"](2);
335
332
  console.error('[Quotation] 清空 IndexDB 缓存失败:', _context5.t0);
336
- case 11:
337
- console.log('[Quotation] 缓存已清空');
338
- case 12:
333
+ case 10:
339
334
  case "end":
340
335
  return _context5.stop();
341
336
  }
342
- }, _callee5, this, [[2, 8]]);
337
+ }, _callee5, this, [[2, 7]]);
343
338
  }));
344
339
  function clear() {
345
340
  return _clear.apply(this, arguments);
@@ -495,18 +490,17 @@ export var QuotationModule = /*#__PURE__*/function (_BaseModule) {
495
490
  _context7.next = 8;
496
491
  return Promise.all(savePromises);
497
492
  case 8:
498
- console.log("[Quotation] \u5DF2\u5C06 ".concat(quotationList.length, " \u6761\u62A5\u4EF7\u5355\u6570\u636E\u4FDD\u5B58\u5230 IndexDB"));
499
- _context7.next = 14;
493
+ _context7.next = 13;
500
494
  break;
501
- case 11:
502
- _context7.prev = 11;
495
+ case 10:
496
+ _context7.prev = 10;
503
497
  _context7.t0 = _context7["catch"](2);
504
498
  console.error('[Quotation] 保存数据到 IndexDB 失败:', _context7.t0);
505
- case 14:
499
+ case 13:
506
500
  case "end":
507
501
  return _context7.stop();
508
502
  }
509
- }, _callee7, this, [[2, 11]]);
503
+ }, _callee7, this, [[2, 10]]);
510
504
  }));
511
505
  function saveQuotationToIndexDB(_x5) {
512
506
  return _saveQuotationToIndexDB.apply(this, arguments);
@@ -526,48 +520,45 @@ export var QuotationModule = /*#__PURE__*/function (_BaseModule) {
526
520
  return _regeneratorRuntime().wrap(function _callee8$(_context8) {
527
521
  while (1) switch (_context8.prev = _context8.next) {
528
522
  case 0:
529
- console.log('[Quotation] 开始预加载数据...');
530
- _context8.prev = 1;
531
- _context8.next = 4;
523
+ _context8.prev = 0;
524
+ _context8.next = 3;
532
525
  return this.loadQuotationFromIndexDB();
533
- case 4:
526
+ case 3:
534
527
  cachedData = _context8.sent;
535
528
  if (!(cachedData && cachedData.length > 0)) {
536
- _context8.next = 10;
529
+ _context8.next = 8;
537
530
  break;
538
531
  }
539
- console.log("[Quotation] \u4ECE IndexDB \u52A0\u8F7D\u4E86 ".concat(cachedData.length, " \u6761\u62A5\u4EF7\u5355\u6570\u636E"));
540
532
  // 将缓存数据放入 store
541
533
  this.store.quotationList = cloneDeep(cachedData);
542
534
  this.core.effects.emit(QuotationHooks.onQuotationChanged, this.store.quotationList);
543
535
  return _context8.abrupt("return");
544
- case 10:
545
- console.log('[Quotation] IndexDB 中没有缓存数据,从服务器加载...');
546
- _context8.next = 16;
536
+ case 8:
537
+ _context8.next = 13;
547
538
  break;
548
- case 13:
549
- _context8.prev = 13;
550
- _context8.t0 = _context8["catch"](1);
539
+ case 10:
540
+ _context8.prev = 10;
541
+ _context8.t0 = _context8["catch"](0);
551
542
  console.warn('[Quotation] 从 IndexDB 加载数据失败:', _context8.t0);
552
- case 16:
553
- _context8.next = 18;
543
+ case 13:
544
+ _context8.next = 15;
554
545
  return this.loadQuotationList();
555
- case 18:
546
+ case 15:
556
547
  quotationList = _context8.sent;
557
548
  if (!(quotationList && quotationList.length > 0)) {
558
- _context8.next = 24;
549
+ _context8.next = 21;
559
550
  break;
560
551
  }
561
- _context8.next = 22;
552
+ _context8.next = 19;
562
553
  return this.saveQuotationToIndexDB(quotationList);
563
- case 22:
554
+ case 19:
564
555
  this.store.quotationList = cloneDeep(quotationList);
565
556
  this.core.effects.emit(QuotationHooks.onQuotationChanged, this.store.quotationList);
566
- case 24:
557
+ case 21:
567
558
  case "end":
568
559
  return _context8.stop();
569
560
  }
570
- }, _callee8, this, [[1, 13]]);
561
+ }, _callee8, this, [[0, 10]]);
571
562
  }));
572
563
  function preload() {
573
564
  return _preload.apply(this, arguments);
@@ -790,17 +790,16 @@ export var ResourceModule = /*#__PURE__*/function (_BaseModule) {
790
790
  });
791
791
  case 4:
792
792
  result = _context8.sent;
793
- console.log('result', result);
794
793
  this.logInfo('setupResourceSync: 资源列表查询结果', {
795
794
  result: result
796
795
  });
797
796
  if (!(result !== null && result !== void 0 && (_result$data = result.data) !== null && _result$data !== void 0 && (_result$data = _result$data.list) !== null && _result$data !== void 0 && _result$data.length)) {
798
- _context8.next = 10;
797
+ _context8.next = 9;
799
798
  break;
800
799
  }
801
- _context8.next = 10;
800
+ _context8.next = 9;
802
801
  return this.mergeResourcesToStore(result === null || result === void 0 || (_result$data2 = result.data) === null || _result$data2 === void 0 ? void 0 : _result$data2.list);
803
- case 10:
802
+ case 9:
804
803
  case "end":
805
804
  return _context8.stop();
806
805
  }