@pisell/pisellos 2.2.180 → 2.2.182

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 (175) hide show
  1. package/dist/model/strategy/adapter/promotion/index.js +9 -0
  2. package/dist/modules/BookingContext/index.d.ts +37 -0
  3. package/dist/modules/BookingContext/index.js +436 -0
  4. package/dist/modules/BookingContext/types.d.ts +102 -0
  5. package/dist/modules/BookingContext/types.js +51 -0
  6. package/dist/modules/BookingContext/utils/buildCacheItemFromOrderLine.d.ts +16 -0
  7. package/dist/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +276 -0
  8. package/dist/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.d.ts +8 -0
  9. package/dist/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +137 -0
  10. package/dist/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +75 -0
  11. package/dist/modules/BookingContext/utils/cacheItemToBookingInput.js +215 -0
  12. package/dist/modules/BookingContext/utils/flexible.d.ts +28 -0
  13. package/dist/modules/BookingContext/utils/flexible.js +56 -0
  14. package/dist/modules/BookingContext/utils/formatResourceList.d.ts +8 -0
  15. package/dist/modules/BookingContext/utils/formatResourceList.js +38 -0
  16. package/dist/modules/BookingContext/utils/index.d.ts +11 -0
  17. package/dist/modules/BookingContext/utils/index.js +11 -0
  18. package/dist/modules/BookingContext/utils/noResource.d.ts +13 -0
  19. package/dist/modules/BookingContext/utils/noResource.js +77 -0
  20. package/dist/modules/BookingContext/utils/productExtend.d.ts +72 -0
  21. package/dist/modules/BookingContext/utils/productExtend.js +339 -0
  22. package/dist/modules/BookingContext/utils/resourceErrors.d.ts +41 -0
  23. package/dist/modules/BookingContext/utils/resourceErrors.js +74 -0
  24. package/dist/modules/BookingContext/utils/resourceSelection.d.ts +7 -0
  25. package/dist/modules/BookingContext/utils/resourceSelection.js +24 -0
  26. package/dist/modules/BookingContext/utils/resources.d.ts +80 -0
  27. package/dist/modules/BookingContext/utils/resources.js +486 -0
  28. package/dist/modules/BookingContext/utils/serviceTimes.d.ts +55 -0
  29. package/dist/modules/BookingContext/utils/serviceTimes.js +151 -0
  30. package/dist/modules/BookingContext/utils/timeSlices.d.ts +42 -0
  31. package/dist/modules/BookingContext/utils/timeSlices.js +100 -0
  32. package/dist/modules/Customer/index.d.ts +6 -0
  33. package/dist/modules/Customer/index.js +129 -83
  34. package/dist/modules/Customer/types.d.ts +2 -0
  35. package/dist/modules/Discount/index.js +4 -3
  36. package/dist/modules/Discount/types.d.ts +1 -0
  37. package/dist/modules/Order/index.d.ts +101 -10
  38. package/dist/modules/Order/index.js +1444 -490
  39. package/dist/modules/Order/types.d.ts +201 -18
  40. package/dist/modules/Order/types.js +31 -0
  41. package/dist/modules/Order/utils/manualProductDiscount.d.ts +106 -0
  42. package/dist/modules/Order/utils/manualProductDiscount.js +210 -0
  43. package/dist/modules/Order/utils.d.ts +83 -1
  44. package/dist/modules/Order/utils.js +405 -61
  45. package/dist/modules/Product/index.d.ts +1 -1
  46. package/dist/modules/Quotation/index.d.ts +0 -1
  47. package/dist/modules/Quotation/index.js +23 -21
  48. package/dist/modules/Rules/index.d.ts +4 -0
  49. package/dist/modules/Rules/index.js +43 -39
  50. package/dist/modules/Rules/types.d.ts +1 -0
  51. package/dist/modules/SalesSummary/index.js +4 -2
  52. package/dist/modules/SalesSummary/utils.js +21 -7
  53. package/dist/modules/Schedule/index.js +6 -2
  54. package/dist/modules/index.d.ts +1 -0
  55. package/dist/modules/index.js +2 -1
  56. package/dist/server/index.js +87 -29
  57. package/dist/server/modules/order/index.d.ts +23 -0
  58. package/dist/server/modules/order/index.js +123 -46
  59. package/dist/server/modules/order/utils/filterOrders.js +20 -6
  60. package/dist/server/modules/products/index.d.ts +1 -1
  61. package/dist/server/modules/products/index.js +130 -113
  62. package/dist/server/modules/schedule/index.js +13 -6
  63. package/dist/solution/BaseSales/index.d.ts +89 -7
  64. package/dist/solution/BaseSales/index.js +1489 -366
  65. package/dist/solution/BaseSales/types.d.ts +67 -1
  66. package/dist/solution/BaseSales/types.js +3 -1
  67. package/dist/solution/BaseSales/utils/cartPromotion.d.ts +275 -0
  68. package/dist/solution/BaseSales/utils/cartPromotion.js +1258 -0
  69. package/dist/solution/BaseSales/utils/quotationPrice.d.ts +7 -0
  70. package/dist/solution/BaseSales/utils/quotationPrice.js +237 -0
  71. package/dist/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +68 -16
  72. package/dist/solution/BaseSales/utils.js +46 -8
  73. package/dist/solution/BookingByStep/index.d.ts +1 -1
  74. package/dist/solution/BookingTicket/index.d.ts +152 -2
  75. package/dist/solution/BookingTicket/index.js +848 -184
  76. package/dist/solution/BookingTicket/types.d.ts +2 -0
  77. package/dist/solution/BookingTicket/types.js +3 -0
  78. package/dist/solution/BookingTicket/utils/addProductDecision.d.ts +113 -0
  79. package/dist/solution/BookingTicket/utils/addProductDecision.js +346 -0
  80. package/dist/solution/BookingTicket/utils/cartView.js +4 -2
  81. package/dist/solution/ScanOrder/index.d.ts +9 -3
  82. package/dist/solution/ScanOrder/index.js +231 -128
  83. package/dist/solution/ScanOrder/utils.js +46 -8
  84. package/dist/solution/VenueBooking/index.d.ts +5 -2
  85. package/dist/solution/VenueBooking/index.js +103 -55
  86. package/dist/solution/VenueBooking/utils/slotMerge.d.ts +4 -0
  87. package/dist/solution/VenueBooking/utils/slotMerge.js +10 -0
  88. package/lib/model/strategy/adapter/promotion/index.js +49 -0
  89. package/lib/modules/BookingContext/index.d.ts +37 -0
  90. package/lib/modules/BookingContext/index.js +297 -0
  91. package/lib/modules/BookingContext/types.d.ts +102 -0
  92. package/lib/modules/BookingContext/types.js +34 -0
  93. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.d.ts +16 -0
  94. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +271 -0
  95. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.d.ts +8 -0
  96. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +141 -0
  97. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +75 -0
  98. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +198 -0
  99. package/lib/modules/BookingContext/utils/flexible.d.ts +28 -0
  100. package/lib/modules/BookingContext/utils/flexible.js +80 -0
  101. package/lib/modules/BookingContext/utils/formatResourceList.d.ts +8 -0
  102. package/lib/modules/BookingContext/utils/formatResourceList.js +50 -0
  103. package/lib/modules/BookingContext/utils/index.d.ts +11 -0
  104. package/lib/modules/BookingContext/utils/index.js +43 -0
  105. package/lib/modules/BookingContext/utils/noResource.d.ts +13 -0
  106. package/lib/modules/BookingContext/utils/noResource.js +90 -0
  107. package/lib/modules/BookingContext/utils/productExtend.d.ts +72 -0
  108. package/lib/modules/BookingContext/utils/productExtend.js +283 -0
  109. package/lib/modules/BookingContext/utils/resourceErrors.d.ts +41 -0
  110. package/lib/modules/BookingContext/utils/resourceErrors.js +80 -0
  111. package/lib/modules/BookingContext/utils/resourceSelection.d.ts +7 -0
  112. package/lib/modules/BookingContext/utils/resourceSelection.js +46 -0
  113. package/lib/modules/BookingContext/utils/resources.d.ts +80 -0
  114. package/lib/modules/BookingContext/utils/resources.js +377 -0
  115. package/lib/modules/BookingContext/utils/serviceTimes.d.ts +55 -0
  116. package/lib/modules/BookingContext/utils/serviceTimes.js +162 -0
  117. package/lib/modules/BookingContext/utils/timeSlices.d.ts +42 -0
  118. package/lib/modules/BookingContext/utils/timeSlices.js +124 -0
  119. package/lib/modules/Customer/index.d.ts +6 -0
  120. package/lib/modules/Customer/index.js +26 -11
  121. package/lib/modules/Customer/types.d.ts +2 -0
  122. package/lib/modules/Discount/index.js +5 -1
  123. package/lib/modules/Discount/types.d.ts +1 -0
  124. package/lib/modules/Order/index.d.ts +101 -10
  125. package/lib/modules/Order/index.js +751 -114
  126. package/lib/modules/Order/types.d.ts +201 -18
  127. package/lib/modules/Order/types.js +1 -0
  128. package/lib/modules/Order/utils/manualProductDiscount.d.ts +106 -0
  129. package/lib/modules/Order/utils/manualProductDiscount.js +206 -0
  130. package/lib/modules/Order/utils.d.ts +83 -1
  131. package/lib/modules/Order/utils.js +340 -22
  132. package/lib/modules/Product/index.d.ts +1 -1
  133. package/lib/modules/Quotation/index.d.ts +0 -1
  134. package/lib/modules/Quotation/index.js +18 -15
  135. package/lib/modules/Rules/index.d.ts +4 -0
  136. package/lib/modules/Rules/index.js +26 -27
  137. package/lib/modules/Rules/types.d.ts +1 -0
  138. package/lib/modules/SalesSummary/index.js +4 -2
  139. package/lib/modules/SalesSummary/utils.js +21 -7
  140. package/lib/modules/Schedule/index.js +3 -1
  141. package/lib/modules/index.d.ts +1 -0
  142. package/lib/modules/index.js +3 -1
  143. package/lib/server/index.js +41 -4
  144. package/lib/server/modules/order/index.d.ts +23 -0
  145. package/lib/server/modules/order/index.js +46 -14
  146. package/lib/server/modules/order/utils/filterOrders.js +12 -4
  147. package/lib/server/modules/products/index.d.ts +1 -1
  148. package/lib/server/modules/products/index.js +30 -20
  149. package/lib/server/modules/schedule/index.js +2 -1
  150. package/lib/solution/BaseSales/index.d.ts +89 -7
  151. package/lib/solution/BaseSales/index.js +742 -23
  152. package/lib/solution/BaseSales/types.d.ts +67 -1
  153. package/lib/solution/BaseSales/types.js +3 -1
  154. package/lib/solution/BaseSales/utils/cartPromotion.d.ts +275 -0
  155. package/lib/solution/BaseSales/utils/cartPromotion.js +836 -0
  156. package/lib/solution/BaseSales/utils/quotationPrice.d.ts +7 -0
  157. package/lib/solution/BaseSales/utils/quotationPrice.js +277 -0
  158. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +71 -12
  159. package/lib/solution/BaseSales/utils.js +46 -6
  160. package/lib/solution/BookingByStep/index.d.ts +1 -1
  161. package/lib/solution/BookingTicket/index.d.ts +152 -2
  162. package/lib/solution/BookingTicket/index.js +389 -9
  163. package/lib/solution/BookingTicket/types.d.ts +2 -0
  164. package/lib/solution/BookingTicket/types.js +6 -0
  165. package/lib/solution/BookingTicket/utils/addProductDecision.d.ts +113 -0
  166. package/lib/solution/BookingTicket/utils/addProductDecision.js +318 -0
  167. package/lib/solution/BookingTicket/utils/cartView.js +4 -2
  168. package/lib/solution/ScanOrder/index.d.ts +9 -3
  169. package/lib/solution/ScanOrder/index.js +147 -66
  170. package/lib/solution/ScanOrder/utils.js +46 -6
  171. package/lib/solution/VenueBooking/index.d.ts +5 -2
  172. package/lib/solution/VenueBooking/index.js +50 -14
  173. package/lib/solution/VenueBooking/utils/slotMerge.d.ts +4 -0
  174. package/lib/solution/VenueBooking/utils/slotMerge.js +10 -0
  175. package/package.json +1 -1
@@ -0,0 +1,215 @@
1
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
2
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
3
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
4
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
5
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
6
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
7
+ import dayjs from 'dayjs';
8
+ import { isMultiDayProduct, isSessionProduct, getDays } from "./serviceTimes";
9
+ import { getSumCapacity } from "./resources";
10
+ import { flexibleObj } from "./flexible";
11
+
12
+ /**
13
+ * 把 info2 `cacheItem` 转换为 OS `addProductToOrder(product, booking)` 所需的 booking 入参。
14
+ *
15
+ * 协议严格对齐 `pisell_os/src/modules/Order/TEMP_ORDER_FIELDS_SUMMARY.md` 的 Bookings 章节:
16
+ * - 顶层只允许出现:schedule_event_id / appointment_status / start_date / start_time / end_date /
17
+ * end_time / select_date / duration / sub_type / like_status / number / resources / relation_forms /
18
+ * holder / metadata / is_all / schedule_id / relation_id / form_id / relation_type / product_uid
19
+ * - bookings[] 不允许出现 `_extend`
20
+ * - bookings[].metadata 走白名单:unique_identification_number / collect_pax / capacity / holder_id / resource_select_type
21
+ * - bookings[].resources[] 只接受协议白名单:form_id / relation_type / relation_id / capacity / like_status / metadata / children
22
+ *
23
+ * `product_uid` / `metadata.unique_identification_number` 不在这里生成:
24
+ * OS `addProductToOrder` 内的 `createLinkedProductAndBooking` 会在最终一步统一改写,
25
+ * 保证商品行 uid 与 booking root 唯一值始终对齐。
26
+ *
27
+ * 复杂 multi-day 展开(createBookingItemsByGroup / concatBookings)首版**不支持**,
28
+ * 由 UI 在 `cart.confirmDetail` 之外通过辅助 API 处理。
29
+ */
30
+
31
+ /** custom / package 人数维度快照,与 info2 `_extend.capacity` / `metadata.capacity` 对齐。 */
32
+
33
+ /** 将 UI `_extend.capacity[]` 规范化为 booking.metadata.capacity。 */
34
+ function normalizeExtendCapacityForMetadata(capacity) {
35
+ if (!Array.isArray(capacity) || capacity.length === 0) return undefined;
36
+ var normalized = capacity.map(function (item) {
37
+ var _item$value;
38
+ if (!item || _typeof(item) !== 'object') return null;
39
+ if (item.id === undefined || item.id === null) return null;
40
+ var row = {
41
+ id: item.id,
42
+ value: Number((_item$value = item.value) !== null && _item$value !== void 0 ? _item$value : 0)
43
+ };
44
+ if (item.name !== undefined) row.name = item.name;
45
+ return row;
46
+ }).filter(function (item) {
47
+ return item != null;
48
+ });
49
+ return normalized.length > 0 ? normalized : undefined;
50
+ }
51
+ function safeFormat(value, fmt) {
52
+ if (value === undefined || value === null) return undefined;
53
+ var d = dayjs(value);
54
+ if (!d.isValid()) return undefined;
55
+ return d.format(fmt);
56
+ }
57
+
58
+ /** booking 协议 start_time / end_time:统一 HH:mm(不带秒)。 */
59
+ function normalizeTimeString(value) {
60
+ if (value === undefined || value === null) return undefined;
61
+ if (typeof value === 'string') {
62
+ var t = value.trim();
63
+ var hhmmFromHhmmss = t.match(/^(\d{1,2}:\d{2}):\d{2}$/);
64
+ if (hhmmFromHhmmss) return hhmmFromHhmmss[1];
65
+ if (/^\d{1,2}:\d{2}$/.test(t)) return t;
66
+ }
67
+ var d = dayjs(value);
68
+ if (d.isValid()) return d.format('HH:mm');
69
+ return undefined;
70
+ }
71
+ function resolveDurationMinutes(value) {
72
+ if (typeof value === 'number' && Number.isFinite(value)) return value;
73
+ if (typeof value !== 'string') return undefined;
74
+ if (flexibleObj.isFlexible(value)) return flexibleObj.getValue(value);
75
+ var n = Number(value);
76
+ return Number.isNaN(n) ? undefined : n;
77
+ }
78
+
79
+ /**
80
+ * cacheItem._extend.resource 形如 `{ [form_id]: [{ relation_id, form_id, like_status, metadata, children }] }`。
81
+ * 这里扁平化为符合协议的 resources[] 数组;id=0 的「无资源」占位行**保留**(与 info2 业务等价;协议 `relation_id=0` 合法)。
82
+ *
83
+ * 顶层 resources[].capacity 与 info2 `checkResourcesFormat` 一致:Σ capacity[].value(不含 quantity)。
84
+ */
85
+ function flattenResources(cacheItem) {
86
+ var _cacheItem$_extend;
87
+ var resourceMap = (cacheItem === null || cacheItem === void 0 || (_cacheItem$_extend = cacheItem._extend) === null || _cacheItem$_extend === void 0 ? void 0 : _cacheItem$_extend.resource) || {};
88
+ var topLevelCapacity = getSumCapacity(cacheItem, false);
89
+ var result = [];
90
+ Object.values(resourceMap).forEach(function (arr) {
91
+ if (!Array.isArray(arr)) return;
92
+ arr.forEach(function (r) {
93
+ var item = {
94
+ form_id: r === null || r === void 0 ? void 0 : r.form_id,
95
+ relation_type: (r === null || r === void 0 ? void 0 : r.relation_type) || 'form',
96
+ relation_id: r === null || r === void 0 ? void 0 : r.relation_id,
97
+ capacity: topLevelCapacity
98
+ };
99
+ item.like_status = (r === null || r === void 0 ? void 0 : r.like_status) || 'common';
100
+ if ((r === null || r === void 0 ? void 0 : r.metadata) !== undefined) {
101
+ // 协议允许 metadata 自由透传;为了与 info2 行为等价,把 form_name / resource_name / combined_resource 一并保留。
102
+ item.metadata = _objectSpread({}, r.metadata);
103
+ }
104
+ if ((r === null || r === void 0 ? void 0 : r.children) !== undefined) item.children = r.children;
105
+ result.push(item);
106
+ });
107
+ });
108
+ return result;
109
+ }
110
+
111
+ /**
112
+ * 从 cacheItem 中派生 metadata.resource_select_type;优先级:
113
+ * 1. cacheItem._data.resources[0].select_type.type
114
+ * 2. cacheItem.product_resource.resources[0].select_type.type
115
+ * 3. 默认 undefined(由 OS / 后端兜底)。
116
+ */
117
+ function deriveResourceSelectType(cacheItem) {
118
+ var _cacheItem$_data, _cacheItem$product_re;
119
+ var localFirst = cacheItem === null || cacheItem === void 0 || (_cacheItem$_data = cacheItem._data) === null || _cacheItem$_data === void 0 || (_cacheItem$_data = _cacheItem$_data.resources) === null || _cacheItem$_data === void 0 || (_cacheItem$_data = _cacheItem$_data[0]) === null || _cacheItem$_data === void 0 || (_cacheItem$_data = _cacheItem$_data.select_type) === null || _cacheItem$_data === void 0 ? void 0 : _cacheItem$_data.type;
120
+ if (localFirst) return localFirst;
121
+ var productFirst = cacheItem === null || cacheItem === void 0 || (_cacheItem$product_re = cacheItem.product_resource) === null || _cacheItem$product_re === void 0 || (_cacheItem$product_re = _cacheItem$product_re.resources) === null || _cacheItem$product_re === void 0 || (_cacheItem$product_re = _cacheItem$product_re[0]) === null || _cacheItem$product_re === void 0 || (_cacheItem$product_re = _cacheItem$product_re.select_type) === null || _cacheItem$product_re === void 0 ? void 0 : _cacheItem$product_re.type;
122
+ if (productFirst) return productFirst;
123
+ return undefined;
124
+ }
125
+
126
+ /**
127
+ * 主入口。
128
+ */
129
+ export function cacheItemToBookingInput(cacheItem, options) {
130
+ var _ext$other, _options$bookingConfi;
131
+ if (!cacheItem) return {
132
+ metadata: {
133
+ holder_id: null
134
+ }
135
+ };
136
+ var ext = cacheItem._extend || {};
137
+ var isMultiDay = isMultiDayProduct(cacheItem) || ext.is_all === 1 || ext.sub_type === 'days';
138
+ var isSession = isSessionProduct(cacheItem);
139
+ var result = {};
140
+
141
+ // ──── 日期 / 时间 ───────────────────────────────────────────────
142
+ if (isSession && ext !== null && ext !== void 0 && (_ext$other = ext.other) !== null && _ext$other !== void 0 && _ext$other.session) {
143
+ var session = ext.other.session;
144
+ // 优先 _extend 上已按顶部 date 对齐过的起止(catalog cartDetailValue.session → applySessionTimesToExtend)
145
+ result.start_date = safeFormat(ext.start_date || ext.startDate || session.start_at, 'YYYY-MM-DD');
146
+ result.start_time = normalizeTimeString(ext.start_time) || normalizeTimeString(session.start_time) || safeFormat(session.start_at, 'HH:mm');
147
+ result.end_date = safeFormat(ext.end_date || ext.endDate || session.end_at, 'YYYY-MM-DD');
148
+ result.end_time = normalizeTimeString(ext.end_time) || normalizeTimeString(session.end_time) || safeFormat(session.end_at, 'HH:mm');
149
+ } else {
150
+ result.start_date = safeFormat(ext.start_date || ext.startDate, 'YYYY-MM-DD');
151
+ result.start_time = normalizeTimeString(ext.start_time) || safeFormat(ext.startDate, 'HH:mm');
152
+ result.end_date = safeFormat(ext.end_date || ext.endDate, 'YYYY-MM-DD');
153
+ result.end_time = normalizeTimeString(ext.end_time) || safeFormat(ext.endDate, 'HH:mm');
154
+ }
155
+
156
+ // ──── duration / sub_type / is_all ──────────────────────────────
157
+ if (isMultiDay) {
158
+ result.is_all = 1;
159
+ result.sub_type = 'days';
160
+ result.duration = Number(ext.duration) || getDays(cacheItem, 'days');
161
+ // 全天选择日期 = 起始日
162
+ if (result.start_date) result.select_date = result.start_date;
163
+ // 跨日结束时刻与开始一致(如 11:24),避免 endDate 仅日期落为 00:00
164
+ if (result.start_time && (!result.end_time || result.end_time === '00:00')) {
165
+ result.end_time = result.start_time;
166
+ }
167
+ } else {
168
+ result.is_all = 0;
169
+ result.sub_type = ext.sub_type || 'minutes';
170
+ var duration = resolveDurationMinutes(ext.duration);
171
+ if (duration !== undefined) result.duration = duration;
172
+ }
173
+
174
+ // ──── number(人数/容量占用) ───────────────────────────────────
175
+ result.number = getSumCapacity(cacheItem, true);
176
+
177
+ // ──── resources ─────────────────────────────────────────────────
178
+ result.resources = flattenResources(cacheItem);
179
+
180
+ // ──── holder / relation_forms / like_status / schedule_event_id ──
181
+ if (ext.holder !== undefined) result.holder = ext.holder;
182
+ if (Array.isArray(ext.relation_forms)) result.relation_forms = ext.relation_forms;
183
+ // 与 info2 booking/components/footer/utils formatBooking 一致:默认 common
184
+ result.like_status = ext.like_status || 'common';
185
+ if (cacheItem.schedule_event_id !== undefined) {
186
+ result.schedule_event_id = cacheItem.schedule_event_id;
187
+ }
188
+
189
+ // ──── metadata(严格白名单) ────────────────────────────────────
190
+ var metadata = {
191
+ holder_id: null
192
+ };
193
+ if (ext.holder_id !== undefined && ext.holder_id !== null) {
194
+ metadata.holder_id = ext.holder_id;
195
+ }
196
+ if (ext.collect_pax !== undefined) metadata.collect_pax = ext.collect_pax;
197
+ // 与 info2 formatMetaData 一致:优先写入完整人数维度数组,供编辑回显 / 详情回灌。
198
+ var extendCapacity = normalizeExtendCapacityForMetadata(ext.capacity);
199
+ if (extendCapacity) {
200
+ metadata.capacity = extendCapacity;
201
+ } else if (ext.capacity_snapshot !== undefined) {
202
+ metadata.capacity = ext.capacity_snapshot;
203
+ }
204
+ var selectType = deriveResourceSelectType(cacheItem) || (options === null || options === void 0 || (_options$bookingConfi = options.bookingConfig) === null || _options$bookingConfi === void 0 ? void 0 : _options$bookingConfi.resource_select_type);
205
+ if (selectType) metadata.resource_select_type = selectType;
206
+ // unique_identification_number 不在这里生成(由 OS createLinkedProductAndBooking 统一写)。
207
+ result.metadata = metadata;
208
+
209
+ // ──── booking root 占位字段(与 TEMP_ORDER_FIELDS_SUMMARY 一致) ──
210
+ result.schedule_id = 0;
211
+ result.relation_id = 0;
212
+ result.form_id = 0;
213
+ result.relation_type = '';
214
+ return result;
215
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * 灵活时长(flexible duration)协议工具。
3
+ *
4
+ * info2 用 `flexible_<minutes>` 字符串前缀标记"灵活时长",对外用同名 API 暴露 create / getValue / isFlexible / add。
5
+ * OS 这边一比一搬运,无外部依赖。
6
+ */
7
+ export declare const flexibleObj: {
8
+ create(num: number): string;
9
+ getValue(str: string | number): number;
10
+ isFlexible(str: string | number | undefined | null): boolean;
11
+ add(current: number | string, duration: number): string | number;
12
+ };
13
+ /**
14
+ * 取 duration 数值(兼容 number / { type, value } / 灵活时长字符串)。
15
+ * 与 info2 `getDuration` 行为等价。
16
+ */
17
+ /**
18
+ * 商品定义是否为「灵活时长」类型(仅看 product.duration 对象,不把 flexible_423 字符串当类型)。
19
+ * 与 info2 `getDuration({ type: 'flexible' }) === 'flexible'` 判定对齐。
20
+ */
21
+ export declare function isProductFlexibleDuration(duration: number | string | {
22
+ type: string;
23
+ value: number;
24
+ } | undefined | null): boolean;
25
+ export declare function getDurationValue(duration: number | string | {
26
+ type: string;
27
+ value: number;
28
+ } | undefined | null): number | 'flexible' | undefined;
@@ -0,0 +1,56 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ /**
3
+ * 灵活时长(flexible duration)协议工具。
4
+ *
5
+ * info2 用 `flexible_<minutes>` 字符串前缀标记"灵活时长",对外用同名 API 暴露 create / getValue / isFlexible / add。
6
+ * OS 这边一比一搬运,无外部依赖。
7
+ */
8
+
9
+ var PREFIX = 'flexible_';
10
+ export var flexibleObj = {
11
+ create: function create(num) {
12
+ return "".concat(PREFIX).concat(num);
13
+ },
14
+ getValue: function getValue(str) {
15
+ if (typeof str === 'string' && flexibleObj.isFlexible(str)) {
16
+ return Number(str.replace(PREFIX, ''));
17
+ }
18
+ return Number(str);
19
+ },
20
+ isFlexible: function isFlexible(str) {
21
+ if (typeof str !== 'string') return false;
22
+ return str.indexOf(PREFIX) > -1;
23
+ },
24
+ add: function add(current, duration) {
25
+ if (flexibleObj.isFlexible(current)) {
26
+ return flexibleObj.create(flexibleObj.getValue(current) + duration);
27
+ }
28
+ return Number(current) + duration;
29
+ }
30
+ };
31
+
32
+ /**
33
+ * 取 duration 数值(兼容 number / { type, value } / 灵活时长字符串)。
34
+ * 与 info2 `getDuration` 行为等价。
35
+ */
36
+ /**
37
+ * 商品定义是否为「灵活时长」类型(仅看 product.duration 对象,不把 flexible_423 字符串当类型)。
38
+ * 与 info2 `getDuration({ type: 'flexible' }) === 'flexible'` 判定对齐。
39
+ */
40
+ export function isProductFlexibleDuration(duration) {
41
+ return Boolean(duration && _typeof(duration) === 'object' && duration.type === 'flexible');
42
+ }
43
+ export function getDurationValue(duration) {
44
+ if (duration === undefined || duration === null) return undefined;
45
+ if (typeof duration === 'number') return duration;
46
+ if (typeof duration === 'string') {
47
+ if (flexibleObj.isFlexible(duration)) return 'flexible';
48
+ return Number(duration);
49
+ }
50
+ if (_typeof(duration) === 'object') {
51
+ if (duration.type === 'minutes') return duration.value;
52
+ if (duration.type === 'flexible') return 'flexible';
53
+ if (duration.type === 'days') return duration.value;
54
+ }
55
+ return undefined;
56
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * 将 `/schedule/resource/list` 原始数组格式化为 `list + listMap`。
3
+ * 逻辑与 info2 [`getFormatResourceListAndMap`] 对齐:追加无资源占位行、按 id 建 map。
4
+ */
5
+ export declare function formatResourceListAndMap(data: any[] | null | undefined, _bookingIds?: number[]): {
6
+ list: any[];
7
+ listMap: Record<string, any>;
8
+ };
@@ -0,0 +1,38 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ import { getNoResource2 } from "./noResource";
8
+
9
+ /**
10
+ * 将 `/schedule/resource/list` 原始数组格式化为 `list + listMap`。
11
+ * 逻辑与 info2 [`getFormatResourceListAndMap`] 对齐:追加无资源占位行、按 id 建 map。
12
+ */
13
+ export function formatResourceListAndMap(data) {
14
+ var _bookingIds = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
15
+ var resourceList = (Array.isArray(data) ? data : []).concat([getNoResource2({})]);
16
+ var map = resourceList.reduce(function (prev, item) {
17
+ if ((item === null || item === void 0 ? void 0 : item.id) !== undefined && (item === null || item === void 0 ? void 0 : item.id) !== null) {
18
+ prev[String(item.id)] = item;
19
+ }
20
+ return prev;
21
+ }, {});
22
+ var getCapacity = function getCapacity(item) {
23
+ return item.capacity;
24
+ };
25
+ var list = resourceList.map(function (item) {
26
+ var newItem = _objectSpread(_objectSpread({}, item), {}, {
27
+ capacity: getCapacity(item)
28
+ });
29
+ if (newItem.id !== undefined && newItem.id !== null) {
30
+ map[String(newItem.id)] = newItem;
31
+ }
32
+ return newItem;
33
+ });
34
+ return {
35
+ list: list,
36
+ listMap: map
37
+ };
38
+ }
@@ -0,0 +1,11 @@
1
+ export * from './flexible';
2
+ export * from './serviceTimes';
3
+ export * from './timeSlices';
4
+ export * from './noResource';
5
+ export * from './resources';
6
+ export * from './resourceSelection';
7
+ export * from './resourceErrors';
8
+ export * from './productExtend';
9
+ export * from './cacheItemToBookingInput';
10
+ export * from './buildCacheItemFromOrderLine';
11
+ export * from './buildNormalProductCacheItemFromOrderLine';
@@ -0,0 +1,11 @@
1
+ export * from "./flexible";
2
+ export * from "./serviceTimes";
3
+ export * from "./timeSlices";
4
+ export * from "./noResource";
5
+ export * from "./resources";
6
+ export * from "./resourceSelection";
7
+ export * from "./resourceErrors";
8
+ export * from "./productExtend";
9
+ export * from "./cacheItemToBookingInput";
10
+ export * from "./buildCacheItemFromOrderLine";
11
+ export * from "./buildNormalProductCacheItemFromOrderLine";
@@ -0,0 +1,13 @@
1
+ /**
2
+ * 「无资源」占位资源行的数据骨架。
3
+ *
4
+ * 与 info2 [`booking/mock.ts#getNoResource2`] 一比一对齐,区别仅在于:
5
+ * - `main_field / room_name / labelText` 三个 i18n 文案字段在 OS 这边**置空**,
6
+ * 调用方(UI)在 `id === 0` 时自行渲染本地化的「无资源 / No resource」。
7
+ *
8
+ * 用途:`getResourceByIds` 在拼装 `optional_resource` 列表时,会在末尾 concat 一行此占位,
9
+ * 让用户能选择「不指定资源」。
10
+ */
11
+ export declare function getNoResource2(other?: {
12
+ form_id?: number | string;
13
+ } & Record<string, any>): any;
@@ -0,0 +1,77 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ /**
8
+ * 「无资源」占位资源行的数据骨架。
9
+ *
10
+ * 与 info2 [`booking/mock.ts#getNoResource2`] 一比一对齐,区别仅在于:
11
+ * - `main_field / room_name / labelText` 三个 i18n 文案字段在 OS 这边**置空**,
12
+ * 调用方(UI)在 `id === 0` 时自行渲染本地化的「无资源 / No resource」。
13
+ *
14
+ * 用途:`getResourceByIds` 在拼装 `optional_resource` 列表时,会在末尾 concat 一行此占位,
15
+ * 让用户能选择「不指定资源」。
16
+ */
17
+ export function getNoResource2(other) {
18
+ return _objectSpread({
19
+ form_tag: null,
20
+ policy: 148,
21
+ partyroom_package: {
22
+ type: 'product_all'
23
+ },
24
+ sort: '2',
25
+ status: 'active',
26
+ description: '',
27
+ media: '',
28
+ main_field: '',
29
+ subtitle: '',
30
+ room_name: '',
31
+ labelText: '',
32
+ form_record_id: 0,
33
+ item_type: 'resources',
34
+ form_id: 0,
35
+ id: 0,
36
+ form_resource_sort: 0,
37
+ form_title: '',
38
+ capacity: 999999,
39
+ form: {
40
+ id: 0,
41
+ shop_id: 0,
42
+ title: '',
43
+ navigation_display: 1,
44
+ button: '',
45
+ describe: '',
46
+ status: 'published',
47
+ resource_sort: 0,
48
+ code: 'resources',
49
+ type: 'manual',
50
+ version: 1,
51
+ setting: null,
52
+ created_at: '2000-01-01 00:00:00',
53
+ updated_at: '2000-01-01 00:00:00'
54
+ },
55
+ times: [{
56
+ keys: 'noResource2-placeholder',
57
+ schedule_id: 0,
58
+ item_type: 'resources',
59
+ item_id: 0,
60
+ start_date: '2000-01-01',
61
+ end_date: '2300-01-01',
62
+ start_time: '00:00',
63
+ end_time: '23:59',
64
+ is_all: 1,
65
+ max_participants_type: 'custom-limit',
66
+ max_participants_limit: 0,
67
+ relation_type: 'form',
68
+ start_at: '2000-01-01 00:00',
69
+ end_at: '2300-01-05 23:59',
70
+ is_blocked: 0,
71
+ blocked_times: [],
72
+ order_event_count: 0,
73
+ unique: 'noResource2-unique',
74
+ event_list: []
75
+ }]
76
+ }, other || {});
77
+ }
@@ -0,0 +1,72 @@
1
+ import { getSumCapacity } from './resources';
2
+ import { TimeSlicesResult, TimeSlice, DurationSlice } from './timeSlices';
3
+ /**
4
+ * 上下文(与 info2 state.bookingConfig / state.service / state.date 一一对应)。
5
+ *
6
+ * 设计原则:所有助手函数都通过 context 显式拿数据,**不读 mini-redux**,
7
+ * 让 OS 这层完全可在 Node 单测下运行(dayjs 在 Node 也是纯函数)。
8
+ */
9
+ export interface BookingCalcContext {
10
+ /** 来自 `/core/board/management/config` 的整套配置;常用路径见 sliceTimeSlices / appointmentTimingPreference。 */
11
+ bookingConfig?: any;
12
+ /** 资源 origin map(id → resource origin)。 */
13
+ resourcesOriginMap?: Record<string, any>;
14
+ /** 资源全集列表(display_scope=all 时用)。 */
15
+ resourcesOrigin?: any[];
16
+ /** 当前选择的日期(dayjs 或 string)。 */
17
+ date?: any;
18
+ /** 上一个服务行(getServiceStartTimeAndEndTime 拼接续接 start_time 用)。可缺省。 */
19
+ previousService?: any;
20
+ /** 日历选中的资源 id(替代 info2 sessionStorage.serviceParams.resource_id)。 */
21
+ resourceIdFromCalendar?: number;
22
+ /** 资源自动分派开关(替代 info2 localStorage 'resource-auto-allocation');默认全开。 */
23
+ isAutoAllocationOn?: (formId: any) => boolean;
24
+ /** 当前预设开始时间(替代 info2 sessionStorage.serviceParams.start_date 取 HH:mm)。 */
25
+ presetStartTime?: string;
26
+ /** 店铺打烊时间(替代 info2 localStorage shopOpeningHours),默认 23:59。 */
27
+ shopOpeningHours?: string;
28
+ }
29
+ /** 从 BookingContext.date 提取 HH:mm(仅当日期带有效时分时)。 */
30
+ export declare function derivePresetStartTimeFromDate(date: any): string | undefined;
31
+ /**
32
+ * 时间切片对象(含灵活时长选项)。与 info2 `getTimeObj` 等价。
33
+ */
34
+ export declare function getTimeObj(params: {
35
+ cacheItem: any;
36
+ useStartTime?: string;
37
+ useDuration?: number | string;
38
+ ctx: BookingCalcContext;
39
+ }): TimeSlicesResult & {
40
+ timeSlices: TimeSlice[];
41
+ durationSlicesBasedOnTime: DurationSlice[];
42
+ };
43
+ /**
44
+ * 计算商品行 _extend(包含 start_time / endDate / duration / start_date / end_date / sub_type 等)。
45
+ * 与 info2 `utilsByBooking.ts#getServiceStartTimeAndEndTime` 等价;显著差异:
46
+ * - 不读 `state.service.value` / `mini-redux`,由 ctx.previousService 显式注入。
47
+ * - 不读 `sessionStorage.serviceParams`,由 ctx.presetStartTime / ctx.resourceIdFromCalendar 注入。
48
+ * - cacheItem.isCustomItem → 直接返回 `{ duration: null }`。
49
+ */
50
+ export declare function getServiceStartTimeAndEndTime(params: {
51
+ cacheItem: any;
52
+ timeObj: TimeSlicesResult;
53
+ ctx: BookingCalcContext;
54
+ }): any;
55
+ /**
56
+ * 综合:把 cacheItem 拼装出完整的 _extend / _data(资源 / 容量 / timeObj),并标记 autoClose。
57
+ * 与 info2 `service/addService/utils.tsx#getProductExtend` 等价;剥 React `console.time` / JSX。
58
+ *
59
+ * 入参 ctx 必须至少给:bookingConfig / resourcesOriginMap / resourcesOrigin / date。
60
+ */
61
+ export declare function getProductExtend(params: {
62
+ cacheItem: any;
63
+ ctx: BookingCalcContext;
64
+ isDisabledTime?: boolean;
65
+ }): any;
66
+ /**
67
+ * 是否可自动关闭弹窗(不需要用户进 EditService 抽屉)。
68
+ * 与 info2 `service/addService/utils.tsx#getIsAutoClose` 等价;
69
+ * `getAutoAllocationStorage` 抽象为入参 `isAutoAllocationOn(formId)`。
70
+ */
71
+ export declare function getIsAutoClose(cacheItem: any, isAutoAllocationOn: (formId: any) => boolean): boolean;
72
+ export { getSumCapacity };