@pisell/pisellos 2.3.74 → 2.3.76

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/promotion/index.js +9 -0
  3. package/dist/model/strategy/adapter/walletPass/example.js +3 -26
  4. package/dist/model/strategy/strategy-example.js +5 -19
  5. package/dist/modules/Cart/index.js +0 -3
  6. package/dist/modules/Cart/utils/cartProduct.js +0 -1
  7. package/dist/modules/Date/index.js +1 -5
  8. package/dist/modules/Discount/index.js +2 -4
  9. package/dist/modules/OpenData/index.js +0 -2
  10. package/dist/modules/Order/index.d.ts +1 -1
  11. package/dist/modules/Order/index.js +75 -91
  12. package/dist/modules/Order/types.d.ts +3 -1
  13. package/dist/modules/Payment/index.js +97 -162
  14. package/dist/modules/Rules/index.js +1 -4
  15. package/dist/modules/Schedule/index.js +0 -1
  16. package/dist/modules/Schedule/utils.js +0 -1
  17. package/dist/modules/Step/index.js +0 -1
  18. package/dist/plugins/request.js +1 -4
  19. package/dist/plugins/window.js +2 -6
  20. package/dist/server/index.js +97 -129
  21. package/dist/server/modules/menu/index.js +32 -41
  22. package/dist/server/modules/order/index.js +2 -4
  23. package/dist/server/modules/products/index.js +24 -42
  24. package/dist/server/modules/quotation/index.js +29 -38
  25. package/dist/server/modules/resource/index.js +3 -4
  26. package/dist/server/modules/schedule/index.js +27 -35
  27. package/dist/server/utils/product.js +0 -1
  28. package/dist/solution/BaseSales/index.js +100 -72
  29. package/dist/solution/BaseSales/utils/cartPromotion.d.ts +5 -0
  30. package/dist/solution/BaseSales/utils/cartPromotion.js +15 -6
  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.js +0 -2
  36. package/dist/solution/BookingTicket/utils/scan/cloudSearch.js +6 -7
  37. package/dist/solution/BookingTicket/utils/scan/handleScan.js +25 -31
  38. package/dist/solution/BookingTicket/utils/scan/index.js +6 -10
  39. package/dist/solution/BuyTickets/index.js +9 -12
  40. package/dist/solution/Checkout/index.js +177 -252
  41. package/dist/solution/Checkout/utils/index.js +4 -16
  42. package/dist/solution/RegisterAndLogin/index.js +30 -76
  43. package/dist/solution/ScanOrder/index.js +50 -60
  44. package/dist/solution/ShopDiscount/index.js +2 -7
  45. package/dist/solution/VenueBooking/index.js +45 -55
  46. package/dist/utils/task.js +15 -18
  47. package/dist/utils/watch.js +0 -1
  48. package/lib/apis/picoding.js +2 -0
  49. package/lib/core/index.js +134 -134
  50. package/lib/effects/index.js +46 -57
  51. package/lib/index.js +82 -49
  52. package/lib/model/index.js +14 -21
  53. package/lib/model/strategy/adapter/dataVariant/adapter.js +38 -50
  54. package/lib/model/strategy/adapter/dataVariant/evaluator.js +162 -236
  55. package/lib/model/strategy/adapter/dataVariant/examples.js +229 -237
  56. package/lib/model/strategy/adapter/dataVariant/index.js +39 -34
  57. package/lib/model/strategy/adapter/dataVariant/type.js +57 -28
  58. package/lib/model/strategy/adapter/index.js +100 -64
  59. package/lib/model/strategy/adapter/itemRule/adapter.js +156 -144
  60. package/lib/model/strategy/adapter/itemRule/evaluator.js +36 -48
  61. package/lib/model/strategy/adapter/itemRule/examples.js +295 -225
  62. package/lib/model/strategy/adapter/itemRule/index.js +83 -57
  63. package/lib/model/strategy/adapter/itemRule/type.js +97 -36
  64. package/lib/model/strategy/adapter/promotion/adapter.js +91 -69
  65. package/lib/model/strategy/adapter/promotion/evaluator.js +444 -310
  66. package/lib/model/strategy/adapter/promotion/examples.js +222 -234
  67. package/lib/model/strategy/adapter/promotion/index.js +1 -0
  68. package/lib/model/strategy/adapter/promotion/type.js +243 -36
  69. package/lib/model/strategy/adapter/type.js +4 -16
  70. package/lib/model/strategy/adapter/walletPass/evaluator.js +180 -150
  71. package/lib/model/strategy/adapter/walletPass/example.js +217 -190
  72. package/lib/model/strategy/adapter/walletPass/index.js +75 -51
  73. package/lib/model/strategy/adapter/walletPass/locales.js +36 -58
  74. package/lib/model/strategy/adapter/walletPass/type.js +4 -16
  75. package/lib/model/strategy/adapter/walletPass/utils.js +588 -378
  76. package/lib/model/strategy/engine.js +270 -168
  77. package/lib/model/strategy/index.js +49 -34
  78. package/lib/model/strategy/strategy-example.js +243 -239
  79. package/lib/model/strategy/type.js +100 -40
  80. package/lib/modules/Account/index.js +39 -53
  81. package/lib/modules/Account/types.js +20 -33
  82. package/lib/modules/AccountList/index.js +116 -154
  83. package/lib/modules/AccountList/types.js +30 -31
  84. package/lib/modules/AccountList/utils.js +18 -30
  85. package/lib/modules/BaseModule.js +23 -42
  86. package/lib/modules/BookingContext/index.js +158 -136
  87. package/lib/modules/BookingContext/types.js +46 -32
  88. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +138 -146
  89. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +78 -83
  90. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +170 -150
  91. package/lib/modules/BookingContext/utils/flexible.js +38 -55
  92. package/lib/modules/BookingContext/utils/formatResourceList.js +19 -34
  93. package/lib/modules/BookingContext/utils/index.js +124 -41
  94. package/lib/modules/BookingContext/utils/noResource.js +58 -70
  95. package/lib/modules/BookingContext/utils/orderLineDisplay.js +14 -41
  96. package/lib/modules/BookingContext/utils/productExtend.js +202 -155
  97. package/lib/modules/BookingContext/utils/resourceErrors.js +53 -53
  98. package/lib/modules/BookingContext/utils/resourceSelection.js +19 -41
  99. package/lib/modules/BookingContext/utils/resources.js +209 -167
  100. package/lib/modules/BookingContext/utils/serviceTimes.js +115 -116
  101. package/lib/modules/BookingContext/utils/timeSlices.js +76 -86
  102. package/lib/modules/Cart/index.js +170 -124
  103. package/lib/modules/Cart/types.js +46 -51
  104. package/lib/modules/Cart/utils/cartAccount.js +40 -39
  105. package/lib/modules/Cart/utils/cartDate.js +56 -61
  106. package/lib/modules/Cart/utils/cartDiscount.js +28 -33
  107. package/lib/modules/Cart/utils/cartNote.js +27 -32
  108. package/lib/modules/Cart/utils/cartProduct.js +321 -251
  109. package/lib/modules/Cart/utils/cartRelationForms.js +29 -35
  110. package/lib/modules/Cart/utils/cartResource.js +70 -78
  111. package/lib/modules/Cart/utils/changePrice.js +22 -50
  112. package/lib/modules/Cart/utils/index.js +106 -48
  113. package/lib/modules/Customer/constants.js +13 -34
  114. package/lib/modules/Customer/index.js +235 -172
  115. package/lib/modules/Customer/types.js +38 -35
  116. package/lib/modules/Date/index.js +116 -115
  117. package/lib/modules/Date/types.js +16 -28
  118. package/lib/modules/Date/utils.js +174 -123
  119. package/lib/modules/Discount/index.js +122 -127
  120. package/lib/modules/Discount/types.js +9 -31
  121. package/lib/modules/Guests/index.js +30 -56
  122. package/lib/modules/Guests/types.js +23 -33
  123. package/lib/modules/Holder/index.js +209 -189
  124. package/lib/modules/Holder/types.js +4 -16
  125. package/lib/modules/Holder/utils.js +20 -49
  126. package/lib/modules/OpenData/index.js +70 -76
  127. package/lib/modules/OpenData/types.js +4 -16
  128. package/lib/modules/OpenData/utils.js +44 -78
  129. package/lib/modules/Order/index.d.ts +1 -1
  130. package/lib/modules/Order/index.js +1733 -2121
  131. package/lib/modules/Order/payment-utils.js +77 -120
  132. package/lib/modules/Order/types.d.ts +3 -1
  133. package/lib/modules/Order/types.js +88 -35
  134. package/lib/modules/Order/utils/bundleDiscountHydration.js +41 -74
  135. package/lib/modules/Order/utils/discountProductLineIdentity.js +142 -100
  136. package/lib/modules/Order/utils/manualProductDiscount.js +124 -123
  137. package/lib/modules/Order/utils/orderCollectionIdentity.js +184 -244
  138. package/lib/modules/Order/utils.js +814 -647
  139. package/lib/modules/Payment/cash.js +20 -33
  140. package/lib/modules/Payment/cashRecommendationAlgorithm.js +145 -76
  141. package/lib/modules/Payment/eftpos.js +16 -30
  142. package/lib/modules/Payment/index.js +532 -399
  143. package/lib/modules/Payment/mx51.js +1 -0
  144. package/lib/modules/Payment/types.js +230 -108
  145. package/lib/modules/Payment/utils.js +52 -51
  146. package/lib/modules/Payment/walletpass.js +485 -660
  147. package/lib/modules/Product/index.js +51 -46
  148. package/lib/modules/Product/types.js +4 -16
  149. package/lib/modules/Product/utils.js +32 -33
  150. package/lib/modules/ProductList/index.js +113 -123
  151. package/lib/modules/ProductList/types.js +9 -31
  152. package/lib/modules/Quotation/index.js +81 -118
  153. package/lib/modules/Quotation/types.js +4 -16
  154. package/lib/modules/Resource/index.js +27 -59
  155. package/lib/modules/Resource/types.js +22 -32
  156. package/lib/modules/Resource/utils.js +30 -38
  157. package/lib/modules/ResourcePlanner/index.js +25 -23
  158. package/lib/modules/ResourcePlanner/localClock.js +54 -119
  159. package/lib/modules/ResourcePlanner/planner.js +589 -770
  160. package/lib/modules/ResourcePlanner/types.js +10 -29
  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 +3050 -2665
  190. package/lib/server/modules/floor-plan/index.js +118 -134
  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 +142 -122
  194. package/lib/server/modules/menu/types.js +18 -31
  195. package/lib/server/modules/order/index.js +784 -1002
  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 +583 -471
  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 +220 -186
  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.d.ts +5 -0
  219. package/lib/solution/BaseSales/utils/cartPromotion.js +652 -498
  220. package/lib/solution/BaseSales/utils/parseSalesResponse.js +85 -105
  221. package/lib/solution/BaseSales/utils/quotationPrice.js +56 -114
  222. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +108 -145
  223. package/lib/solution/BaseSales/utils.js +158 -143
  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.js +607 -522
  232. package/lib/solution/BookingTicket/types.js +99 -77
  233. package/lib/solution/BookingTicket/utils/addProductDecision.js +226 -189
  234. package/lib/solution/BookingTicket/utils/addTimeAvailability.js +58 -89
  235. package/lib/solution/BookingTicket/utils/bookingStatus.js +107 -78
  236. package/lib/solution/BookingTicket/utils/cartView.js +114 -99
  237. package/lib/solution/BookingTicket/utils/exampleData.js +185 -0
  238. package/lib/solution/BookingTicket/utils/orderCustomer.js +18 -41
  239. package/lib/solution/BookingTicket/utils/resolveBestAddTimePlan.js +219 -86
  240. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.js +168 -116
  241. package/lib/solution/BookingTicket/utils/scan/cloudSearch.js +79 -91
  242. package/lib/solution/BookingTicket/utils/scan/formatGlobalScan.js +54 -41
  243. package/lib/solution/BookingTicket/utils/scan/handleScan.js +84 -81
  244. package/lib/solution/BookingTicket/utils/scan/index.js +98 -104
  245. package/lib/solution/BookingTicket/utils/scan/scanCache.js +90 -43
  246. package/lib/solution/BookingTicket/utils/scan/scanProductValues.js +52 -64
  247. package/lib/solution/BookingTicket/utils/sessionCatalogStale.js +56 -58
  248. package/lib/solution/BookingTicket/utils/weighingProductSku.js +34 -48
  249. package/lib/solution/BuyTickets/index.js +67 -70
  250. package/lib/solution/BuyTickets/types.js +22 -38
  251. package/lib/solution/Checkout/index.js +1451 -1158
  252. package/lib/solution/Checkout/types.js +91 -61
  253. package/lib/solution/Checkout/utils/index.js +228 -156
  254. package/lib/solution/PlaceOrder/index.js +55 -0
  255. package/lib/solution/RegisterAndLogin/config.js +493 -460
  256. package/lib/solution/RegisterAndLogin/index.js +633 -630
  257. package/lib/solution/RegisterAndLogin/types.js +189 -76
  258. package/lib/solution/RegisterAndLogin/utils.js +183 -125
  259. package/lib/solution/Sales/index.js +328 -324
  260. package/lib/solution/Sales/types.js +27 -33
  261. package/lib/solution/ScanOrder/index.js +832 -864
  262. package/lib/solution/ScanOrder/types.js +33 -34
  263. package/lib/solution/ScanOrder/utils.js +409 -374
  264. package/lib/solution/ShopDiscount/index.js +226 -232
  265. package/lib/solution/ShopDiscount/types.js +15 -37
  266. package/lib/solution/ShopDiscount/utils.js +300 -172
  267. package/lib/solution/UnifiedBookingSales/index.js +1035 -1201
  268. package/lib/solution/UnifiedBookingSales/remoteOccupancyCache.js +99 -159
  269. package/lib/solution/UnifiedBookingSales/types.js +10 -32
  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);
@@ -421,17 +416,16 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
421
416
  writeDurationMs = +(performance.now() - writeStartedAt).toFixed(2);
422
417
  return _context6.finish(20);
423
418
  case 23:
424
- console.log("[Menu] \u5DF2\u5C06 ".concat(menuList.length, " \u6761\u9910\u724C\u6570\u636E\u4FDD\u5B58\u5230 IndexDB"));
425
419
  this.logInfo('餐牌数据已保存到 IndexDB', {
426
420
  menuCount: menuList.length,
427
421
  clearDurationMs: clearDurationMs,
428
422
  writeDurationMs: writeDurationMs,
429
423
  totalDurationMs: +(performance.now() - startedAt).toFixed(2)
430
424
  });
431
- _context6.next = 32;
425
+ _context6.next = 31;
432
426
  break;
433
- case 27:
434
- _context6.prev = 27;
427
+ case 26:
428
+ _context6.prev = 26;
435
429
  _context6.t0 = _context6["catch"](7);
436
430
  errorMessage = _context6.t0 instanceof Error ? _context6.t0.message : String(_context6.t0);
437
431
  console.error('[Menu] 保存数据到 IndexDB 失败:', _context6.t0);
@@ -442,11 +436,11 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
442
436
  totalDurationMs: +(performance.now() - startedAt).toFixed(2),
443
437
  error: errorMessage
444
438
  });
445
- case 32:
439
+ case 31:
446
440
  case "end":
447
441
  return _context6.stop();
448
442
  }
449
- }, _callee6, this, [[7, 27], [9,, 12, 15], [17,, 20, 23]]);
443
+ }, _callee6, this, [[7, 26], [9,, 12, 15], [17,, 20, 23]]);
450
444
  }));
451
445
  function saveMenuToIndexDB(_x4) {
452
446
  return _saveMenuToIndexDB.apply(this, arguments);
@@ -466,19 +460,17 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
466
460
  return _regeneratorRuntime().wrap(function _callee7$(_context7) {
467
461
  while (1) switch (_context7.prev = _context7.next) {
468
462
  case 0:
469
- console.log('[Menu] 开始预加载数据...');
470
463
  startTime = Date.now();
471
464
  this.logInfo('开始预加载数据');
472
- _context7.prev = 3;
473
- _context7.next = 6;
465
+ _context7.prev = 2;
466
+ _context7.next = 5;
474
467
  return this.loadMenuFromIndexDB();
475
- case 6:
468
+ case 5:
476
469
  cachedData = _context7.sent;
477
470
  if (!(cachedData && cachedData.length > 0)) {
478
- _context7.next = 15;
471
+ _context7.next = 13;
479
472
  break;
480
473
  }
481
- console.log("[Menu] \u4ECE IndexDB \u52A0\u8F7D\u4E86 ".concat(cachedData.length, " \u6761\u9910\u724C\u6570\u636E"));
482
474
  // 将缓存数据放入 store
483
475
  this.store.menuList = cloneDeep(cachedData);
484
476
  // 同步更新 Map 缓存
@@ -491,31 +483,30 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
491
483
  source: 'IndexDB'
492
484
  });
493
485
  return _context7.abrupt("return");
494
- case 15:
495
- console.log('[Menu] IndexDB 中没有缓存数据,从服务器加载...');
486
+ case 13:
496
487
  this.logInfo('IndexDB 中没有缓存数据,准备从服务器加载');
497
- _context7.next = 24;
488
+ _context7.next = 21;
498
489
  break;
499
- case 19:
500
- _context7.prev = 19;
501
- _context7.t0 = _context7["catch"](3);
490
+ case 16:
491
+ _context7.prev = 16;
492
+ _context7.t0 = _context7["catch"](2);
502
493
  errorMessage = _context7.t0 instanceof Error ? _context7.t0.message : String(_context7.t0);
503
494
  console.warn('[Menu] 从 IndexDB 加载数据失败:', _context7.t0);
504
495
  this.logWarning('从 IndexDB 加载数据失败,准备从服务器加载', {
505
496
  error: errorMessage
506
497
  });
507
- case 24:
508
- _context7.next = 26;
498
+ case 21:
499
+ _context7.next = 23;
509
500
  return this.loadMenuList();
510
- case 26:
501
+ case 23:
511
502
  menuList = _context7.sent;
512
503
  if (!(menuList && menuList.length > 0)) {
513
- _context7.next = 37;
504
+ _context7.next = 34;
514
505
  break;
515
506
  }
516
- _context7.next = 30;
507
+ _context7.next = 27;
517
508
  return this.saveMenuToIndexDB(menuList);
518
- case 30:
509
+ case 27:
519
510
  this.store.menuList = cloneDeep(menuList);
520
511
  // 同步更新 Map 缓存
521
512
  this.syncMenuMap();
@@ -526,18 +517,18 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
526
517
  duration: "".concat(_duration2, "ms"),
527
518
  source: 'Server'
528
519
  });
529
- _context7.next = 39;
520
+ _context7.next = 36;
530
521
  break;
531
- case 37:
522
+ case 34:
532
523
  _duration3 = Date.now() - startTime;
533
524
  this.logWarning('预加载完成但未获取到数据', {
534
525
  duration: "".concat(_duration3, "ms")
535
526
  });
536
- case 39:
527
+ case 36:
537
528
  case "end":
538
529
  return _context7.stop();
539
530
  }
540
- }, _callee7, this, [[3, 19]]);
531
+ }, _callee7, this, [[2, 16]]);
541
532
  }));
542
533
  function preload() {
543
534
  return _preload.apply(this, arguments);
@@ -116,7 +116,6 @@ export var OrderModule = /*#__PURE__*/function (_BaseModule) {
116
116
  case 0:
117
117
  changedOrders = _args.length > 0 && _args[0] !== undefined ? _args[0] : [];
118
118
  source = _args.length > 1 ? _args[1] : undefined;
119
- console.log('触发emitOrdersChanged');
120
119
  payload = {
121
120
  list: this.store.list,
122
121
  changedOrders: changedOrders.map(function (order) {
@@ -124,9 +123,9 @@ export var OrderModule = /*#__PURE__*/function (_BaseModule) {
124
123
  }),
125
124
  source: source
126
125
  };
127
- _context.next = 6;
126
+ _context.next = 5;
128
127
  return this.core.effects.emit(OrderHooks.onOrdersChanged, payload);
129
- case 6:
128
+ case 5:
130
129
  case "end":
131
130
  return _context.stop();
132
131
  }
@@ -2183,7 +2182,6 @@ export var OrderModule = /*#__PURE__*/function (_BaseModule) {
2183
2182
  pubsub: {
2184
2183
  callback: function callback(res) {
2185
2184
  var _message$id, _message$order_id, _message$type;
2186
- console.log('orderDataSource', res);
2187
2185
  var pubsubReceivedAt = Date.now();
2188
2186
  var message = _this14.normalizeOrderSyncMessage(res);
2189
2187
  if (!message) return;
@@ -125,9 +125,7 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
125
125
  app = appPlugin.getApp();
126
126
  this.dbManager = app.dbManager;
127
127
  this.logger = app.logger;
128
- if (this.dbManager) {
129
- console.log('[Products] IndexDB Manager 已初始化');
130
- } else {
128
+ if (this.dbManager) {} else {
131
129
  console.warn('[Products] IndexDB Manager 未找到');
132
130
  }
133
131
  }
@@ -859,14 +857,13 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
859
857
  _context7.prev = 29;
860
858
  _context7.t0 = _context7["catch"](4);
861
859
  errorMessage = _context7.t0 instanceof Error ? _context7.t0.message : String(_context7.t0);
862
- console.log("[ProductsModule] \uD83C\uDF10 ERROR", _context7.t0);
863
860
  this.logError('prepareProductsWithPrice 处理失败', {
864
861
  schedule_date: schedule_date,
865
862
  error: errorMessage
866
863
  });
867
- case 34:
864
+ case 33:
868
865
  return _context7.abrupt("return", []);
869
- case 35:
866
+ case 34:
870
867
  case "end":
871
868
  return _context7.stop();
872
869
  }
@@ -1095,10 +1092,8 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1095
1092
  // 创建 legacy 报价单格式化器
1096
1093
  var legacyPriceFormatter = function legacyPriceFormatter(products, context) {
1097
1094
  if (!context.priceData || context.priceData.length === 0) {
1098
- console.log('[ProductsModule] 💰 没有价格数据,跳过 legacy 报价单价格应用');
1099
1095
  return products;
1100
1096
  }
1101
- console.log("[ProductsModule] \uD83D\uDCB0 \u5E94\u7528 legacy \u62A5\u4EF7\u5355\u4EF7\u683C\u5230 ".concat(products.length, " \u4E2A\u5546\u54C1"));
1102
1097
  return applyPriceDataToProducts(products, context.priceData);
1103
1098
  };
1104
1099
  var i18nFormatter = function i18nFormatter(products, context) {
@@ -1114,7 +1109,6 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1114
1109
  this.formatters.push(i18nFormatter);
1115
1110
  this.formatters.push(detailValueFormatter);
1116
1111
  this.isBuiltinFormatterRegistered = true;
1117
- console.log('[ProductsModule] ✅ 内置商品格式化器已注册(智能定价优先)');
1118
1112
  }
1119
1113
 
1120
1114
  /**
@@ -1162,11 +1156,9 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1162
1156
  // 插入到内置智能定价格式化器之后;legacy 报价单启用时需跳过它。
1163
1157
  var insertIndex = this.isBuiltinFormatterRegistered ? this.isLegacyPriceFormatterEnabled ? 2 : 1 : 0;
1164
1158
  this.formatters.splice(insertIndex, 0, formatter);
1165
- 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"));
1166
1159
  } else {
1167
1160
  // 追加到末尾
1168
1161
  this.formatters.push(formatter);
1169
- console.log("[ProductsModule] \uD83D\uDCCC \u5DF2\u6CE8\u518C\u683C\u5F0F\u5316\u5668\uFF0C\u5F53\u524D\u5171 ".concat(this.formatters.length, " \u4E2A"));
1170
1162
  }
1171
1163
  }
1172
1164
 
@@ -1182,11 +1174,9 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1182
1174
  // 保留 legacy 兜底(如果启用)和智能定价格式化器。
1183
1175
  var builtinCount = this.isLegacyPriceFormatterEnabled ? 2 : 1;
1184
1176
  this.formatters = this.formatters.slice(0, builtinCount);
1185
- console.log('[ProductsModule] 🧹 已清空自定义格式化器,保留内置智能定价格式化器');
1186
1177
  } else {
1187
1178
  this.formatters = [];
1188
1179
  this.isBuiltinFormatterRegistered = false;
1189
- console.log('[ProductsModule] 🧹 已清空所有格式化器');
1190
1180
  }
1191
1181
  }
1192
1182
 
@@ -1202,7 +1192,6 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1202
1192
  var keys = Array.from(this.productsPriceCache.keys());
1203
1193
  var oldestKey = keys[0];
1204
1194
  this.productsPriceCache.delete(oldestKey);
1205
- console.log("[ProductsModule] \uD83E\uDDF9 \u6E05\u7406\u8FC7\u671F\u5546\u54C1\u4EF7\u683C\u7F13\u5B58: ".concat(oldestKey));
1206
1195
  }
1207
1196
  }
1208
1197
 
@@ -1216,7 +1205,6 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1216
1205
  this.productsPriceCache.clear();
1217
1206
  this.quotationScheduleCache.clear();
1218
1207
  this.quotationScheduleCacheLoaded = false;
1219
- console.log('[ProductsModule] 🗑️ 商品价格缓存已清空');
1220
1208
  }
1221
1209
 
1222
1210
  /**
@@ -1744,33 +1732,31 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
1744
1732
 
1745
1733
  // 同时清空 IndexDB 中的所有数据(包括商品和元数据)
1746
1734
  if (!this.dbManager) {
1747
- _context17.next = 16;
1735
+ _context17.next = 15;
1748
1736
  break;
1749
1737
  }
1750
1738
  _context17.prev = 4;
1751
1739
  _context17.next = 7;
1752
1740
  return this.dbManager.clear(INDEXDB_STORE_NAME);
1753
1741
  case 7:
1754
- console.log('[Products] IndexDB 缓存已清空');
1755
1742
  this.logInfo('IndexDB 缓存已清空');
1756
- _context17.next = 16;
1743
+ _context17.next = 15;
1757
1744
  break;
1758
- case 11:
1759
- _context17.prev = 11;
1745
+ case 10:
1746
+ _context17.prev = 10;
1760
1747
  _context17.t0 = _context17["catch"](4);
1761
1748
  errorMessage = _context17.t0 instanceof Error ? _context17.t0.message : String(_context17.t0);
1762
1749
  console.error('[Products] 清空 IndexDB 缓存失败:', _context17.t0);
1763
1750
  this.logError('清空 IndexDB 缓存失败', {
1764
1751
  error: errorMessage
1765
1752
  });
1766
- case 16:
1767
- console.log('[Products] 缓存已清空');
1753
+ case 15:
1768
1754
  this.logInfo('缓存清空完成');
1769
- case 18:
1755
+ case 16:
1770
1756
  case "end":
1771
1757
  return _context17.stop();
1772
1758
  }
1773
- }, _callee17, this, [[4, 11]]);
1759
+ }, _callee17, this, [[4, 10]]);
1774
1760
  }));
1775
1761
  function clear() {
1776
1762
  return _clear.apply(this, arguments);
@@ -2141,23 +2127,21 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
2141
2127
  return _regeneratorRuntime().wrap(function _callee24$(_context24) {
2142
2128
  while (1) switch (_context24.prev = _context24.next) {
2143
2129
  case 0:
2144
- console.log('[Products] 开始预加载数据...');
2145
2130
  tTotal = performance.now();
2146
2131
  this.logInfo('开始预加载数据');
2147
- _context24.prev = 3;
2132
+ _context24.prev = 2;
2148
2133
  tIndexDB = performance.now();
2149
- _context24.next = 7;
2134
+ _context24.next = 6;
2150
2135
  return this.loadProductsFromIndexDB();
2151
- case 7:
2136
+ case 6:
2152
2137
  cachedData = _context24.sent;
2153
2138
  perfMark('preload.loadFromIndexDB', performance.now() - tIndexDB, {
2154
2139
  count: (_cachedData$length = cachedData === null || cachedData === void 0 ? void 0 : cachedData.length) !== null && _cachedData$length !== void 0 ? _cachedData$length : 0
2155
2140
  });
2156
2141
  if (!(cachedData && cachedData.length > 0)) {
2157
- _context24.next = 20;
2142
+ _context24.next = 18;
2158
2143
  break;
2159
2144
  }
2160
- console.log("[Products] \u4ECE IndexDB \u52A0\u8F7D\u4E86 ".concat(cachedData.length, " \u4E2A\u5546\u54C1"));
2161
2145
  // IndexDB 反序列化的数据已经是全新的,无需 cloneDeep
2162
2146
  this.store.list = cachedData;
2163
2147
  tSync = performance.now();
@@ -2178,26 +2162,25 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
2178
2162
  });
2179
2163
  this.lastPreloadCompletedAtMs = Date.now();
2180
2164
  return _context24.abrupt("return");
2181
- case 20:
2182
- console.log('[Products] IndexDB 中没有缓存数据,从服务器加载...');
2165
+ case 18:
2183
2166
  this.logInfo('IndexDB 中没有缓存数据,准备从服务器加载');
2184
- _context24.next = 29;
2167
+ _context24.next = 26;
2185
2168
  break;
2186
- case 24:
2187
- _context24.prev = 24;
2188
- _context24.t0 = _context24["catch"](3);
2169
+ case 21:
2170
+ _context24.prev = 21;
2171
+ _context24.t0 = _context24["catch"](2);
2189
2172
  errorMessage = _context24.t0 instanceof Error ? _context24.t0.message : String(_context24.t0);
2190
2173
  console.warn('[Products] 从 IndexDB 加载数据失败:', _context24.t0);
2191
2174
  this.logWarning('从 IndexDB 加载数据失败,准备从服务器加载', {
2192
2175
  error: errorMessage
2193
2176
  });
2194
- case 29:
2177
+ case 26:
2195
2178
  tServer = performance.now();
2196
- _context24.next = 32;
2179
+ _context24.next = 29;
2197
2180
  return this.loadProductsByServer({
2198
2181
  trigger: 'preload'
2199
2182
  });
2200
- case 32:
2183
+ case 29:
2201
2184
  products = _context24.sent;
2202
2185
  perfMark('preload.loadFromServer', performance.now() - tServer, {
2203
2186
  count: (_products$length3 = products === null || products === void 0 ? void 0 : products.length) !== null && _products$length3 !== void 0 ? _products$length3 : 0
@@ -2230,11 +2213,11 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
2230
2213
  duration: "".concat(Math.round(performance.now() - tTotal), "ms")
2231
2214
  });
2232
2215
  }
2233
- case 35:
2216
+ case 32:
2234
2217
  case "end":
2235
2218
  return _context24.stop();
2236
2219
  }
2237
- }, _callee24, this, [[3, 24]]);
2220
+ }, _callee24, this, [[2, 21]]);
2238
2221
  }));
2239
2222
  function preload() {
2240
2223
  return _preload.apply(this, arguments);
@@ -2278,7 +2261,6 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
2278
2261
  return function (message) {
2279
2262
  var data = (message === null || message === void 0 ? void 0 : message.data) || message;
2280
2263
  if (!data) return;
2281
- console.log("[ProductsModule] \u6536\u5230\u540C\u6B65\u6D88\u606F [".concat(channelKey, "]:"), data);
2282
2264
  _this11.logInfo('收到同步消息', {
2283
2265
  channelKey: channelKey,
2284
2266
  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);
@@ -798,17 +798,16 @@ export var ResourceModule = /*#__PURE__*/function (_BaseModule) {
798
798
  });
799
799
  case 4:
800
800
  result = _context8.sent;
801
- console.log('result', result);
802
801
  this.logInfo('setupResourceSync: 资源列表查询结果', {
803
802
  result: result
804
803
  });
805
804
  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)) {
806
- _context8.next = 10;
805
+ _context8.next = 9;
807
806
  break;
808
807
  }
809
- _context8.next = 10;
808
+ _context8.next = 9;
810
809
  return this.mergeResourcesToStore(result === null || result === void 0 || (_result$data2 = result.data) === null || _result$data2 === void 0 ? void 0 : _result$data2.list);
811
- case 10:
810
+ case 9:
812
811
  case "end":
813
812
  return _context8.stop();
814
813
  }