@pisell/pisellos 2.2.261 → 2.2.262

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 (134) hide show
  1. package/dist/model/strategy/adapter/dataVariant/adapter.d.ts +50 -0
  2. package/dist/model/strategy/adapter/dataVariant/adapter.js +167 -0
  3. package/dist/model/strategy/adapter/dataVariant/evaluator.d.ts +89 -0
  4. package/dist/model/strategy/adapter/dataVariant/evaluator.js +780 -0
  5. package/dist/model/strategy/adapter/dataVariant/examples.d.ts +39 -0
  6. package/dist/model/strategy/adapter/dataVariant/examples.js +277 -0
  7. package/dist/model/strategy/adapter/dataVariant/index.d.ts +4 -0
  8. package/dist/model/strategy/adapter/dataVariant/index.js +4 -0
  9. package/dist/model/strategy/adapter/dataVariant/type.d.ts +148 -0
  10. package/dist/model/strategy/adapter/dataVariant/type.js +54 -0
  11. package/dist/model/strategy/adapter/index.d.ts +4 -0
  12. package/dist/model/strategy/adapter/index.js +5 -1
  13. package/dist/model/strategy/adapter/promotion/adapter.d.ts +0 -4
  14. package/dist/model/strategy/adapter/promotion/adapter.js +0 -23
  15. package/dist/model/strategy/adapter/promotion/evaluator.d.ts +0 -17
  16. package/dist/model/strategy/adapter/promotion/evaluator.js +6 -279
  17. package/dist/model/strategy/adapter/promotion/examples.d.ts +0 -86
  18. package/dist/model/strategy/adapter/promotion/examples.js +0 -99
  19. package/dist/model/strategy/adapter/promotion/index.d.ts +1 -1
  20. package/dist/model/strategy/adapter/promotion/index.js +0 -9
  21. package/dist/model/strategy/adapter/promotion/type.d.ts +2 -90
  22. package/dist/model/strategy/adapter/promotion/type.js +0 -45
  23. package/dist/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +16 -10
  24. package/dist/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +2 -1
  25. package/dist/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +1 -1
  26. package/dist/modules/BookingContext/utils/cacheItemToBookingInput.js +32 -1
  27. package/dist/modules/Discount/index.d.ts +5 -2
  28. package/dist/modules/Discount/index.js +30 -7
  29. package/dist/modules/Discount/types.d.ts +4 -0
  30. package/dist/modules/Order/index.d.ts +14 -2
  31. package/dist/modules/Order/index.js +1035 -736
  32. package/dist/modules/Order/types.d.ts +16 -0
  33. package/dist/modules/Order/utils/orderCollectionIdentity.d.ts +53 -0
  34. package/dist/modules/Order/utils/orderCollectionIdentity.js +405 -0
  35. package/dist/modules/Order/utils.d.ts +4 -3
  36. package/dist/modules/Order/utils.js +54 -61
  37. package/dist/modules/Product/types.d.ts +22 -0
  38. package/dist/modules/ProductList/index.d.ts +1 -1
  39. package/dist/modules/ProductList/index.js +4 -2
  40. package/dist/modules/ProductList/types.d.ts +2 -0
  41. package/dist/modules/Rules/index.d.ts +2 -9
  42. package/dist/modules/Rules/index.js +69 -43
  43. package/dist/modules/Rules/types.d.ts +10 -1
  44. package/dist/server/index.d.ts +55 -0
  45. package/dist/server/index.js +1161 -742
  46. package/dist/server/modules/order/index.d.ts +10 -4
  47. package/dist/server/modules/order/index.js +404 -399
  48. package/dist/server/modules/order/types.d.ts +4 -0
  49. package/dist/server/modules/products/index.d.ts +31 -8
  50. package/dist/server/modules/products/index.js +549 -390
  51. package/dist/server/modules/products/types.d.ts +18 -0
  52. package/dist/solution/BaseSales/index.d.ts +21 -1
  53. package/dist/solution/BaseSales/index.js +1136 -789
  54. package/dist/solution/BaseSales/types.d.ts +6 -1
  55. package/dist/solution/BaseSales/types.js +1 -1
  56. package/dist/solution/BaseSales/utils/cartPromotion.d.ts +1 -3
  57. package/dist/solution/BaseSales/utils/cartPromotion.js +48 -81
  58. package/dist/solution/BaseSales/utils/parseSalesResponse.d.ts +3 -3
  59. package/dist/solution/BaseSales/utils/parseSalesResponse.js +6 -8
  60. package/dist/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +14 -1
  61. package/dist/solution/BookingByStep/index.d.ts +1 -1
  62. package/dist/solution/BookingTicket/index.d.ts +1 -1
  63. package/dist/solution/BookingTicket/index.js +59 -25
  64. package/dist/solution/BookingTicket/types.d.ts +2 -0
  65. package/dist/solution/ScanOrder/index.js +20 -31
  66. package/dist/solution/ShopDiscount/index.js +15 -14
  67. package/dist/solution/VenueBooking/index.js +19 -30
  68. package/lib/model/strategy/adapter/dataVariant/adapter.d.ts +50 -0
  69. package/lib/model/strategy/adapter/dataVariant/adapter.js +149 -0
  70. package/lib/model/strategy/adapter/dataVariant/evaluator.d.ts +89 -0
  71. package/lib/model/strategy/adapter/dataVariant/evaluator.js +583 -0
  72. package/lib/model/strategy/adapter/dataVariant/examples.d.ts +39 -0
  73. package/lib/model/strategy/adapter/dataVariant/examples.js +293 -0
  74. package/lib/model/strategy/adapter/dataVariant/index.d.ts +4 -0
  75. package/lib/model/strategy/adapter/dataVariant/index.js +38 -0
  76. package/lib/model/strategy/adapter/dataVariant/type.d.ts +148 -0
  77. package/lib/model/strategy/adapter/dataVariant/type.js +31 -0
  78. package/lib/model/strategy/adapter/index.d.ts +4 -0
  79. package/lib/model/strategy/adapter/index.js +13 -2
  80. package/lib/model/strategy/adapter/promotion/adapter.d.ts +0 -4
  81. package/lib/model/strategy/adapter/promotion/adapter.js +0 -20
  82. package/lib/model/strategy/adapter/promotion/evaluator.d.ts +0 -17
  83. package/lib/model/strategy/adapter/promotion/evaluator.js +0 -235
  84. package/lib/model/strategy/adapter/promotion/examples.d.ts +0 -86
  85. package/lib/model/strategy/adapter/promotion/examples.js +0 -91
  86. package/lib/model/strategy/adapter/promotion/index.d.ts +1 -1
  87. package/lib/model/strategy/adapter/promotion/index.js +0 -51
  88. package/lib/model/strategy/adapter/promotion/type.d.ts +2 -90
  89. package/lib/model/strategy/adapter/promotion/type.js +0 -2
  90. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +5 -0
  91. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +1 -0
  92. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +1 -1
  93. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +23 -2
  94. package/lib/modules/Discount/index.d.ts +5 -2
  95. package/lib/modules/Discount/index.js +23 -3
  96. package/lib/modules/Discount/types.d.ts +4 -0
  97. package/lib/modules/Order/index.d.ts +14 -2
  98. package/lib/modules/Order/index.js +326 -60
  99. package/lib/modules/Order/types.d.ts +16 -0
  100. package/lib/modules/Order/utils/orderCollectionIdentity.d.ts +53 -0
  101. package/lib/modules/Order/utils/orderCollectionIdentity.js +415 -0
  102. package/lib/modules/Order/utils.d.ts +4 -3
  103. package/lib/modules/Order/utils.js +22 -23
  104. package/lib/modules/Product/types.d.ts +22 -0
  105. package/lib/modules/ProductList/index.d.ts +1 -1
  106. package/lib/modules/ProductList/index.js +4 -2
  107. package/lib/modules/ProductList/types.d.ts +2 -0
  108. package/lib/modules/Rules/index.d.ts +2 -9
  109. package/lib/modules/Rules/index.js +61 -29
  110. package/lib/modules/Rules/types.d.ts +10 -1
  111. package/lib/server/index.d.ts +55 -0
  112. package/lib/server/index.js +327 -31
  113. package/lib/server/modules/order/index.d.ts +10 -4
  114. package/lib/server/modules/order/index.js +198 -139
  115. package/lib/server/modules/order/types.d.ts +4 -0
  116. package/lib/server/modules/products/index.d.ts +31 -8
  117. package/lib/server/modules/products/index.js +134 -35
  118. package/lib/server/modules/products/types.d.ts +18 -0
  119. package/lib/solution/BaseSales/index.d.ts +21 -1
  120. package/lib/solution/BaseSales/index.js +313 -72
  121. package/lib/solution/BaseSales/types.d.ts +6 -1
  122. package/lib/solution/BaseSales/utils/cartPromotion.d.ts +1 -3
  123. package/lib/solution/BaseSales/utils/cartPromotion.js +29 -60
  124. package/lib/solution/BaseSales/utils/parseSalesResponse.d.ts +3 -3
  125. package/lib/solution/BaseSales/utils/parseSalesResponse.js +4 -5
  126. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +8 -0
  127. package/lib/solution/BookingByStep/index.d.ts +1 -1
  128. package/lib/solution/BookingTicket/index.d.ts +1 -1
  129. package/lib/solution/BookingTicket/index.js +33 -8
  130. package/lib/solution/BookingTicket/types.d.ts +2 -0
  131. package/lib/solution/ScanOrder/index.js +0 -8
  132. package/lib/solution/ShopDiscount/index.js +2 -1
  133. package/lib/solution/VenueBooking/index.js +0 -8
  134. package/package.json +1 -1
@@ -198,6 +198,7 @@ export interface OrderProduct extends OrderProductIdentity {
198
198
  product_bundle: any[];
199
199
  booking_uid?: string;
200
200
  product_title?: OrderLocalizedText;
201
+ product_cover?: string;
201
202
  metadata: Record<string, any>;
202
203
  note?: string;
203
204
  }
@@ -308,6 +309,7 @@ export interface OrderState {
308
309
  lastOrderInfo?: Record<string, any>;
309
310
  syncState?: OrderSyncState;
310
311
  discountList: any[];
312
+ availableWalletIds?: number[];
311
313
  discount: DiscountModule | null;
312
314
  rules: RulesModule | null;
313
315
  }
@@ -340,6 +342,19 @@ export interface UpdateOrderProductParams {
340
342
  * });
341
343
  */
342
344
  allow_booking_reprice?: boolean;
345
+ /**
346
+ * Change time 重报价后,允许当前预约商品行重新应用已选编辑态折扣卡。
347
+ *
348
+ * @example
349
+ * await order.updateOrderProduct({
350
+ * product_id: 1,
351
+ * product_variant_id: 0,
352
+ * updates: { discount_list: [] },
353
+ * booking: { duration: 2 },
354
+ * allow_booking_discount_reapply: true,
355
+ * });
356
+ */
357
+ allow_booking_discount_reapply?: boolean;
343
358
  }
344
359
  /** 仅更新购物车行数量;行定位语义与 updateOrderProduct / removeProductFromOrder 保持一致 */
345
360
  export interface UpdateOrderProductQuantityParams extends OrderProductIdentity {
@@ -761,6 +776,7 @@ export interface OrderModuleAPI {
761
776
  apply?: boolean;
762
777
  }) => Promise<Discount[]>;
763
778
  getDiscountList: () => Discount[];
779
+ getAvailableWalletIds: () => number[];
764
780
  applyDiscount: () => void;
765
781
  /**
766
782
  * 注入促销评估器。
@@ -0,0 +1,53 @@
1
+ export type OrderCollectionKind = 'product' | 'booking' | 'payment';
2
+ export interface OrderCollectionIdentityStats {
3
+ backfilledUidCount: number;
4
+ collapsedDuplicateCount: number;
5
+ uidConflictCount: number;
6
+ anonymousRowCount: number;
7
+ }
8
+ export interface OrderCollectionUidRemap {
9
+ kind: OrderCollectionKind;
10
+ from: string;
11
+ to: string;
12
+ persistentId: string | null;
13
+ /** 默认全局迁移;UID 冲突时只能迁移能由另一侧 UID 明确定位的引用。 */
14
+ scope?: 'global' | 'linked-owner';
15
+ referenceOwnerUid?: string | null;
16
+ }
17
+ export interface NormalizeOrderCollectionResult<T> {
18
+ items: T[];
19
+ stats: OrderCollectionIdentityStats;
20
+ uidRemaps: OrderCollectionUidRemap[];
21
+ }
22
+ export interface NormalizeOrderCollectionsResult<T> {
23
+ order: T;
24
+ stats: Record<OrderCollectionKind, OrderCollectionIdentityStats>;
25
+ uidRemaps: OrderCollectionUidRemap[];
26
+ }
27
+ export declare function createUuidV4(): string;
28
+ export declare function isBlankOrderCollectionIdentity(value: unknown): boolean;
29
+ export declare function getOrderCollectionPersistentId(kind: OrderCollectionKind, item: unknown): string | null;
30
+ export declare function getOrderCollectionUid(kind: OrderCollectionKind, item: unknown): string | null;
31
+ export declare function buildOrderCollectionFallbackUid(kind: OrderCollectionKind, persistentId: string | number): string;
32
+ export declare function getOrderCollectionReferenceUid(kind: OrderCollectionKind, item: unknown): string | null;
33
+ export declare function setOrderCollectionUid<T>(kind: OrderCollectionKind, item: T, uid: string): T;
34
+ /**
35
+ * 持久化行 ID 是服务端事实主键;只有至少一侧尚未持久化时,才允许用 runtime UID 对齐。
36
+ */
37
+ export declare function isSameOrderCollectionItem(kind: OrderCollectionKind, left: unknown, right: unknown): boolean;
38
+ export declare function mergeOrderCollectionItems<T>(kind: OrderCollectionKind, currentItem: T, incomingItem: T, options?: {
39
+ ensureUid?: boolean;
40
+ createAnonymousUid?: () => string;
41
+ }): T;
42
+ /**
43
+ * 规范化单一数组:强身份重复时保留首次位置、用最后一条业务字段覆盖,并统一补 UID。
44
+ */
45
+ export declare function normalizeOrderCollection<T>(kind: OrderCollectionKind, items: T[] | null | undefined, options?: {
46
+ ensureUid?: boolean;
47
+ createAnonymousUid?: () => string;
48
+ }): NormalizeOrderCollectionResult<T>;
49
+ export declare function applyOrderCollectionUidRemaps<T extends Record<string, any>>(sourceOrder: T, uidRemaps: OrderCollectionUidRemap[]): T;
50
+ export declare function normalizeOrderCollections<T extends Record<string, any>>(sourceOrder: T, options?: {
51
+ ensureUid?: boolean;
52
+ createAnonymousUid?: () => string;
53
+ }): NormalizeOrderCollectionsResult<T>;
@@ -0,0 +1,415 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/modules/Order/utils/orderCollectionIdentity.ts
20
+ var orderCollectionIdentity_exports = {};
21
+ __export(orderCollectionIdentity_exports, {
22
+ applyOrderCollectionUidRemaps: () => applyOrderCollectionUidRemaps,
23
+ buildOrderCollectionFallbackUid: () => buildOrderCollectionFallbackUid,
24
+ createUuidV4: () => createUuidV4,
25
+ getOrderCollectionPersistentId: () => getOrderCollectionPersistentId,
26
+ getOrderCollectionReferenceUid: () => getOrderCollectionReferenceUid,
27
+ getOrderCollectionUid: () => getOrderCollectionUid,
28
+ isBlankOrderCollectionIdentity: () => isBlankOrderCollectionIdentity,
29
+ isSameOrderCollectionItem: () => isSameOrderCollectionItem,
30
+ mergeOrderCollectionItems: () => mergeOrderCollectionItems,
31
+ normalizeOrderCollection: () => normalizeOrderCollection,
32
+ normalizeOrderCollections: () => normalizeOrderCollections,
33
+ setOrderCollectionUid: () => setOrderCollectionUid
34
+ });
35
+ module.exports = __toCommonJS(orderCollectionIdentity_exports);
36
+ var import_lodash_es = require("lodash-es");
37
+ var IDENTITY_CONFIG = {
38
+ product: {
39
+ persistentIdField: "order_detail_id",
40
+ uidField: "unique_identification_number",
41
+ fallbackPrefix: "os-fallback:product:order-detail"
42
+ },
43
+ booking: {
44
+ persistentIdField: "schedule_event_id",
45
+ uidField: "unique_identification_number",
46
+ fallbackPrefix: "os-fallback:booking:schedule-event"
47
+ },
48
+ payment: {
49
+ persistentIdField: "order_payment_id",
50
+ uidField: "unique_payment_number",
51
+ fallbackPrefix: "os-fallback:payment:order-payment"
52
+ }
53
+ };
54
+ function createUuidV4() {
55
+ const template = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";
56
+ return template.replace(/[xy]/g, (char) => {
57
+ const randomValue = Math.floor(Math.random() * 16);
58
+ const value = char === "x" ? randomValue : randomValue & 3 | 8;
59
+ return value.toString(16);
60
+ });
61
+ }
62
+ function isBlankOrderCollectionIdentity(value) {
63
+ return value === void 0 || value === null || value === "";
64
+ }
65
+ function getOrderCollectionPersistentId(kind, item) {
66
+ const record = item;
67
+ if (!record)
68
+ return null;
69
+ const value = record[IDENTITY_CONFIG[kind].persistentIdField];
70
+ if (isBlankOrderCollectionIdentity(value))
71
+ return null;
72
+ return String(value);
73
+ }
74
+ function getOrderCollectionUid(kind, item) {
75
+ var _a;
76
+ const record = item;
77
+ if (!record)
78
+ return null;
79
+ const uidField = IDENTITY_CONFIG[kind].uidField;
80
+ const metadataValue = (_a = record.metadata) == null ? void 0 : _a[uidField];
81
+ if (!isBlankOrderCollectionIdentity(metadataValue))
82
+ return String(metadataValue);
83
+ const topLevelValue = record[uidField];
84
+ if (isBlankOrderCollectionIdentity(topLevelValue))
85
+ return null;
86
+ return String(topLevelValue);
87
+ }
88
+ function buildOrderCollectionFallbackUid(kind, persistentId) {
89
+ return `${IDENTITY_CONFIG[kind].fallbackPrefix}:${String(persistentId)}`;
90
+ }
91
+ function getOrderCollectionReferenceUid(kind, item) {
92
+ const uid = getOrderCollectionUid(kind, item);
93
+ if (uid)
94
+ return uid;
95
+ const persistentId = getOrderCollectionPersistentId(kind, item);
96
+ return persistentId ? buildOrderCollectionFallbackUid(kind, persistentId) : null;
97
+ }
98
+ function setOrderCollectionUid(kind, item, uid) {
99
+ const record = (0, import_lodash_es.cloneDeep)(item || {});
100
+ const uidField = IDENTITY_CONFIG[kind].uidField;
101
+ record.metadata = {
102
+ ...record.metadata && typeof record.metadata === "object" ? record.metadata : {},
103
+ [uidField]: uid
104
+ };
105
+ delete record[uidField];
106
+ return record;
107
+ }
108
+ function isSameOrderCollectionItem(kind, left, right) {
109
+ const leftPersistentId = getOrderCollectionPersistentId(kind, left);
110
+ const rightPersistentId = getOrderCollectionPersistentId(kind, right);
111
+ if (leftPersistentId && rightPersistentId) {
112
+ return leftPersistentId === rightPersistentId;
113
+ }
114
+ const leftUid = getOrderCollectionUid(kind, left);
115
+ const rightUid = getOrderCollectionUid(kind, right);
116
+ return Boolean(leftUid && rightUid && leftUid === rightUid);
117
+ }
118
+ function mergeOrderCollectionItems(kind, currentItem, incomingItem, options) {
119
+ var _a;
120
+ const current = (0, import_lodash_es.cloneDeep)(currentItem || {});
121
+ const incoming = (0, import_lodash_es.cloneDeep)(incomingItem || {});
122
+ const persistentIdField = IDENTITY_CONFIG[kind].persistentIdField;
123
+ const currentPersistentIdValue = current[persistentIdField];
124
+ const incomingPersistentIdValue = incoming[persistentIdField];
125
+ const incomingUid = getOrderCollectionUid(kind, incoming);
126
+ const currentUid = getOrderCollectionUid(kind, current);
127
+ const persistentId = getOrderCollectionPersistentId(kind, incoming) || getOrderCollectionPersistentId(kind, current);
128
+ const merged = {
129
+ ...current,
130
+ ...incoming,
131
+ metadata: {
132
+ ...current.metadata && typeof current.metadata === "object" ? current.metadata : {},
133
+ ...incoming.metadata && typeof incoming.metadata === "object" ? incoming.metadata : {}
134
+ }
135
+ };
136
+ if (!isBlankOrderCollectionIdentity(incomingPersistentIdValue)) {
137
+ merged[persistentIdField] = incomingPersistentIdValue;
138
+ } else if (!isBlankOrderCollectionIdentity(currentPersistentIdValue)) {
139
+ merged[persistentIdField] = currentPersistentIdValue;
140
+ }
141
+ const incomingUidIsDerived = Boolean(
142
+ incomingUid && persistentId && (incomingUid === buildOrderCollectionFallbackUid(kind, persistentId) || incomingUid.startsWith(`${buildOrderCollectionFallbackUid(kind, persistentId)}:conflict:`))
143
+ );
144
+ const uid = (incomingUid && !incomingUidIsDerived ? incomingUid : null) || currentUid || incomingUid || ((options == null ? void 0 : options.ensureUid) === false ? null : persistentId ? buildOrderCollectionFallbackUid(kind, persistentId) : ((_a = options == null ? void 0 : options.createAnonymousUid) == null ? void 0 : _a.call(options)) || createUuidV4());
145
+ return uid ? setOrderCollectionUid(kind, merged, uid) : merged;
146
+ }
147
+ function createEmptyIdentityStats() {
148
+ return {
149
+ backfilledUidCount: 0,
150
+ collapsedDuplicateCount: 0,
151
+ uidConflictCount: 0,
152
+ anonymousRowCount: 0
153
+ };
154
+ }
155
+ function allocateAnonymousUid(occupiedUids, createAnonymousUid) {
156
+ let uid = createAnonymousUid();
157
+ while (occupiedUids.has(uid))
158
+ uid = createAnonymousUid();
159
+ return uid;
160
+ }
161
+ function allocatePersistentConflictUid(kind, persistentId, occupiedUids) {
162
+ const fallbackUid = buildOrderCollectionFallbackUid(kind, persistentId);
163
+ if (!occupiedUids.has(fallbackUid))
164
+ return fallbackUid;
165
+ let suffix = 1;
166
+ let candidate = `${fallbackUid}:conflict:${suffix}`;
167
+ while (occupiedUids.has(candidate)) {
168
+ suffix += 1;
169
+ candidate = `${fallbackUid}:conflict:${suffix}`;
170
+ }
171
+ return candidate;
172
+ }
173
+ function normalizeOrderCollection(kind, items, options) {
174
+ var _a, _b;
175
+ const stats = createEmptyIdentityStats();
176
+ const uidRemaps = [];
177
+ const result = [];
178
+ const ensureUid = (options == null ? void 0 : options.ensureUid) !== false;
179
+ const createAnonymousUid = (options == null ? void 0 : options.createAnonymousUid) || createUuidV4;
180
+ for (const rawItem of items || []) {
181
+ const item = (0, import_lodash_es.cloneDeep)(rawItem);
182
+ const existingIndex = result.findIndex(
183
+ (existing) => isSameOrderCollectionItem(kind, existing, item)
184
+ );
185
+ if (existingIndex === -1) {
186
+ result.push(item);
187
+ continue;
188
+ }
189
+ const previousReferenceUid = getOrderCollectionReferenceUid(
190
+ kind,
191
+ result[existingIndex]
192
+ );
193
+ const incomingReferenceUid = getOrderCollectionReferenceUid(kind, item);
194
+ result[existingIndex] = mergeOrderCollectionItems(
195
+ kind,
196
+ result[existingIndex],
197
+ item,
198
+ { ensureUid: false }
199
+ );
200
+ const nextUid = getOrderCollectionUid(kind, result[existingIndex]);
201
+ if (nextUid) {
202
+ for (const from of /* @__PURE__ */ new Set([previousReferenceUid, incomingReferenceUid])) {
203
+ if (!from || from === nextUid)
204
+ continue;
205
+ uidRemaps.push({
206
+ kind,
207
+ from,
208
+ to: nextUid,
209
+ persistentId: getOrderCollectionPersistentId(kind, result[existingIndex])
210
+ });
211
+ }
212
+ }
213
+ stats.collapsedDuplicateCount += 1;
214
+ }
215
+ if (!ensureUid)
216
+ return { items: result, stats, uidRemaps };
217
+ const occupiedUids = /* @__PURE__ */ new Set();
218
+ for (let index = 0; index < result.length; index += 1) {
219
+ let item = result[index];
220
+ const persistentId = getOrderCollectionPersistentId(kind, item);
221
+ let uid = getOrderCollectionUid(kind, item);
222
+ if (!uid) {
223
+ uid = persistentId ? buildOrderCollectionFallbackUid(kind, persistentId) : allocateAnonymousUid(occupiedUids, createAnonymousUid);
224
+ item = setOrderCollectionUid(kind, item, uid);
225
+ result[index] = item;
226
+ stats.backfilledUidCount += 1;
227
+ if (!persistentId)
228
+ stats.anonymousRowCount += 1;
229
+ }
230
+ if (occupiedUids.has(uid)) {
231
+ const replacementUid = persistentId ? allocatePersistentConflictUid(kind, persistentId, occupiedUids) : allocateAnonymousUid(occupiedUids, createAnonymousUid);
232
+ result[index] = setOrderCollectionUid(kind, item, replacementUid);
233
+ uidRemaps.push({
234
+ kind,
235
+ from: uid,
236
+ to: replacementUid,
237
+ persistentId,
238
+ scope: "linked-owner",
239
+ referenceOwnerUid: kind === "product" ? String(
240
+ (item == null ? void 0 : item.booking_uid) || ((_a = item == null ? void 0 : item.metadata) == null ? void 0 : _a.booking_uid) || ""
241
+ ) || null : kind === "booking" ? String(
242
+ (item == null ? void 0 : item.product_uid) || ((_b = item == null ? void 0 : item.metadata) == null ? void 0 : _b.product_uid) || ""
243
+ ) || null : null
244
+ });
245
+ uid = replacementUid;
246
+ stats.uidConflictCount += 1;
247
+ }
248
+ occupiedUids.add(uid);
249
+ }
250
+ return { items: result, stats, uidRemaps };
251
+ }
252
+ function applyOrderCollectionUidRemaps(sourceOrder, uidRemaps) {
253
+ var _a, _b, _c, _d, _e;
254
+ if (!uidRemaps.length)
255
+ return sourceOrder;
256
+ const order = (0, import_lodash_es.cloneDeep)(sourceOrder);
257
+ const hasAmbiguousLinkedOwner = (remap) => {
258
+ if (remap.scope !== "linked-owner" || !remap.referenceOwnerUid)
259
+ return false;
260
+ const ownerKind = remap.kind === "product" ? "booking" : remap.kind === "booking" ? "product" : null;
261
+ if (!ownerKind)
262
+ return false;
263
+ return uidRemaps.some(
264
+ (candidate) => candidate.scope === "linked-owner" && candidate.kind === ownerKind && candidate.from === remap.referenceOwnerUid
265
+ );
266
+ };
267
+ for (const remap of uidRemaps) {
268
+ if (remap.from === remap.to)
269
+ continue;
270
+ const linkedOwnerIsAmbiguous = hasAmbiguousLinkedOwner(remap);
271
+ if (remap.kind === "product") {
272
+ for (const booking of order.bookings || []) {
273
+ if (remap.scope === "linked-owner" && (linkedOwnerIsAmbiguous || getOrderCollectionUid("booking", booking) !== remap.referenceOwnerUid)) {
274
+ continue;
275
+ }
276
+ if (String((booking == null ? void 0 : booking.product_uid) || "") === remap.from) {
277
+ booking.product_uid = remap.to;
278
+ }
279
+ if (String(((_a = booking == null ? void 0 : booking.metadata) == null ? void 0 : _a.product_uid) || "") === remap.from) {
280
+ booking.metadata = { ...booking.metadata || {}, product_uid: remap.to };
281
+ }
282
+ }
283
+ if (remap.scope !== "linked-owner") {
284
+ for (const product of order.products || []) {
285
+ if (String(((_b = product == null ? void 0 : product.metadata) == null ? void 0 : _b.parent_unique_identification_number) || "") === remap.from) {
286
+ product.metadata = {
287
+ ...product.metadata || {},
288
+ parent_unique_identification_number: remap.to
289
+ };
290
+ }
291
+ const giftInfo = (_c = product == null ? void 0 : product.metadata) == null ? void 0 : _c._giftInfo;
292
+ if (giftInfo && typeof giftInfo === "object") {
293
+ const sourceProductIds = Array.isArray(giftInfo.sourceProductIds) ? giftInfo.sourceProductIds.map(
294
+ (uid) => String(uid) === remap.from ? remap.to : uid
295
+ ) : giftInfo.sourceProductIds;
296
+ const sourceProductId = String(giftInfo.sourceProductId || "") === remap.from ? remap.to : giftInfo.sourceProductId;
297
+ product.metadata = {
298
+ ...product.metadata || {},
299
+ _giftInfo: {
300
+ ...giftInfo,
301
+ ...sourceProductIds !== void 0 ? { sourceProductIds } : {},
302
+ ...sourceProductId !== void 0 ? { sourceProductId } : {}
303
+ }
304
+ };
305
+ }
306
+ }
307
+ }
308
+ const productsByUid = (_d = order._extend) == null ? void 0 : _d.productsByUid;
309
+ const cachedProduct = productsByUid == null ? void 0 : productsByUid[remap.from];
310
+ const cachedPersistentId = getOrderCollectionPersistentId(
311
+ "product",
312
+ (cachedProduct == null ? void 0 : cachedProduct.origin) || cachedProduct
313
+ );
314
+ if (productsByUid && remap.scope === "linked-owner") {
315
+ const retainedProduct = (order.products || []).find(
316
+ (product) => getOrderCollectionUid("product", product) === remap.from
317
+ );
318
+ const remappedProduct = (order.products || []).find(
319
+ (product) => getOrderCollectionUid("product", product) === remap.to
320
+ );
321
+ if (cachedProduct && remap.persistentId && cachedPersistentId === remap.persistentId) {
322
+ productsByUid[remap.to] = {
323
+ ...cachedProduct || {},
324
+ ...productsByUid[remap.to] || {}
325
+ };
326
+ if (retainedProduct) {
327
+ productsByUid[remap.from] = {
328
+ ...cachedProduct || {},
329
+ origin: (0, import_lodash_es.cloneDeep)(retainedProduct)
330
+ };
331
+ }
332
+ } else if (remappedProduct && !productsByUid[remap.to]) {
333
+ productsByUid[remap.to] = { origin: (0, import_lodash_es.cloneDeep)(remappedProduct) };
334
+ }
335
+ continue;
336
+ }
337
+ if (cachedProduct && remap.scope !== "linked-owner") {
338
+ productsByUid[remap.to] = {
339
+ ...cachedProduct || {},
340
+ ...productsByUid[remap.to] || {}
341
+ };
342
+ delete productsByUid[remap.from];
343
+ }
344
+ }
345
+ if (remap.kind === "booking") {
346
+ for (const product of order.products || []) {
347
+ if (remap.scope === "linked-owner" && (linkedOwnerIsAmbiguous || getOrderCollectionUid("product", product) !== remap.referenceOwnerUid)) {
348
+ continue;
349
+ }
350
+ if (String((product == null ? void 0 : product.booking_uid) || "") === remap.from) {
351
+ product.booking_uid = remap.to;
352
+ }
353
+ if (String(((_e = product == null ? void 0 : product.metadata) == null ? void 0 : _e.booking_uid) || "") === remap.from) {
354
+ product.metadata = { ...product.metadata || {}, booking_uid: remap.to };
355
+ }
356
+ }
357
+ }
358
+ }
359
+ return order;
360
+ }
361
+ function normalizeOrderCollections(sourceOrder, options) {
362
+ let order = (0, import_lodash_es.cloneDeep)(sourceOrder || {});
363
+ const orderRecord = order;
364
+ const productResult = normalizeOrderCollection(
365
+ "product",
366
+ Array.isArray(orderRecord.products) ? orderRecord.products : [],
367
+ options
368
+ );
369
+ const bookingResult = normalizeOrderCollection(
370
+ "booking",
371
+ Array.isArray(orderRecord.bookings) ? orderRecord.bookings : [],
372
+ options
373
+ );
374
+ const paymentResult = normalizeOrderCollection(
375
+ "payment",
376
+ Array.isArray(orderRecord.payments) ? orderRecord.payments : [],
377
+ options
378
+ );
379
+ if (Array.isArray(orderRecord.products))
380
+ orderRecord.products = productResult.items;
381
+ if (Array.isArray(orderRecord.bookings))
382
+ orderRecord.bookings = bookingResult.items;
383
+ if (Array.isArray(orderRecord.payments))
384
+ orderRecord.payments = paymentResult.items;
385
+ const uidRemaps = [
386
+ ...productResult.uidRemaps,
387
+ ...bookingResult.uidRemaps,
388
+ ...paymentResult.uidRemaps
389
+ ];
390
+ order = applyOrderCollectionUidRemaps(order, uidRemaps);
391
+ return {
392
+ order,
393
+ stats: {
394
+ product: productResult.stats,
395
+ booking: bookingResult.stats,
396
+ payment: paymentResult.stats
397
+ },
398
+ uidRemaps
399
+ };
400
+ }
401
+ // Annotate the CommonJS export names for ESM import in node:
402
+ 0 && (module.exports = {
403
+ applyOrderCollectionUidRemaps,
404
+ buildOrderCollectionFallbackUid,
405
+ createUuidV4,
406
+ getOrderCollectionPersistentId,
407
+ getOrderCollectionReferenceUid,
408
+ getOrderCollectionUid,
409
+ isBlankOrderCollectionIdentity,
410
+ isSameOrderCollectionItem,
411
+ mergeOrderCollectionItems,
412
+ normalizeOrderCollection,
413
+ normalizeOrderCollections,
414
+ setOrderCollectionUid
415
+ });
@@ -3,6 +3,7 @@ import type { CartItem } from "../Cart";
3
3
  import type { OrderProductDiscountItem, OrderProduct, OrderSubmitPayload, OrderSubmitProduct, OrderSummary, OrderTempOrder } from './types';
4
4
  import type { RulesParamsHooks } from '../Rules/types';
5
5
  import type { MapOrderPaymentsOptions, OrderPaymentData, OrderPaymentSource } from './types';
6
+ import { createUuidV4 } from './utils/orderCollectionIdentity';
6
7
  export interface OrderProductsDepositProtocol {
7
8
  id: number;
8
9
  title: string;
@@ -67,8 +68,8 @@ export declare function sumOptionUnitPrice(options?: Array<{
67
68
  /**
68
69
  * 仅基于 tempOrder.products 重算整单定金。
69
70
  *
70
- * 对齐 Checkout relation_products 分支:商品定金先按商品规则计算,
71
- * 再扣减商品券/折扣卡抵扣金额;tempOrder.bookings 不参与这里的计算。
71
+ * 商品折扣在进入定金计算前已体现在商品行价格字段中,
72
+ * 因此这里只按商品定金规则汇总,不再扣减 discount_list;tempOrder.bookings 不参与这里的计算。
72
73
  */
73
74
  export declare function calculateOrderProductsDeposit(products?: OrderProduct[], options?: {
74
75
  productsByUid?: Record<string, Record<string, any>>;
@@ -177,7 +178,7 @@ export declare const mergeRelationForms: (relationForms: {
177
178
  form_record_ids: number[];
178
179
  }[];
179
180
  export declare const getAllDiscountList: (cartItem: CartItem) => any;
180
- export declare function createUuidV4(): string;
181
+ export { createUuidV4 };
181
182
  export declare function isTempOrder(data: any): data is OrderTempOrder;
182
183
  export declare function formatDateTime(date: Date): string;
183
184
  export declare function normalizeBookingIsAll(booking: Record<string, any>): 0 | 1;
@@ -37,7 +37,7 @@ __export(utils_exports, {
37
37
  createDefaultOrderRulesHooks: () => createDefaultOrderRulesHooks,
38
38
  createDefaultTempOrder: () => createDefaultTempOrder,
39
39
  createEmptySummary: () => import_utils2.createEmptySummary,
40
- createUuidV4: () => createUuidV4,
40
+ createUuidV4: () => import_orderCollectionIdentity.createUuidV4,
41
41
  ensureManualProductDiscountList: () => import_manualProductDiscount.ensureManualProductDiscountList,
42
42
  ensureProductSku: () => ensureProductSku,
43
43
  findManualProductDiscountItem: () => import_manualProductDiscount.findManualProductDiscountItem,
@@ -86,6 +86,7 @@ module.exports = __toCommonJS(utils_exports);
86
86
  var import_dayjs = __toESM(require("dayjs"));
87
87
  var import_decimal = __toESM(require("decimal.js"));
88
88
  var import_utils = require("../../solution/ScanOrder/utils");
89
+ var import_orderCollectionIdentity = require("./utils/orderCollectionIdentity");
89
90
  var import_utils2 = require("../../solution/ScanOrder/utils");
90
91
  var import_manualProductDiscount = require("./utils/manualProductDiscount");
91
92
  function composeLinePrice(params) {
@@ -286,9 +287,6 @@ function calculateOrderProductsDeposit(products = [], options) {
286
287
  if (!(deposit == null ? void 0 : deposit.total) || Number(deposit.total) <= 0)
287
288
  continue;
288
289
  total = total.plus(deposit.total);
289
- for (const discount of product.discount_list || []) {
290
- total = total.minus((discount == null ? void 0 : discount.amount) || 0);
291
- }
292
290
  for (const protocol of deposit.protocols || []) {
293
291
  if (!protocolMap.has(protocol.id))
294
292
  protocolMap.set(protocol.id, protocol);
@@ -446,12 +444,7 @@ function resolveEffectivePerUnitDiscount(product) {
446
444
  (sum, discount) => sum + Number((discount == null ? void 0 : discount.amount) || 0),
447
445
  0
448
446
  );
449
- const hasPromoDiscountItem = discountList.some(
450
- (item) => {
451
- var _a, _b;
452
- return (item == null ? void 0 : item.type) === "promotion" || (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";
453
- }
454
- );
447
+ const hasPromoDiscountItem = discountList.some((item) => (item == null ? void 0 : item.type) === "promotion");
455
448
  if (hasPromoDiscountItem)
456
449
  return fromList;
457
450
  const metadata = (product == null ? void 0 : product.metadata) || {};
@@ -500,13 +493,17 @@ function createDefaultOrderRulesHooks() {
500
493
  const current = currentByIdentity.get(getBundleIdentity(bundle));
501
494
  if (!current)
502
495
  return bundle;
496
+ const bundleWithDisplayFields = {
497
+ ...bundle,
498
+ ...isEmptyOrderProductDisplayValue(bundle.cover) && !isEmptyOrderProductDisplayValue(current.cover) ? { cover: current.cover } : {}
499
+ };
503
500
  const isProductPriceBundle = (bundle.price_type_ext ?? current.price_type_ext) === "product_price";
504
501
  if (!isProductPriceBundle)
505
- return bundle;
502
+ return bundleWithDisplayFields;
506
503
  const sourcePrice = current.price ?? current.custom_price ?? current.original_price ?? current.bundle_selling_price;
507
504
  const originalPrice = current.original_price ?? current.product_price ?? current.price ?? current.custom_price ?? sourcePrice;
508
505
  return {
509
- ...bundle,
506
+ ...bundleWithDisplayFields,
510
507
  ...sourcePrice !== void 0 ? { price: sourcePrice } : {},
511
508
  ...originalPrice !== void 0 ? { original_price: originalPrice } : {},
512
509
  ...current.original_total !== void 0 ? { original_total: current.original_total } : {}
@@ -645,14 +642,6 @@ var getAllDiscountList = (cartItem) => {
645
642
  });
646
643
  return discountList;
647
644
  };
648
- function createUuidV4() {
649
- const template = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";
650
- return template.replace(/[xy]/g, (char) => {
651
- const randomValue = Math.floor(Math.random() * 16);
652
- const value = char === "x" ? randomValue : randomValue & 3 | 8;
653
- return value.toString(16);
654
- });
655
- }
656
645
  function isTempOrder(data) {
657
646
  if (!data || typeof data !== "object")
658
647
  return false;
@@ -750,6 +739,7 @@ function formatSubmitBundleItems(bundle) {
750
739
  bundle_group_id: (rawBundle == null ? void 0 : rawBundle.bundle_group_id) ?? (rawBundle == null ? void 0 : rawBundle.group_id),
751
740
  bundle_id: (rawBundle == null ? void 0 : rawBundle.bundle_id) ?? (rawBundle == null ? void 0 : rawBundle.id),
752
741
  bundle_product_id: (rawBundle == null ? void 0 : rawBundle.bundle_product_id) ?? (rawBundle == null ? void 0 : rawBundle._bundle_product_id),
742
+ cover: rawBundle.cover,
753
743
  metadata: {
754
744
  ...submitMetadata,
755
745
  ...hasSubmitBundleDiscounts && bundleMapId !== void 0 ? { custom_product_bundle_map_id: bundleMapId } : {},
@@ -808,6 +798,9 @@ function normalizeSubmitProduct(product) {
808
798
  if (rawMetadata.is_rule !== void 0) {
809
799
  cleanMetadata.is_rule = rawMetadata.is_rule;
810
800
  }
801
+ if (rawMetadata.holder_config !== void 0) {
802
+ cleanMetadata.holder_config = rawMetadata.holder_config;
803
+ }
811
804
  const productSku = {
812
805
  ...submitProduct.product_sku && typeof submitProduct.product_sku === "object" ? submitProduct.product_sku : {},
813
806
  option: formatSubmitOptionItems((_a = submitProduct.product_sku) == null ? void 0 : _a.option)
@@ -938,7 +931,7 @@ function buildSubmitPayload(params) {
938
931
  enhance
939
932
  } = params;
940
933
  const scheduleDate = tempOrder.schedule_date || tempOrder.created_at || formatDateTime(now);
941
- const bookingUuid = createUuidV4();
934
+ const bookingUuid = (0, import_orderCollectionIdentity.createUuidV4)();
942
935
  const {
943
936
  _extend,
944
937
  relation_id: _relationId,
@@ -1086,7 +1079,7 @@ function formatV1Product(products) {
1086
1079
  note: String(product.note ?? ""),
1087
1080
  rowKey: product.product_id,
1088
1081
  session: null,
1089
- unique: createUuidV4()
1082
+ unique: (0, import_orderCollectionIdentity.createUuidV4)()
1090
1083
  };
1091
1084
  });
1092
1085
  }
@@ -1164,11 +1157,16 @@ function isHolderConfigRequired(holderConfig) {
1164
1157
  return Number(holderConfig.required) === 1;
1165
1158
  }
1166
1159
  function productRequiresFormSubject(tempOrder, product) {
1160
+ var _a, _b;
1161
+ const _orderProduct = (_a = tempOrder == null ? void 0 : tempOrder.products) == null ? void 0 : _a.find((item) => {
1162
+ return item.metadata.unique_identification_number === product._id || item.product_id === product.id;
1163
+ });
1167
1164
  const runtimeOrigin = getRuntimeProductOrigin(tempOrder, product);
1168
- return isHolderConfigRequired(product == null ? void 0 : product.holder_config) || isHolderConfigRequired(runtimeOrigin == null ? void 0 : runtimeOrigin.holder_config);
1165
+ return isHolderConfigRequired((_b = _orderProduct == null ? void 0 : _orderProduct.metadata) == null ? void 0 : _b.holder_config) || isHolderConfigRequired(runtimeOrigin == null ? void 0 : runtimeOrigin.holder_config) || isHolderConfigRequired(product == null ? void 0 : product.holder_config);
1169
1166
  }
1170
1167
  function resolveIsFormSubject(tempOrder, product) {
1171
1168
  var _a;
1169
+ debugger;
1172
1170
  if (((_a = tempOrder == null ? void 0 : tempOrder.holder) == null ? void 0 : _a.type) === "form")
1173
1171
  return true;
1174
1172
  if (product)
@@ -1197,6 +1195,7 @@ function mergeOrderProductDisplayFields(previous, next) {
1197
1195
  "product_name",
1198
1196
  "product_cover",
1199
1197
  "cover",
1198
+ "product_cover",
1200
1199
  "variant_title",
1201
1200
  "product_sku",
1202
1201
  "payment_price"