@pisell/pisellos 2.2.274 → 2.2.276

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 (117) hide show
  1. package/dist/core/index.d.ts +2 -0
  2. package/dist/core/index.js +7 -0
  3. package/dist/model/strategy/adapter/promotion/adapter.d.ts +4 -0
  4. package/dist/model/strategy/adapter/promotion/adapter.js +23 -0
  5. package/dist/model/strategy/adapter/promotion/evaluator.d.ts +17 -0
  6. package/dist/model/strategy/adapter/promotion/evaluator.js +279 -6
  7. package/dist/model/strategy/adapter/promotion/examples.d.ts +86 -0
  8. package/dist/model/strategy/adapter/promotion/examples.js +99 -0
  9. package/dist/model/strategy/adapter/promotion/index.d.ts +1 -1
  10. package/dist/model/strategy/adapter/promotion/index.js +1 -1
  11. package/dist/model/strategy/adapter/promotion/type.d.ts +90 -2
  12. package/dist/model/strategy/adapter/promotion/type.js +45 -0
  13. package/dist/modules/OpenData/index.d.ts +2 -0
  14. package/dist/modules/OpenData/index.js +8 -0
  15. package/dist/modules/Order/index.d.ts +28 -8
  16. package/dist/modules/Order/index.js +907 -588
  17. package/dist/modules/Order/payment-utils.d.ts +26 -0
  18. package/dist/modules/Order/payment-utils.js +225 -0
  19. package/dist/modules/Order/types.d.ts +35 -1
  20. package/dist/modules/Order/utils/orderCollectionIdentity.js +7 -2
  21. package/dist/modules/Order/utils.js +10 -6
  22. package/dist/modules/Payment/index.d.ts +2 -0
  23. package/dist/modules/Payment/index.js +78 -49
  24. package/dist/modules/Payment/types.d.ts +104 -25
  25. package/dist/modules/Payment/types.js +17 -0
  26. package/dist/modules/Payment/walletpass.d.ts +38 -1
  27. package/dist/modules/Payment/walletpass.js +917 -114
  28. package/dist/modules/Rules/index.d.ts +3 -0
  29. package/dist/modules/Rules/index.js +100 -70
  30. package/dist/server/index.d.ts +25 -0
  31. package/dist/server/index.js +1993 -1061
  32. package/dist/server/modules/index.d.ts +1 -1
  33. package/dist/server/modules/order/index.d.ts +70 -4
  34. package/dist/server/modules/order/index.js +1816 -728
  35. package/dist/server/modules/order/types.d.ts +25 -3
  36. package/dist/server/modules/order/types.js +7 -1
  37. package/dist/solution/BaseSales/index.d.ts +104 -5
  38. package/dist/solution/BaseSales/index.js +1767 -436
  39. package/dist/solution/BaseSales/types.d.ts +55 -1
  40. package/dist/solution/BaseSales/types.js +2 -1
  41. package/dist/solution/BaseSales/utils/cartPromotion.d.ts +3 -1
  42. package/dist/solution/BaseSales/utils/cartPromotion.js +94 -32
  43. package/dist/solution/BaseSales/utils/parseSalesResponse.d.ts +6 -1
  44. package/dist/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +7 -4
  45. package/dist/solution/BookingByStep/index.d.ts +1 -1
  46. package/dist/solution/BookingTicket/index.d.ts +21 -5
  47. package/dist/solution/BookingTicket/index.js +139 -56
  48. package/dist/solution/BookingTicket/types.d.ts +1 -0
  49. package/dist/solution/BookingTicket/utils/scan/applyGlobalScan.d.ts +8 -0
  50. package/dist/solution/BookingTicket/utils/scan/applyGlobalScan.js +173 -83
  51. package/dist/solution/Sales/index.d.ts +2 -0
  52. package/dist/solution/Sales/index.js +26 -4
  53. package/dist/solution/ScanOrder/index.js +31 -20
  54. package/dist/solution/VenueBooking/index.d.ts +1 -0
  55. package/dist/solution/VenueBooking/index.js +30 -19
  56. package/dist/types/index.d.ts +1 -0
  57. package/dist/utils/payment-number.d.ts +9 -0
  58. package/dist/utils/payment-number.js +69 -0
  59. package/lib/core/index.d.ts +2 -0
  60. package/lib/core/index.js +4 -0
  61. package/lib/model/strategy/adapter/promotion/adapter.d.ts +4 -0
  62. package/lib/model/strategy/adapter/promotion/adapter.js +20 -0
  63. package/lib/model/strategy/adapter/promotion/evaluator.d.ts +17 -0
  64. package/lib/model/strategy/adapter/promotion/evaluator.js +235 -0
  65. package/lib/model/strategy/adapter/promotion/examples.d.ts +86 -0
  66. package/lib/model/strategy/adapter/promotion/examples.js +91 -0
  67. package/lib/model/strategy/adapter/promotion/index.d.ts +1 -1
  68. package/lib/model/strategy/adapter/promotion/index.js +2 -0
  69. package/lib/model/strategy/adapter/promotion/type.d.ts +90 -2
  70. package/lib/model/strategy/adapter/promotion/type.js +2 -0
  71. package/lib/modules/OpenData/index.d.ts +2 -0
  72. package/lib/modules/OpenData/index.js +5 -0
  73. package/lib/modules/Order/index.d.ts +28 -8
  74. package/lib/modules/Order/index.js +252 -84
  75. package/lib/modules/Order/payment-utils.d.ts +26 -0
  76. package/lib/modules/Order/payment-utils.js +224 -0
  77. package/lib/modules/Order/types.d.ts +35 -1
  78. package/lib/modules/Order/utils/orderCollectionIdentity.js +3 -0
  79. package/lib/modules/Order/utils.js +11 -4
  80. package/lib/modules/Payment/index.d.ts +2 -0
  81. package/lib/modules/Payment/index.js +33 -12
  82. package/lib/modules/Payment/types.d.ts +104 -25
  83. package/lib/modules/Payment/types.js +1 -0
  84. package/lib/modules/Payment/walletpass.d.ts +38 -1
  85. package/lib/modules/Payment/walletpass.js +730 -21
  86. package/lib/modules/Rules/index.d.ts +3 -0
  87. package/lib/modules/Rules/index.js +38 -9
  88. package/lib/server/index.d.ts +25 -0
  89. package/lib/server/index.js +726 -31
  90. package/lib/server/modules/index.d.ts +1 -1
  91. package/lib/server/modules/order/index.d.ts +70 -4
  92. package/lib/server/modules/order/index.js +818 -69
  93. package/lib/server/modules/order/types.d.ts +25 -3
  94. package/lib/server/modules/order/types.js +1 -0
  95. package/lib/solution/BaseSales/index.d.ts +104 -5
  96. package/lib/solution/BaseSales/index.js +858 -27
  97. package/lib/solution/BaseSales/types.d.ts +55 -1
  98. package/lib/solution/BaseSales/types.js +2 -1
  99. package/lib/solution/BaseSales/utils/cartPromotion.d.ts +3 -1
  100. package/lib/solution/BaseSales/utils/cartPromotion.js +66 -12
  101. package/lib/solution/BaseSales/utils/parseSalesResponse.d.ts +6 -1
  102. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +4 -3
  103. package/lib/solution/BookingByStep/index.d.ts +1 -1
  104. package/lib/solution/BookingTicket/index.d.ts +21 -5
  105. package/lib/solution/BookingTicket/index.js +64 -13
  106. package/lib/solution/BookingTicket/types.d.ts +1 -0
  107. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.d.ts +8 -0
  108. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.js +37 -5
  109. package/lib/solution/Sales/index.d.ts +2 -0
  110. package/lib/solution/Sales/index.js +20 -6
  111. package/lib/solution/ScanOrder/index.js +8 -0
  112. package/lib/solution/VenueBooking/index.d.ts +1 -0
  113. package/lib/solution/VenueBooking/index.js +8 -0
  114. package/lib/types/index.d.ts +1 -0
  115. package/lib/utils/payment-number.d.ts +9 -0
  116. package/lib/utils/payment-number.js +64 -0
  117. package/package.json +1 -1
@@ -3,6 +3,7 @@ import { OrderModule, ProductList, QuotationModule, SalesSummaryModule, ScanOrde
3
3
  import type { ScanOrderLogInput as BaseSalesLogInput, ScanOrderLoggerProviderConfig as BaseSalesLoggerProviderConfig, ScanOrderLoggerProviderType as BaseSalesLoggerProviderType } from '../../modules/ScanOrderLogger/types';
4
4
  import type { QuantityCheckResult, QuantityLimitResult } from '../../model/strategy/adapter/itemRule';
5
5
  import type { QuotationCustomerScopeInfo } from '../../modules/Quotation/types';
6
+ import type { PaymentMethod } from '../../modules/Payment/types';
6
7
  /**
7
8
  * BaseSales 流程 hook 后缀。
8
9
  * 完整事件名应由当前模块名动态拼接,避免多个实例共享固定事件 key。
@@ -16,11 +17,62 @@ export declare const BaseSalesHookNames: {
16
17
  readonly onPaymentSyncStart: "onPaymentSyncStart";
17
18
  readonly onPaymentSyncEnd: "onPaymentSyncEnd";
18
19
  readonly onDepositPaymentSyncEnd: "onDepositPaymentSyncEnd";
20
+ readonly onWalletAssetsStateChanged: "onWalletAssetsStateChanged";
19
21
  };
20
22
  export type BaseSalesHookName = typeof BaseSalesHookNames[keyof typeof BaseSalesHookNames];
21
23
  export declare function createBaseSalesHook(moduleName: string, hookName: BaseSalesHookName): string;
22
24
  export type BaseSalesStatus = 'idle' | 'initializing' | 'ready' | 'error';
23
25
  export type BaseSalesPaymentStatus = 'paid' | 'partially_paid' | 'unpaid' | 'payment_processing' | string;
26
+ export interface BaseSalesCashPaymentConfig {
27
+ available: boolean;
28
+ paymentMethod?: PaymentMethod;
29
+ amountDue: number;
30
+ recommendedAmounts: number[];
31
+ }
32
+ export interface BaseSalesPayCashParams {
33
+ /** 实际计入订单的现金支付金额(部分支付时小于待付金额)。 */
34
+ amount: number;
35
+ /** 顾客实际交付现金;可大于 amount。 */
36
+ actualPaidAmount?: number;
37
+ changeAmount?: number;
38
+ roundingAmount?: number;
39
+ }
40
+ export interface BaseSalesPayCashResult {
41
+ payment: Record<string, any>;
42
+ payments: Record<string, any>[];
43
+ syncResult: Record<string, any>;
44
+ isOrderFullyPaid: boolean;
45
+ }
46
+ export interface BaseSalesCommitPaymentMethodParams {
47
+ /** 支付方式 id;与 paymentMethodCode 至少传一个。 */
48
+ paymentMethodId?: number | string;
49
+ /** 支付方式 code,大小写不敏感。 */
50
+ paymentMethodCode?: string;
51
+ /** 本次计入订单的支付金额。 */
52
+ amount: number;
53
+ /** 支付设备返回的原始金额;缺省时与 amount 相同。 */
54
+ originAmount?: number;
55
+ /** 支付设备返回的实际手续费配置。 */
56
+ serviceCharge?: {
57
+ amount?: string | number;
58
+ percentage?: string | number;
59
+ } | null;
60
+ /** 支付设备返回的唯一流水号等扩展信息。 */
61
+ metadata?: Record<string, any>;
62
+ /** 少数支付方式需要透传的额外 payment 字段。 */
63
+ paymentData?: Record<string, any>;
64
+ }
65
+ export interface BaseSalesCommitPaymentMethodResult {
66
+ payment: Record<string, any>;
67
+ payments: Record<string, any>[];
68
+ syncResult: Record<string, any>;
69
+ isOrderFullyPaid: boolean;
70
+ }
71
+ export interface BaseSalesConfirmWalletPaymentResult<T = Record<string, any>> {
72
+ submitResult: T;
73
+ payments: Record<string, any>[];
74
+ isOrderFullyPaid: boolean;
75
+ }
24
76
  export interface BaseSalesEntryContext {
25
77
  biz: string;
26
78
  mode: 'scan' | 'append';
@@ -387,8 +439,10 @@ export interface BaseSalesAddLogParams extends BaseSalesLogInput {
387
439
  /** BaseSales.scanPromotionCode 对外的轻量结果(UI 可用 getDiscountList 或 scannedDiscountList 补 Holder) */
388
440
  export interface BaseSalesScanCodeResult {
389
441
  isAvailable: boolean;
442
+ /** 卡券已加入 Promotion;false 时可能是无效、过期或已使用。 */
443
+ isAccepted?: boolean;
390
444
  type?: 'server' | string;
391
445
  unavailableReason?: 'time_limit' | string;
392
- /** batchSearch 原始结果;isAvailable=false 时 discountList 可能未写入 store,Holder 补全需读此字段 */
446
+ /** batchSearch 原始结果;Holder 补全等流程可从这里读取原始卡券。 */
393
447
  scannedDiscountList?: Discount[];
394
448
  }
@@ -31,7 +31,8 @@ var BaseSalesHookNames = {
31
31
  onCartValidationChanged: "onCartValidationChanged",
32
32
  onPaymentSyncStart: "onPaymentSyncStart",
33
33
  onPaymentSyncEnd: "onPaymentSyncEnd",
34
- onDepositPaymentSyncEnd: "onDepositPaymentSyncEnd"
34
+ onDepositPaymentSyncEnd: "onDepositPaymentSyncEnd",
35
+ onWalletAssetsStateChanged: "onWalletAssetsStateChanged"
35
36
  };
36
37
  function createBaseSalesHook(moduleName, hookName) {
37
38
  return `${moduleName}:${hookName}`;
@@ -78,6 +78,7 @@ export interface CartPromotionEvaluator {
78
78
  }>;
79
79
  hasApplicableStrategy: boolean;
80
80
  }>;
81
+ getStrategyConfigs?: () => unknown[];
81
82
  }
82
83
  /** 单个赠品减量项 */
83
84
  export interface GiftReduceItem {
@@ -267,7 +268,8 @@ export declare function appendPromotionTags<T extends Record<string, any>>(produ
267
268
  * 处理购物车的促销计算与赠品差异化。
268
269
  *
269
270
  * 流程:
270
- * 1. 分离 main / gift / edit-product 三类(带 `booking_id` 的编辑态商品不参与促销)
271
+ * 1. 分离 main / gift / edit-product 三类(普通促销下带 `booking_id` 的编辑态商品不参与;
272
+ * 配置 ITEM_REWARD 时,编辑态商品也参与商品奖励重算)
271
273
  * 2. 转 PromotionProduct 喂评估器 → 拿到 `evaluateCartWithPricing` 与 `getProductsApplicableStrategies`
272
274
  * 3. 把 PricedProduct 映射回 OrderProduct 形态:
273
275
  * - 参与促销的,写 `metadata._promotion` + 调整 `selling_price` / `main_product_selling_price`
@@ -77,19 +77,43 @@ function getOrderProductOriginalPriceForPromotion(product) {
77
77
  }
78
78
  return getOrderProductBasePrice(product);
79
79
  }
80
- function updatePromotionDiscountList(item, promotionDiscount) {
80
+ var X_ITEMS_FOR_Y_PRICE = "X_ITEMS_FOR_Y_PRICE";
81
+ var ITEM_REWARD = "ITEM_REWARD";
82
+ function isItemRewardPromotionDiscountItem(item) {
83
+ var _a, _b;
84
+ return (item == null ? void 0 : item.type) === "product" && ((_a = item == null ? void 0 : item.metadata) == null ? void 0 : _a.source) === "promotion" && ((_b = item == null ? void 0 : item.metadata) == null ? void 0 : _b.actionType) === ITEM_REWARD;
85
+ }
86
+ function isManagedPromotionDiscountItem(item) {
87
+ if ((item == null ? void 0 : item.type) === "promotion")
88
+ return true;
89
+ return isItemRewardPromotionDiscountItem(item);
90
+ }
91
+ function wasInPromotionBeforeEvaluation(item) {
92
+ var _a, _b;
93
+ if (((_b = (_a = item == null ? void 0 : item.metadata) == null ? void 0 : _a._promotion) == null ? void 0 : _b.inPromotion) === true)
94
+ return true;
95
+ return Array.isArray(item == null ? void 0 : item.discount_list) && item.discount_list.some(isItemRewardPromotionDiscountItem);
96
+ }
97
+ function updatePromotionDiscountList(item, promotionDiscount, options) {
81
98
  let discountList = Array.isArray(item.discount_list) ? [...item.discount_list] : [];
82
- discountList = discountList.filter((d) => (d == null ? void 0 : d.type) !== "promotion");
99
+ discountList = discountList.filter((d) => !isManagedPromotionDiscountItem(d));
83
100
  if (promotionDiscount) {
101
+ const discountType = (options == null ? void 0 : options.discountType) || "promotion";
84
102
  discountList.push({
85
- type: "promotion",
103
+ type: discountType,
86
104
  amount: promotionDiscount.amount,
87
105
  discount: {
88
106
  original_amount: promotionDiscount.original_amount,
89
107
  fixed_amount: promotionDiscount.fixed_amount,
90
108
  title: promotionDiscount.title,
91
109
  resource_id: ""
92
- }
110
+ },
111
+ ...discountType === "product" ? {
112
+ metadata: {
113
+ source: "promotion",
114
+ actionType: (options == null ? void 0 : options.actionType) || ITEM_REWARD
115
+ }
116
+ } : {}
93
117
  });
94
118
  }
95
119
  if (discountList.length > 0) {
@@ -98,7 +122,15 @@ function updatePromotionDiscountList(item, promotionDiscount) {
98
122
  delete item.discount_list;
99
123
  }
100
124
  }
101
- var X_ITEMS_FOR_Y_PRICE = "X_ITEMS_FOR_Y_PRICE";
125
+ function evaluatorHasActionType(evaluator, actionType) {
126
+ var _a;
127
+ const configs = (_a = evaluator == null ? void 0 : evaluator.getStrategyConfigs) == null ? void 0 : _a.call(evaluator);
128
+ if (!Array.isArray(configs))
129
+ return false;
130
+ return configs.some(
131
+ (config) => ((config == null ? void 0 : config.actions) || []).some((action) => (action == null ? void 0 : action.type) === actionType)
132
+ );
133
+ }
102
134
  function applyPromoUnitPriceToLine(item, input) {
103
135
  const metadata = item.metadata || (item.metadata = {});
104
136
  const optionSum = (0, import_utils.sumOptionUnitPrice)((0, import_utils.getProductSkuOptions)(item)).toNumber();
@@ -125,6 +157,9 @@ function applyPromoUnitPriceToLine(item, input) {
125
157
  amount: discountAmount,
126
158
  original_amount: catalogSource,
127
159
  fixed_amount: discountAmount
160
+ }, {
161
+ actionType: input.actionType,
162
+ discountType: input.actionType === ITEM_REWARD ? "product" : "promotion"
128
163
  });
129
164
  } else {
130
165
  updatePromotionDiscountList(item, null);
@@ -333,6 +368,9 @@ function getProductLineNoteSignature(product) {
333
368
  }
334
369
  function getPromotionLineMergeBoundary(product) {
335
370
  var _a, _b;
371
+ if ((product == null ? void 0 : product.product_id) === void 0 || (product == null ? void 0 : product.product_id) === null) {
372
+ return `custom:${getOrderProductUid(product)}`;
373
+ }
336
374
  if (Number(((_a = product == null ? void 0 : product.product_sku) == null ? void 0 : _a.open_sold_weight) || 0) === 1) {
337
375
  return `weighing:${getOrderProductUid(product)}`;
338
376
  }
@@ -399,14 +437,13 @@ function buildConsolidateKeyForPromotion(item) {
399
437
  ].join("#");
400
438
  }
401
439
  function consolidateMainProductsForPromotion(entries) {
402
- var _a, _b;
403
440
  if (!Array.isArray(entries) || entries.length <= 1) {
404
441
  return [...entries || []];
405
442
  }
406
443
  const groups = /* @__PURE__ */ new Map();
407
444
  for (const { item, originalListIndex } of entries) {
408
445
  const key = buildConsolidateKeyForPromotion(item);
409
- const wasInPromotion = ((_b = (_a = item == null ? void 0 : item.metadata) == null ? void 0 : _a._promotion) == null ? void 0 : _b.inPromotion) === true;
446
+ const wasInPromotion = wasInPromotionBeforeEvaluation(item);
410
447
  const existing = groups.get(key);
411
448
  if (!existing) {
412
449
  const mergedItem = (0, import_lodash_es.cloneDeep)(item);
@@ -472,6 +509,9 @@ function splitXItemsPromoLinesByGroup(lines, strategyActionMap) {
472
509
  function generateNumericId() {
473
510
  return Math.floor(Math.random() * 1e9) + Date.now();
474
511
  }
512
+ function isBookingEditProductLine(product) {
513
+ return (product == null ? void 0 : product.booking_id) !== void 0 && (product == null ? void 0 : product.booking_id) !== null && product.booking_id !== 0 && product.booking_id !== "0";
514
+ }
475
515
  function convertToPromotionProduct(product, index) {
476
516
  const metadata = (product == null ? void 0 : product.metadata) || {};
477
517
  const numericId = generateNumericId();
@@ -484,6 +524,7 @@ function convertToPromotionProduct(product, index) {
484
524
  price: getOrderProductOriginalPriceForPromotion(product),
485
525
  quantity: Number((product == null ? void 0 : product.num) ?? 1) || 1,
486
526
  bundle: getProductBundleForEvaluator(product),
527
+ _promotionOnlyForItemReward: isBookingEditProductLine(product),
487
528
  _originalItem: originalItem,
488
529
  _originalId: getOrderProductUid(product),
489
530
  _originalIndex: index
@@ -585,6 +626,9 @@ function resolveStrategyRequiredQuantity(matched) {
585
626
  if (matched.actionType === "BUY_X_GET_Y_FREE") {
586
627
  return Number(detail.buyQuantity) || 1;
587
628
  }
629
+ if (matched.actionType === "ITEM_REWARD") {
630
+ return Number(detail.triggerQuantity) || 1;
631
+ }
588
632
  return 1;
589
633
  }
590
634
  function resolveStrategyEligibleProducts(matched) {
@@ -695,6 +739,10 @@ function processCartPromotion(list, evaluator, options) {
695
739
  };
696
740
  if (!list || list.length === 0 || !evaluator)
697
741
  return empty;
742
+ const shouldIncludeEditProductsForItemReward = evaluatorHasActionType(
743
+ evaluator,
744
+ ITEM_REWARD
745
+ );
698
746
  const mainProductsWithIndex = [];
699
747
  const existingGiftsWithIndex = [];
700
748
  const editProductsWithIndex = [];
@@ -705,8 +753,12 @@ function processCartPromotion(list, evaluator, options) {
705
753
  editProductsWithIndex.push({ item, originalListIndex: i });
706
754
  } else if (giftInfo) {
707
755
  existingGiftsWithIndex.push({ item, originalListIndex: i });
708
- } else if ((item == null ? void 0 : item.booking_id) !== void 0 && (item == null ? void 0 : item.booking_id) !== null && item.booking_id !== 0 && item.booking_id !== "0") {
709
- editProductsWithIndex.push({ item, originalListIndex: i });
756
+ } else if (isBookingEditProductLine(item)) {
757
+ if (shouldIncludeEditProductsForItemReward) {
758
+ mainProductsWithIndex.push({ item, originalListIndex: i });
759
+ } else {
760
+ editProductsWithIndex.push({ item, originalListIndex: i });
761
+ }
710
762
  } else {
711
763
  mainProductsWithIndex.push({ item, originalListIndex: i });
712
764
  }
@@ -749,7 +801,8 @@ function processCartPromotion(list, evaluator, options) {
749
801
  name: ((_a2 = item == null ? void 0 : item.metadata) == null ? void 0 : _a2.product_name) || (item == null ? void 0 : item.title) || "",
750
802
  price: getOrderProductBasePrice(item),
751
803
  quantity: Number((item == null ? void 0 : item.num) ?? 1) || 1,
752
- bundle: getProductBundleForEvaluator(item)
804
+ bundle: getProductBundleForEvaluator(item),
805
+ _promotionOnlyForItemReward: isBookingEditProductLine(item)
753
806
  };
754
807
  });
755
808
  for (let i = 0; i < consolidatedMainProductsWithIndex.length; i++) {
@@ -818,7 +871,7 @@ function processCartPromotion(list, evaluator, options) {
818
871
  const metadata = newItem.metadata || {};
819
872
  const sourceCartNum = (0, import_utils2.getSafeProductNum)(originalItem.num);
820
873
  newItem._sourceCartNum = sourceCartNum;
821
- const wasInPromotion = ((_a = metadata._promotion) == null ? void 0 : _a.inPromotion) === true || originalItem._wasInPromotionBeforeConsolidate === true;
874
+ const wasInPromotion = wasInPromotionBeforeEvaluation(originalItem) || originalItem._wasInPromotionBeforeConsolidate === true;
822
875
  delete metadata._promotion;
823
876
  if (Array.isArray(newItem.product_bundle)) {
824
877
  for (const b of newItem.product_bundle) {
@@ -835,7 +888,8 @@ function processCartPromotion(list, evaluator, options) {
835
888
  applyPromoUnitPriceToLine(newItem, {
836
889
  promoUnitPrice,
837
890
  originalBasePrice,
838
- strategyTitle: (_b = priced.strategyMetadata) == null ? void 0 : _b.name
891
+ strategyTitle: (_a = priced.strategyMetadata) == null ? void 0 : _a.name,
892
+ actionType: priced.strategyId ? (_b = strategyActionMap.get(priced.strategyId)) == null ? void 0 : _b.actionType : void 0
839
893
  });
840
894
  } else {
841
895
  const optionSum = (0, import_utils.sumOptionUnitPrice)((0, import_utils.getProductSkuOptions)(newItem)).toNumber();
@@ -82,8 +82,13 @@ export interface ISalesBooking {
82
82
  metadata?: Record<string, any> | null;
83
83
  [key: string]: any;
84
84
  }
85
+ export interface ISalesPaymentMetadata extends Record<string, any> {
86
+ /** 刷卡机设备快照;OS 不解析内部字段 */
87
+ card_reader_snapshot?: Record<string, unknown>;
88
+ }
85
89
  export interface ISalesPayment {
86
90
  order_payment_id?: number | null;
91
+ payment_number?: string;
87
92
  custom_payment_id?: number;
88
93
  code?: string;
89
94
  name?: string;
@@ -95,7 +100,7 @@ export interface ISalesPayment {
95
100
  status?: string;
96
101
  payment_time?: string | null;
97
102
  service_charge?: Record<string, any> | null;
98
- metadata?: Record<string, any> | null;
103
+ metadata?: ISalesPaymentMetadata | null;
99
104
  [key: string]: any;
100
105
  }
101
106
  export interface ISalesSurcharge {
@@ -132,14 +132,15 @@ function transformBaseProductToOrderProduct(params) {
132
132
  ...callbackOrigin || {}
133
133
  };
134
134
  const matchedVariant = findVariantById(callbackOrigin, productVariantId) ?? findVariantById(sourceProduct, productVariantId) ?? findVariantById(origin, productVariantId);
135
+ const hasPriceOverride = payload.price_override !== void 0 && payload.price_override !== null && payload.price_override !== "";
136
+ const catalogSourcePrice = (matchedVariant == null ? void 0 : matchedVariant.price) ?? (matchedVariant == null ? void 0 : matchedVariant.base_price) ?? (origin == null ? void 0 : origin.price) ?? (origin == null ? void 0 : origin.base_price) ?? (sourceProduct == null ? void 0 : sourceProduct.price) ?? (sourceProduct == null ? void 0 : sourceProduct.selling_price) ?? (sourceProduct == null ? void 0 : sourceProduct.base_price);
135
137
  const sourceProductPrice = toPriceString(
136
- payload.price ?? payload.selling_price ?? (matchedVariant == null ? void 0 : matchedVariant.price) ?? (matchedVariant == null ? void 0 : matchedVariant.base_price) ?? (origin == null ? void 0 : origin.price) ?? (origin == null ? void 0 : origin.base_price) ?? (sourceProduct == null ? void 0 : sourceProduct.price) ?? (sourceProduct == null ? void 0 : sourceProduct.selling_price) ?? (sourceProduct == null ? void 0 : sourceProduct.base_price),
138
+ hasPriceOverride ? catalogSourcePrice ?? payload.price ?? payload.selling_price : payload.price ?? payload.selling_price ?? catalogSourcePrice,
137
139
  "0.00"
138
140
  );
139
141
  const explicitLineTotal = payload.line_total ?? payload.total ?? ((_c = payload._extend) == null ? void 0 : _c.total);
140
142
  const hasExplicitLineTotal = Number.isFinite(Number(explicitLineTotal));
141
143
  const lineCompositeTotal = toPriceString(explicitLineTotal, sourceProductPrice);
142
- const hasPriceOverride = payload.price_override !== void 0 && payload.price_override !== null && payload.price_override !== "";
143
144
  const productOptionItem = (0, import_utils.normalizeProductSkuOptions)(
144
145
  normalizeOptionItems(
145
146
  ((_d = payload.product_sku) == null ? void 0 : _d.option) ?? payload.option ?? payload.options ?? payload.product_option_item
@@ -216,7 +217,7 @@ function transformBaseProductToOrderProduct(params) {
216
217
  }
217
218
  const productTitle = {
218
219
  ...(sourceProduct == null ? void 0 : sourceProduct.title_i18n) || {},
219
- original: (sourceProduct == null ? void 0 : sourceProduct.title) || ""
220
+ original: (sourceProduct == null ? void 0 : sourceProduct.original_title) || (sourceProduct == null ? void 0 : sourceProduct.title) || ""
220
221
  };
221
222
  return {
222
223
  product_id: productId,
@@ -311,7 +311,7 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
311
311
  date: string;
312
312
  status: string;
313
313
  week: string;
314
- weekNum: 0 | 1 | 2 | 6 | 4 | 3 | 5;
314
+ weekNum: 0 | 1 | 2 | 3 | 6 | 4 | 5;
315
315
  }[]>;
316
316
  submitTimeSlot(timeSlots: TimeSliceItem): void;
317
317
  private getScheduleDataByIds;
@@ -46,6 +46,8 @@ export declare class BookingTicketImpl extends BaseSalesImpl implements Module {
46
46
  private getIdGeneratorPlugin;
47
47
  private loadOpenDataConfig;
48
48
  getOpenData(): Promise<OpenDataConfig | null>;
49
+ /** 清除店铺级 OpenData;下一次 getOpenData 时会重新拉取。 */
50
+ clearOpenDataCache(): void;
49
51
  private getShortNumberOrDeviceId;
50
52
  private configureIdGeneratorFromOpenData;
51
53
  private normalizePositiveInteger;
@@ -189,10 +191,12 @@ export declare class BookingTicketImpl extends BaseSalesImpl implements Module {
189
191
  */
190
192
  getCustomer(): ICustomer | null;
191
193
  /**
192
- * 通过 ids 获取商品列表(不加载到模块中)
193
- * @returns 商品列表
194
+ * 通过 ids 获取商品列表;默认只读取内存,显式开启 loadMissing 时按当前订单上下文补查缺失商品。
195
+ * 补查直接写入 ProductList,不更新 BookingTicket.productCatalog,避免当前商品列表被查询子集覆盖。
194
196
  */
195
- getProductByIds(ids: number[]): Promise<ProductData[] | undefined>;
197
+ getProductByIds(ids: number[], options?: {
198
+ loadMissing?: boolean;
199
+ }): Promise<ProductData[]>;
196
200
  /**
197
201
  * 获取日程时间段点
198
202
  * @param params 参数
@@ -322,7 +326,7 @@ export declare class BookingTicketImpl extends BaseSalesImpl implements Module {
322
326
  * 获取当前的客户搜索条件
323
327
  * @returns 当前搜索条件
324
328
  */
325
- getCurrentCustomerSearchParams(): Omit<import("../../modules").ShopGetCustomerListParams, "skip" | "num">;
329
+ getCurrentCustomerSearchParams(): Omit<import("../../modules").ShopGetCustomerListParams, "num" | "skip">;
326
330
  /**
327
331
  * 获取客户列表状态(包含滚动加载相关状态)
328
332
  * @returns 客户状态
@@ -441,7 +445,19 @@ export declare class BookingTicketImpl extends BaseSalesImpl implements Module {
441
445
  * 加车两阶段主决策(规格弹窗 / 资源编辑 / 直接加车)。
442
446
  * 与 ticketBooking `handleSelectProduct` + `handleBooking4Service` 等价。
443
447
  */
444
- decideAddProduct(item: any, options?: Partial<AddProductDecideContext>): import("./utils/addProductDecision").AddProductDecision;
448
+ decideAddProduct(item: any, options?: Partial<AddProductDecideContext>): {
449
+ action: "reloadCatalog";
450
+ } | {
451
+ action: "add";
452
+ cacheItem: any;
453
+ } | {
454
+ action: "requiresDetail";
455
+ payload: AddProductRequiresDetailPayload;
456
+ } | {
457
+ action: "requiresBookingEdit";
458
+ cacheItem: any;
459
+ payload: import("./utils/addProductDecision").AddProductRequiresBookingEditPayload;
460
+ };
445
461
  /** 规格弹窗 callback 后的第二段决策。 */
446
462
  decideAfterDetail(cacheItem: any, options?: Partial<AddProductDecideContext>): import("./utils/addProductDecision").AddProductDecision;
447
463
  /**
@@ -219,8 +219,14 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
219
219
  }
220
220
  }
221
221
  async getOpenData() {
222
+ return this.loadOpenDataConfig();
223
+ }
224
+ /** 清除店铺级 OpenData;下一次 getOpenData 时会重新拉取。 */
225
+ clearOpenDataCache() {
222
226
  var _a;
223
- return (_a = this.store.openData) == null ? void 0 : _a.getOpenData();
227
+ this.loadOpenDataConfigInFlight = null;
228
+ this.otherParams.openData = null;
229
+ (_a = this.store.openData) == null ? void 0 : _a.clearCache();
224
230
  }
225
231
  async getShortNumberOrDeviceId() {
226
232
  const getAsyncIotDeviceInfo = this.getAppData("async_iot_device_info");
@@ -233,6 +239,7 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
233
239
  return String(this.getAppData("device_id") || 0).slice(-2);
234
240
  }
235
241
  async configureIdGeneratorFromOpenData() {
242
+ this.setPaymentNumberDevicePrefix(null);
236
243
  let openDataConfig = null;
237
244
  try {
238
245
  openDataConfig = await this.loadOpenDataConfig();
@@ -264,6 +271,7 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
264
271
  const resetReceiptSequenceDaily = typeof (openDataConfig == null ? void 0 : openDataConfig["sale.short_number_daily_reset"]) === "boolean" ? openDataConfig == null ? void 0 : openDataConfig["sale.short_number_daily_reset"] : false;
265
272
  const operatingDayBoundary = this.getAppData("operating_day_boundary");
266
273
  const deviceId = await this.getShortNumberOrDeviceId();
274
+ this.setPaymentNumberDevicePrefix(deviceId);
267
275
  const businessCode = this.getBookingTicketBusinessCode();
268
276
  if (!businessCode) {
269
277
  console.warn("[BookingTicket] businessCode 缺失,跳过 idGenerator 配置");
@@ -360,6 +368,7 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
360
368
  }
361
369
  return {
362
370
  isAvailable: raw.isAvailable,
371
+ ...raw.isAccepted !== void 0 ? { isAccepted: raw.isAccepted } : {},
363
372
  type: raw.type,
364
373
  unavailableReason: raw.unavailableReason,
365
374
  scannedDiscountList: raw.scannedDiscountList
@@ -714,11 +723,53 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
714
723
  return this.getOrderCustomerSnapshot();
715
724
  }
716
725
  /**
717
- * 通过 ids 获取商品列表(不加载到模块中)
718
- * @returns 商品列表
726
+ * 通过 ids 获取商品列表;默认只读取内存,显式开启 loadMissing 时按当前订单上下文补查缺失商品。
727
+ * 补查直接写入 ProductList,不更新 BookingTicket.productCatalog,避免当前商品列表被查询子集覆盖。
719
728
  */
720
- async getProductByIds(ids) {
721
- return this.store.products.getProductByIds(ids);
729
+ async getProductByIds(ids, options) {
730
+ var _a, _b;
731
+ const normalizedIds = Array.from(
732
+ new Set(
733
+ (ids || []).map((id) => Number(id)).filter((id) => Number.isFinite(id))
734
+ )
735
+ );
736
+ const localProducts = await this.store.products.getProductByIds(normalizedIds) || [];
737
+ if (!(options == null ? void 0 : options.loadMissing)) {
738
+ return localProducts;
739
+ }
740
+ const localProductIds = new Set(
741
+ localProducts.map((product) => Number(product.id))
742
+ );
743
+ const missingIds = normalizedIds.filter(
744
+ (id) => !localProductIds.has(id)
745
+ );
746
+ if (!missingIds.length) {
747
+ return localProducts;
748
+ }
749
+ const rawBookingDate = this.getBookingDate();
750
+ const bookingDate = rawBookingDate && (0, import_dayjs.default)(rawBookingDate).isValid() ? (0, import_dayjs.default)(rawBookingDate) : null;
751
+ const customerId = Number(
752
+ ((_a = this.getOrderCustomerSnapshot()) == null ? void 0 : _a.id) ?? ((_b = this.getOrderCustomer()) == null ? void 0 : _b.customer_id)
753
+ );
754
+ const loadedProducts = await this.store.products.loadProducts({
755
+ product_ids: missingIds,
756
+ with_count: ["bundleGroup", "optionGroup"],
757
+ with_schedule: 1,
758
+ cacheId: this.cacheId,
759
+ ...bookingDate ? {
760
+ schedule_date: bookingDate.format("YYYY-MM-DD"),
761
+ schedule_datetime: bookingDate.format("YYYY-MM-DD HH:mm:ss")
762
+ } : {},
763
+ ...Number.isFinite(customerId) && customerId > 0 ? { customer_id: customerId } : {}
764
+ });
765
+ const productById = /* @__PURE__ */ new Map();
766
+ [...localProducts, ...loadedProducts || []].forEach((product) => {
767
+ const productId = Number(product.id);
768
+ if (Number.isFinite(productId)) {
769
+ productById.set(productId, product);
770
+ }
771
+ });
772
+ return normalizedIds.map((id) => productById.get(id)).filter((product) => Boolean(product));
722
773
  }
723
774
  /**
724
775
  * 获取日程时间段点
@@ -1153,7 +1204,8 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
1153
1204
  }
1154
1205
  /** 读取当前 booking config。 */
1155
1206
  getBookingConfig() {
1156
- return this.store.bookingContext.getBookingConfig();
1207
+ var _a;
1208
+ return (_a = this.store.bookingContext) == null ? void 0 : _a.getBookingConfig();
1157
1209
  }
1158
1210
  /** 写入资源全集(来源:`/form/schedule`),同步派生 resourcesOriginMap。 */
1159
1211
  setResources(resources) {
@@ -1389,7 +1441,9 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
1389
1441
  decideAddProduct: (item, options) => this.decideAddProduct(item, options),
1390
1442
  decideAfterDetail: (cacheItem, options) => this.decideAfterDetail(cacheItem, options),
1391
1443
  transformDetailToProductAndBooking: (input) => this.transformDetailToProductAndBooking(input),
1392
- addProductToOrder: (product, booking) => this.addProductToOrder(product, booking)
1444
+ addProductToOrder: (product, booking) => this.addProductToOrder(product, booking),
1445
+ refreshWalletAssets: (params) => this.refreshWalletAssets(params),
1446
+ scanWalletAsset: (scanCode) => this.scanWalletAsset(scanCode)
1393
1447
  },
1394
1448
  formatted,
1395
1449
  bridge
@@ -1514,10 +1568,7 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
1514
1568
  });
1515
1569
  }
1516
1570
  if (typeof this.store.order.addProductsToOrder === "function") {
1517
- return this.store.order.addProductsToOrder(orderLines, {
1518
- skipEditDiscountConfigRefresh: true,
1519
- skipDiscountRecalculation: true
1520
- });
1571
+ return this.store.order.addProductsToOrder(orderLines);
1521
1572
  }
1522
1573
  const result = [];
1523
1574
  for (const line of orderLines) {
@@ -1526,8 +1577,8 @@ var BookingTicketImpl = class extends import_BaseSales.BaseSalesImpl {
1526
1577
  return result;
1527
1578
  }
1528
1579
  async setOtherParams(params, { cover = false } = {}) {
1529
- super.setOtherParams(params, { cover });
1530
- if (params == null ? void 0 : params.businessCode) {
1580
+ await super.setOtherParams(params, { cover });
1581
+ if ((params == null ? void 0 : params.businessCode) !== void 0 || (params == null ? void 0 : params.business_code) !== void 0) {
1531
1582
  await this.configureIdGeneratorFromOpenData();
1532
1583
  }
1533
1584
  }
@@ -232,6 +232,7 @@ export interface GlobalScanHostBridge {
232
232
  */
233
233
  applyPromotionCode?: (code: string, customerId?: number) => Promise<{
234
234
  isAvailable?: boolean;
235
+ isAccepted?: boolean;
235
236
  type?: string;
236
237
  unavailableReason?: string;
237
238
  }>;
@@ -24,6 +24,14 @@ export interface GlobalScanApplyHost {
24
24
  cacheItem: any;
25
25
  };
26
26
  addProductToOrder(product: any, booking?: any): Promise<any>;
27
+ refreshWalletAssets?(params?: {
28
+ preserveSelection?: boolean;
29
+ }): Promise<any>;
30
+ scanWalletAsset?(code: string): Promise<{
31
+ type: 'walletCode' | 'normalCode';
32
+ asset?: any;
33
+ selected: boolean;
34
+ }>;
27
35
  }
28
36
  /**
29
37
  * 应用全局扫码格式化结果:设客户 / 加车 / 开单 / 弹窗链。
@@ -101,23 +101,55 @@ async function applyGlobalScan(host, formatted, bridge) {
101
101
  return { status: "success", kind: "customer" };
102
102
  }
103
103
  if (searchType === "walletPass") {
104
- if (!data) {
105
- (_c = bridge == null ? void 0 : bridge.onNotify) == null ? void 0 : _c.call(bridge, "fail", "pisell2.text.scan-global-failed");
106
- return { status: "failed", reason: "invalid_data" };
107
- }
108
104
  const snapshot = host.getOrderCustomerSnapshot();
109
105
  const scannedCustomerIsWalkIn = (0, import_cartView.isWalkInCustomer)(data);
106
+ const trySelectWalletAsset = async () => {
107
+ var _a2, _b2;
108
+ if (!host.scanWalletAsset)
109
+ return null;
110
+ const walletResult = await host.scanWalletAsset(scanCode).catch((error) => {
111
+ console.warn("[GlobalScan] Wallet asset lookup failed", error);
112
+ return null;
113
+ });
114
+ if (!walletResult)
115
+ return null;
116
+ if (walletResult.type !== "normalCode" || !walletResult.asset) {
117
+ return null;
118
+ }
119
+ if (walletResult.selected) {
120
+ (_a2 = bridge == null ? void 0 : bridge.onNotify) == null ? void 0 : _a2.call(bridge, "success");
121
+ return { status: "success", kind: "promotion" };
122
+ }
123
+ (_b2 = bridge == null ? void 0 : bridge.onNotify) == null ? void 0 : _b2.call(bridge, "fail", "pisell2.text.goodpass.code-invalid-cart");
124
+ return { status: "failed", reason: "invalid_data" };
125
+ };
110
126
  if ((0, import_cartView.isWalkInCustomer)(snapshot) || scannedCustomerIsWalkIn) {
127
+ const walletSelection2 = await trySelectWalletAsset();
128
+ if (walletSelection2)
129
+ return walletSelection2;
111
130
  if (!(bridge == null ? void 0 : bridge.applyPromotionCode)) {
112
131
  return { status: "failed", reason: "no_bridge" };
113
132
  }
114
133
  const result = await bridge.applyPromotionCode(scanCode);
115
- if (result == null ? void 0 : result.isAvailable) {
134
+ if ((result == null ? void 0 : result.isAccepted) ?? (result == null ? void 0 : result.isAvailable)) {
116
135
  return { status: "success", kind: "promotion" };
117
136
  }
118
137
  return { status: "failed", reason: "invalid_data" };
119
138
  }
120
139
  host.setOrderCustomer(data);
140
+ await ((_c = host.refreshWalletAssets) == null ? void 0 : _c.call(host, { preserveSelection: false }));
141
+ const walletSelection = await trySelectWalletAsset();
142
+ if (walletSelection)
143
+ return walletSelection;
144
+ if (bridge == null ? void 0 : bridge.applyPromotionCode) {
145
+ const promotionResult = await bridge.applyPromotionCode(
146
+ scanCode,
147
+ Number((data == null ? void 0 : data.id) ?? (data == null ? void 0 : data.customer_id)) || void 0
148
+ );
149
+ if ((promotionResult == null ? void 0 : promotionResult.isAccepted) ?? (promotionResult == null ? void 0 : promotionResult.isAvailable)) {
150
+ return { status: "success", kind: "promotion" };
151
+ }
152
+ }
121
153
  (_d = bridge == null ? void 0 : bridge.onNotify) == null ? void 0 : _d.call(bridge, "success", "pisell2.text.add-client-success");
122
154
  return { status: "success", kind: "customer" };
123
155
  }
@@ -83,6 +83,7 @@ export declare class SalesImpl extends BaseModule implements Module, SalesModule
83
83
  private getBookingAppointmentStatus;
84
84
  private isBookingIncludedInStats;
85
85
  private getBookingOrderPaymentStatus;
86
+ private isUnpaidBooking;
86
87
  private countBookingOrders;
87
88
  private countCompletedBookings;
88
89
  private groupBookingsByResource;
@@ -94,6 +95,7 @@ export declare class SalesImpl extends BaseModule implements Module, SalesModule
94
95
  * 2) 若无 active,返回已超时且仍占用中的预约(允许并发多条)
95
96
  * 3) 若仍无,返回最近一组未来预约(同 start_time 的并发预约全部返回)
96
97
  * 4) 最后兜底返回一条(避免资源有历史预约时完全无反馈)
98
+ * - includeAllFuture 时,保留选中预约并返回当天全部后续预约;仅详情接口启用。
97
99
  */
98
100
  private pickBookingsForCurrentPoint;
99
101
  /**