@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
@@ -1,42 +1,15 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __export = (target, all) => {
8
- for (var name in all)
9
- __defProp(target, name, { get: all[name], enumerable: true });
10
- };
11
- var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from))
14
- if (!__hasOwnProp.call(to, key) && key !== except)
15
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
- }
17
- return to;
18
- };
19
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
- // If the importer is in node compatibility mode or this is not an ESM
21
- // file that has been converted to a CommonJS file using a Babel-
22
- // compatible transform (i.e. "__esModule" has not been set), then set
23
- // "default" to the CommonJS "module.exports" for node compatibility.
24
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
- mod
26
- ));
27
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ "use strict";
28
2
 
29
- // src/model/strategy/adapter/walletPass/evaluator.ts
30
- var evaluator_exports = {};
31
- __export(evaluator_exports, {
32
- WalletPassEvaluator: () => WalletPassEvaluator
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
33
5
  });
34
- module.exports = __toCommonJS(evaluator_exports);
35
- var import__ = require("../../index");
36
- var import_utils = require("./utils");
37
- var import_locales = require("./locales");
38
- var import_decimal = __toESM(require("decimal.js"));
39
- var defaultStrategyMetadataCustom = {
6
+ exports.WalletPassEvaluator = void 0;
7
+ var _index = require("../../index");
8
+ var _utils = require("./utils");
9
+ var _locales = require("./locales");
10
+ var _decimal = _interopRequireDefault(require("decimal.js"));
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
+ const defaultStrategyMetadataCustom = {
40
13
  maxDeductionAmount: 99999,
41
14
  maxUsagePerOrder: 0,
42
15
  allowCrossProduct: true,
@@ -45,34 +18,54 @@ var defaultStrategyMetadataCustom = {
45
18
  maxPassesPerItem: 0,
46
19
  deductOptionPrice: false
47
20
  };
48
- var FIELD_REASON_CODE_MAP = {
49
- orderTotalAmount: "order_total_amount_not_enough",
50
- applicableProductTotalAmount: "applicable_product_total_amount_not_enough",
51
- applicableProductCount: "applicable_product_count_not_enough"
21
+
22
+ /**
23
+ * 条件 field → reasonCode 映射
24
+ * 用于将策略引擎返回的 failedField 转换为本地化文案 key
25
+ */
26
+ const FIELD_REASON_CODE_MAP = {
27
+ orderTotalAmount: 'order_total_amount_not_enough',
28
+ applicableProductTotalAmount: 'applicable_product_total_amount_not_enough',
29
+ applicableProductCount: 'applicable_product_count_not_enough'
52
30
  };
53
- var AMOUNT_FIELDS = /* @__PURE__ */ new Set([
54
- "orderTotalAmount",
55
- "applicableProductTotalAmount"
56
- ]);
57
- function formatReason(template, value, currency = "") {
58
- if (!template)
59
- return template;
60
- const v = value === void 0 || value === null ? "" : String(value);
61
- const c = currency === void 0 || currency === null ? "" : String(currency);
31
+
32
+ /**
33
+ * 金额类型 field 集合(需要在文案前拼货币符号)
34
+ */
35
+ const AMOUNT_FIELDS = new Set(['orderTotalAmount', 'applicableProductTotalAmount']);
36
+
37
+ /**
38
+ * 用阈值与货币符号替换文案中的占位符
39
+ * 支持占位符:{value} / ${value} / {currency}
40
+ */
41
+ function formatReason(template, value, currency = '') {
42
+ if (!template) return template;
43
+ const v = value === undefined || value === null ? '' : String(value);
44
+ const c = currency === undefined || currency === null ? '' : String(currency);
45
+ // 注意:必须先替换 value,再替换 currency
46
+ // 否则 currency 注入的 "$" 会被后续的 /\$\{value\}/ 正则误吞
47
+ // 使用函数作为替换参数,避免替换串中的 "$" 被 String.prototype.replace
48
+ // 当作特殊序列(如 $$ -> $、$& 等)处理
62
49
  return template.replace(/\$\{value\}/g, () => v).replace(/\{value\}/g, () => v).replace(/\{currency\}/g, () => c);
63
50
  }
64
- var WalletPassEvaluator = class {
51
+
52
+ /**
53
+ * Wallet Pass 评估器
54
+ * 用于评估哪些 voucher 可以在当前订单中使用
55
+ */
56
+ class WalletPassEvaluator {
57
+ engine;
58
+ strategyConfigs = [];
59
+ locale = 'en';
60
+ otherParams = {};
65
61
  constructor() {
66
- this.strategyConfigs = [];
67
- this.locale = "en";
68
- this.otherParams = {};
69
- this.engine = new import__.StrategyEngine({
62
+ this.engine = new _index.StrategyEngine({
70
63
  debug: false,
71
64
  enableTrace: false
72
65
  });
73
66
  }
74
67
  setStrategyConfigs(strategyConfigs) {
75
- const newStrategyConfigs = strategyConfigs.filter((item) => item.metadata.type === "wallet_pass");
68
+ const newStrategyConfigs = strategyConfigs.filter(item => item.metadata.type === 'wallet_pass');
76
69
  this.strategyConfigs = newStrategyConfigs;
77
70
  }
78
71
  getStrategyConfigs() {
@@ -85,9 +78,9 @@ var WalletPassEvaluator = class {
85
78
  this.otherParams = otherParams;
86
79
  }
87
80
  getText(key) {
88
- var _a, _b;
89
- return (_b = (_a = import_locales.locales) == null ? void 0 : _a[this.locale]) == null ? void 0 : _b[key];
81
+ return _locales.locales?.[this.locale]?.[key];
90
82
  }
83
+
91
84
  /**
92
85
  * 搜索券的格式
93
86
  * @param input 输入
@@ -95,20 +88,19 @@ var WalletPassEvaluator = class {
95
88
  */
96
89
  searchVoucherFormat(input) {
97
90
  const results = this.evaluate(input);
98
- return results.map((item) => {
99
- var _a, _b;
91
+ return results.map(item => {
100
92
  if (item.isApplicable) {
101
93
  return {
102
94
  ...item.voucher,
103
95
  config: {
104
- ...(_a = item == null ? void 0 : item.strategyResult) == null ? void 0 : _a.config.metadata.custom
96
+ ...item?.strategyResult?.config.metadata.custom
105
97
  }
106
98
  };
107
99
  } else {
108
100
  return {
109
101
  ...item.voucher,
110
102
  config: {
111
- ...(_b = item == null ? void 0 : item.strategyResult) == null ? void 0 : _b.config.metadata.custom
103
+ ...item?.strategyResult?.config.metadata.custom
112
104
  },
113
105
  _unified_available_status: 0,
114
106
  reason: item.reason,
@@ -117,20 +109,28 @@ var WalletPassEvaluator = class {
117
109
  }
118
110
  });
119
111
  }
112
+
120
113
  /**
121
114
  * 评估可用的 vouchers
122
115
  */
123
116
  evaluate(input) {
124
- var _a, _b, _c, _d, _e, _f, _g;
125
- const { orderTotalAmount, products, vouchers, strategyConfigs } = input;
126
- const productIds = products.map((p) => p.product_id);
117
+ const {
118
+ orderTotalAmount,
119
+ products,
120
+ vouchers,
121
+ strategyConfigs
122
+ } = input;
123
+
124
+ // 提取订单中的商品ID
125
+ const productIds = products.map(p => p.product_id);
127
126
  const results = [];
127
+
128
+ // 遍历每个 voucher 进行评估
128
129
  for (const voucher of vouchers) {
129
- const applicableStrategies = this.findApplicableStrategies(
130
- voucher,
131
- strategyConfigs || this.strategyConfigs
132
- );
130
+ // 查找适用此 voucher 的策略配置
131
+ const applicableStrategies = this.findApplicableStrategies(voucher, strategyConfigs || this.strategyConfigs);
133
132
  if (applicableStrategies.length === 0) {
133
+ // 没有匹配的策略 默认可用
134
134
  results.push({
135
135
  voucher,
136
136
  isApplicable: true,
@@ -138,8 +138,8 @@ var WalletPassEvaluator = class {
138
138
  maxDeduction: 0,
139
139
  deductTaxAndFee: true,
140
140
  applicableProductIds: [],
141
- reason: "",
142
- reasonCode: "",
141
+ reason: '',
142
+ reasonCode: '',
143
143
  strategyResult: {
144
144
  config: {
145
145
  metadata: {
@@ -152,13 +152,20 @@ var WalletPassEvaluator = class {
152
152
  });
153
153
  continue;
154
154
  }
155
+
156
+ // 对每个策略进行评估(取第一个匹配的策略)
155
157
  const strategy = applicableStrategies[0];
156
- const applicableProductIds = (0, import_utils.getApplicableProductIds)(voucher);
157
- const { applicableTotal, applicableCount } = this.calculateApplicableProducts(
158
- products,
159
- applicableProductIds,
160
- ((_b = (_a = strategy == null ? void 0 : strategy.metadata) == null ? void 0 : _a.custom) == null ? void 0 : _b.deductTaxAndFee) ?? true
161
- );
158
+
159
+ // voucher 中获取适用商品ID
160
+ const applicableProductIds = (0, _utils.getApplicableProductIds)(voucher);
161
+
162
+ // 计算适用商品的总金额和数量
163
+ const {
164
+ applicableTotal,
165
+ applicableCount
166
+ } = this.calculateApplicableProducts(products, applicableProductIds, strategy?.metadata?.custom?.deductTaxAndFee ?? true);
167
+
168
+ // 准备运行时上下文
162
169
  const context = {
163
170
  entities: {
164
171
  voucher,
@@ -169,7 +176,7 @@ var WalletPassEvaluator = class {
169
176
  }
170
177
  },
171
178
  attributes: {
172
- orderTotalAmount,
179
+ orderTotalAmount: orderTotalAmount,
173
180
  applicableProductTotalAmount: applicableTotal,
174
181
  applicableProductCount: applicableCount,
175
182
  voucherProductId: voucher.product_id,
@@ -179,7 +186,11 @@ var WalletPassEvaluator = class {
179
186
  timestamp: Date.now()
180
187
  }
181
188
  };
189
+
190
+ // 执行策略评估
182
191
  const evaluationResult = this.engine.evaluate(strategy, context);
192
+
193
+ // 从策略配置中获取业务配置
183
194
  const businessConfig = strategy.metadata.custom || {};
184
195
  const maxDeduction = businessConfig.maxDeductionAmount || 0;
185
196
  const canUseCount = businessConfig.maxUsagePerOrder || 0;
@@ -195,26 +206,29 @@ var WalletPassEvaluator = class {
195
206
  strategyResult: evaluationResult
196
207
  });
197
208
  } else {
198
- let reasonCode = "not_meet_the_required_conditions";
199
- let thresholdValue = void 0;
200
- const failedField = (_c = evaluationResult.matched) == null ? void 0 : _c.failedField;
201
- const failedRule = (_e = (_d = evaluationResult.matched) == null ? void 0 : _d.failedRules) == null ? void 0 : _e[0];
209
+ // 优先根据失败的 field 映射到具体的 reasonCode(更精确的失败原因)
210
+ let reasonCode = 'not_meet_the_required_conditions';
211
+ let thresholdValue = undefined;
212
+ const failedField = evaluationResult.matched?.failedField;
213
+ const failedRule = evaluationResult.matched?.failedRules?.[0];
202
214
  if (failedField && FIELD_REASON_CODE_MAP[failedField]) {
203
215
  reasonCode = FIELD_REASON_CODE_MAP[failedField];
204
- thresholdValue = failedRule == null ? void 0 : failedRule.value;
216
+ thresholdValue = failedRule?.value;
205
217
  } else if (evaluationResult.code) {
218
+ // 兜底:保留原有 code → reasonCode 映射
206
219
  const codeMapping = {
207
- INSUFFICIENT_AMOUNT: "not_meet_the_required_conditions",
208
- USAGE_LIMIT_EXCEEDED: "usage_limit_reached",
209
- CHANNEL_NOT_ALLOWED: "not_available_for_this_channel",
210
- ORDER_TYPE_NOT_ALLOWED: "not_valid_for_this_order_type",
211
- DEDUCTION_LIMIT_EXCEEDED: "exceeds_the_maximum_deduction_limit"
220
+ INSUFFICIENT_AMOUNT: 'not_meet_the_required_conditions',
221
+ USAGE_LIMIT_EXCEEDED: 'usage_limit_reached',
222
+ CHANNEL_NOT_ALLOWED: 'not_available_for_this_channel',
223
+ ORDER_TYPE_NOT_ALLOWED: 'not_valid_for_this_order_type',
224
+ DEDUCTION_LIMIT_EXCEEDED: 'exceeds_the_maximum_deduction_limit'
212
225
  };
213
- reasonCode = codeMapping[evaluationResult.code] || "not_meet_the_required_conditions";
226
+ reasonCode = codeMapping[evaluationResult.code] || 'not_meet_the_required_conditions';
214
227
  }
215
228
  const rawText = this.getText(reasonCode);
216
- const currency = failedField && AMOUNT_FIELDS.has(failedField) ? ((_g = (_f = this.otherParams) == null ? void 0 : _f.getData) == null ? void 0 : _g.call(_f, "shop_symbol")) || "" : "";
217
- const reason = thresholdValue !== void 0 ? formatReason(rawText, thresholdValue, currency) : rawText;
229
+ // 金额类型字段:从 otherParams.getData 取货币符号;非金额或取不到则留空
230
+ const currency = failedField && AMOUNT_FIELDS.has(failedField) ? this.otherParams?.getData?.('shop_symbol') || '' : '';
231
+ const reason = thresholdValue !== undefined ? formatReason(rawText, thresholdValue, currency) : rawText;
218
232
  results.push({
219
233
  voucher,
220
234
  isApplicable: false,
@@ -223,36 +237,47 @@ var WalletPassEvaluator = class {
223
237
  deductTaxAndFee: false,
224
238
  applicableProductIds: [],
225
239
  reason,
226
- reasonCode,
240
+ reasonCode: reasonCode,
227
241
  strategyResult: evaluationResult
228
242
  });
229
243
  }
230
244
  }
231
245
  return results;
232
246
  }
247
+
233
248
  /** 检查代金券/折扣卡是否可用 并返回config */
234
249
  checkVoucherAvailability(input) {
235
- var _a, _b, _c, _d, _e;
236
- const { orderTotalAmount, products, vouchers } = input;
250
+ const {
251
+ orderTotalAmount,
252
+ products,
253
+ vouchers
254
+ } = input;
237
255
  const results = this.evaluate(input);
238
- const isAvailable = ((_a = results[0]) == null ? void 0 : _a.isApplicable) || false;
256
+ const isAvailable = results[0]?.isApplicable || false;
239
257
  return {
240
258
  isAvailable,
241
259
  config: {
242
- ...(_e = (_d = (_c = (_b = results[0]) == null ? void 0 : _b.strategyResult) == null ? void 0 : _c.config) == null ? void 0 : _d.metadata) == null ? void 0 : _e.custom
260
+ ...results[0]?.strategyResult?.config?.metadata?.custom
243
261
  }
244
262
  };
245
263
  }
264
+
246
265
  /**
247
266
  * 获取推荐券
248
267
  * @param input 输入
249
268
  * @returns 返回推荐券列表
250
269
  */
251
270
  getRecommendedVouchers(input) {
252
- const { orderTotalAmount, products, vouchers } = input;
271
+ const {
272
+ orderTotalAmount,
273
+ products,
274
+ vouchers
275
+ } = input;
276
+ // 基于后端返回的状态不可用券
253
277
  const noApplicableVoucher = [];
278
+ // 基于后端返回的状态可用券
254
279
  const applicableVoucher = [];
255
- vouchers.forEach((voucher) => {
280
+ vouchers.forEach(voucher => {
256
281
  if (voucher.unified_available_status === 1) {
257
282
  applicableVoucher.push(voucher);
258
283
  } else {
@@ -264,17 +289,17 @@ var WalletPassEvaluator = class {
264
289
  vouchers: applicableVoucher
265
290
  });
266
291
  const newVouchers = [];
267
- results.forEach((item) => {
268
- var _a, _b, _c;
292
+ results.forEach(item => {
269
293
  if (item.isApplicable) {
270
294
  newVouchers.push({
271
295
  ...item.voucher,
272
296
  config: {
273
297
  ...defaultStrategyMetadataCustom,
274
- ...((_c = (_b = (_a = item == null ? void 0 : item.strategyResult) == null ? void 0 : _a.config) == null ? void 0 : _b.metadata) == null ? void 0 : _c.custom) || {}
298
+ ...(item?.strategyResult?.config?.metadata?.custom || {})
275
299
  }
276
300
  });
277
301
  } else {
302
+ // 不可用的券,添加原因信息
278
303
  noApplicableVoucher.push({
279
304
  ...item.voucher,
280
305
  _unified_available_status: 0,
@@ -283,13 +308,12 @@ var WalletPassEvaluator = class {
283
308
  });
284
309
  }
285
310
  });
286
- const { recommended, transformList } = this.processVouchers(
287
- newVouchers,
288
- orderTotalAmount,
289
- products
290
- );
311
+ const {
312
+ recommended,
313
+ transformList
314
+ } = this.processVouchers(newVouchers, orderTotalAmount, products);
291
315
  const recommendedAmount = recommended.reduce((sum, item) => {
292
- return new import_decimal.default(sum).add(item._available_max_amount || 0).toNumber();
316
+ return new _decimal.default(sum).add(item._available_max_amount || 0).toNumber();
293
317
  }, 0);
294
318
  return {
295
319
  // 推荐券总金额
@@ -311,6 +335,7 @@ var WalletPassEvaluator = class {
311
335
  }
312
336
  return voucher;
313
337
  }
338
+
314
339
  /**
315
340
  * 优惠券处理函数
316
341
  * @param applicableVouchers 可用的券列表
@@ -319,16 +344,13 @@ var WalletPassEvaluator = class {
319
344
  * @returns 返回推荐券列表和全部列表,每个券包含 _available_max_amount 和 _unified_available_status
320
345
  */
321
346
  processVouchers(vouchers, orderTotalAmount, products) {
322
- const result = (0, import_utils.processVouchers)(vouchers, orderTotalAmount, products);
347
+ const result = (0, _utils.processVouchers)(vouchers, orderTotalAmount, products);
323
348
  return {
324
- recommended: result.recommended.map(
325
- (item) => this.enhanceWithReason(item)
326
- ),
327
- transformList: result.transformList.map(
328
- (item) => this.enhanceWithReason(item)
329
- )
349
+ recommended: result.recommended.map(item => this.enhanceWithReason(item)),
350
+ transformList: result.transformList.map(item => this.enhanceWithReason(item))
330
351
  };
331
352
  }
353
+
332
354
  /**
333
355
  * 重新计算优惠券状态(基于已选券的增量计算)
334
356
  * @param allVouchers 所有原始券列表
@@ -338,47 +360,44 @@ var WalletPassEvaluator = class {
338
360
  * @returns 返回更新后的所有券列表和已选券的详细抵扣信息
339
361
  */
340
362
  recalculateVouchers(allVouchers, selectedVouchers, orderTotalAmount, products) {
341
- const result = (0, import_utils.recalculateVouchers)(
342
- allVouchers,
343
- selectedVouchers,
344
- orderTotalAmount,
345
- products
346
- );
363
+ const result = (0, _utils.recalculateVouchers)(allVouchers, selectedVouchers, orderTotalAmount, products);
347
364
  return {
348
- allWithUpdatedStatus: result.allWithUpdatedStatus.map(
349
- (item) => this.enhanceWithReason(item)
350
- ),
351
- selectedWithDetails: result.selectedWithDetails.map(
352
- (item) => this.enhanceWithReason(item)
353
- )
365
+ allWithUpdatedStatus: result.allWithUpdatedStatus.map(item => this.enhanceWithReason(item)),
366
+ selectedWithDetails: result.selectedWithDetails.map(item => this.enhanceWithReason(item))
354
367
  };
355
368
  }
369
+
356
370
  /**
357
371
  * 查找适用于指定 voucher 的策略配置
358
372
  */
359
373
  findApplicableStrategies(voucher, strategyConfigs) {
360
- return strategyConfigs.filter((config) => {
374
+ return strategyConfigs.filter(config => {
375
+ // 检查策略的 conditions 中是否包含匹配此 voucher 的规则
361
376
  return this.checkVoucherInStrategy(voucher.product_id, config);
362
377
  });
363
378
  }
379
+
364
380
  /**
365
381
  * 检查策略中是否包含指定的 voucher ID
366
382
  */
367
383
  checkVoucherInStrategy(voucherProductId, config) {
368
384
  const rules = config.conditions.rules;
369
385
  for (const rule of rules) {
370
- if ("operator" in rule && "rules" in rule) {
386
+ // 如果是条件组,递归检查
387
+ if ('operator' in rule && 'rules' in rule) {
371
388
  if (this.checkVoucherInConditionGroup(voucherProductId, rule)) {
372
389
  return true;
373
390
  }
374
391
  } else {
392
+ // 检查是否是 voucherProductId 字段的规则
375
393
  const conditionRule = rule;
376
- if (conditionRule.field === "voucherProductId" && conditionRule.operator === "in" && Array.isArray(conditionRule.value)) {
394
+ if (conditionRule.field === 'voucherProductId' && conditionRule.operator === 'in' && Array.isArray(conditionRule.value)) {
377
395
  if (conditionRule.value.includes(voucherProductId)) {
378
396
  return true;
379
397
  }
380
398
  }
381
- if (conditionRule.field === "voucherProductId" && (conditionRule.operator === "=" || conditionRule.operator === "==")) {
399
+ // 支持等于判断
400
+ if (conditionRule.field === 'voucherProductId' && (conditionRule.operator === '=' || conditionRule.operator === '==')) {
382
401
  if (conditionRule.value === voucherProductId) {
383
402
  return true;
384
403
  }
@@ -387,22 +406,23 @@ var WalletPassEvaluator = class {
387
406
  }
388
407
  return false;
389
408
  }
409
+
390
410
  /**
391
411
  * 递归检查条件组中是否包含 voucher ID
392
412
  */
393
413
  checkVoucherInConditionGroup(voucherProductId, group) {
394
414
  for (const rule of group.rules) {
395
- if ("operator" in rule && "rules" in rule) {
415
+ if ('operator' in rule && 'rules' in rule) {
396
416
  if (this.checkVoucherInConditionGroup(voucherProductId, rule)) {
397
417
  return true;
398
418
  }
399
419
  } else {
400
- if (rule.field === "voucherProductId" && rule.operator === "in" && Array.isArray(rule.value)) {
420
+ if (rule.field === 'voucherProductId' && rule.operator === 'in' && Array.isArray(rule.value)) {
401
421
  if (rule.value.includes(voucherProductId)) {
402
422
  return true;
403
423
  }
404
424
  }
405
- if (rule.field === "voucherProductId" && (rule.operator === "=" || rule.operator === "==")) {
425
+ if (rule.field === 'voucherProductId' && (rule.operator === '=' || rule.operator === '==')) {
406
426
  if (rule.value === voucherProductId) {
407
427
  return true;
408
428
  }
@@ -411,43 +431,53 @@ var WalletPassEvaluator = class {
411
431
  }
412
432
  return false;
413
433
  }
434
+
414
435
  /**
415
436
  * 计算适用商品的总金额和数量
416
437
  */
417
438
  calculateApplicableProducts(products, applicableProductIds, deductTaxAndFee) {
418
439
  let total = 0;
419
440
  let count = 0;
441
+
442
+ // 如果为空数组,不适用任何商品
420
443
  if (applicableProductIds !== null && applicableProductIds.length === 0) {
421
- return { applicableTotal: 0, applicableCount: 0 };
444
+ return {
445
+ applicableTotal: 0,
446
+ applicableCount: 0
447
+ };
422
448
  }
423
- products.forEach((product) => {
424
- const productQuantity = (0, import_utils.getProductQuantity)(product);
449
+ products.forEach(product => {
450
+ const productQuantity = (0, _utils.getProductQuantity)(product);
451
+
452
+ // 检查主商品是否适用
425
453
  const isMainProductApplicable = applicableProductIds === null || applicableProductIds.includes(product.product_id);
426
454
  if (isMainProductApplicable) {
427
- total += (0, import_utils.getMainProductPrice)(product, deductTaxAndFee) * productQuantity;
455
+ // 计算主商品价格(包含加减价子商品)
456
+ total += (0, _utils.getMainProductPrice)(product, deductTaxAndFee) * productQuantity;
428
457
  count += productQuantity;
429
458
  }
459
+
460
+ // 检查原价子商品(需要单独判断适用性)
430
461
  if (product.product_bundle && product.product_bundle.length > 0) {
431
- product.product_bundle.forEach((bundleItem) => {
432
- if ((0, import_utils.getBundleItemIsOriginalPrice)(bundleItem)) {
462
+ product.product_bundle.forEach(bundleItem => {
463
+ // 只处理原价子商品,加减价子商品已包含在主商品价格中
464
+ if ((0, _utils.getBundleItemIsOriginalPrice)(bundleItem)) {
465
+ // 检查子商品是否适用
433
466
  const isBundleItemApplicable = applicableProductIds === null || applicableProductIds.includes(bundleItem.bundle_product_id);
434
467
  if (isBundleItemApplicable) {
468
+ // 计算原价子商品价格
435
469
  const bundleItemQuantity = bundleItem.num * productQuantity;
436
- total += (0, import_utils.getBundleItemPrice)(
437
- bundleItem,
438
- productQuantity,
439
- deductTaxAndFee
440
- );
470
+ total += (0, _utils.getBundleItemPrice)(bundleItem, productQuantity, deductTaxAndFee);
441
471
  count += bundleItemQuantity;
442
472
  }
443
473
  }
444
474
  });
445
475
  }
446
476
  });
447
- return { applicableTotal: total, applicableCount: count };
477
+ return {
478
+ applicableTotal: total,
479
+ applicableCount: count
480
+ };
448
481
  }
449
- };
450
- // Annotate the CommonJS export names for ESM import in node:
451
- 0 && (module.exports = {
452
- WalletPassEvaluator
453
- });
482
+ }
483
+ exports.WalletPassEvaluator = WalletPassEvaluator;