@pisell/pisellos 2.2.283 → 2.2.285

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (283) hide show
  1. package/dist/core/index.js +6 -10
  2. package/dist/model/strategy/adapter/walletPass/example.js +3 -26
  3. package/dist/model/strategy/strategy-example.js +5 -19
  4. package/dist/modules/Cart/index.js +0 -3
  5. package/dist/modules/Cart/utils/cartProduct.js +0 -1
  6. package/dist/modules/Date/index.js +1 -5
  7. package/dist/modules/Discount/index.js +2 -4
  8. package/dist/modules/OpenData/index.js +0 -2
  9. package/dist/modules/Order/index.d.ts +1 -1
  10. package/dist/modules/Order/index.js +64 -86
  11. package/dist/modules/Order/types.d.ts +3 -1
  12. package/dist/modules/Order/types.js +1 -0
  13. package/dist/modules/Payment/index.js +97 -162
  14. package/dist/modules/ProductList/index.js +91 -65
  15. package/dist/modules/Rules/index.js +1 -4
  16. package/dist/modules/Schedule/index.js +0 -1
  17. package/dist/modules/Schedule/utils.js +0 -1
  18. package/dist/modules/Step/index.js +0 -1
  19. package/dist/plugins/request.js +1 -4
  20. package/dist/plugins/window.js +2 -6
  21. package/dist/server/index.js +97 -129
  22. package/dist/server/modules/menu/index.js +32 -41
  23. package/dist/server/modules/order/index.js +2 -4
  24. package/dist/server/modules/products/index.js +24 -42
  25. package/dist/server/modules/quotation/index.js +29 -38
  26. package/dist/server/modules/resource/index.js +3 -4
  27. package/dist/server/modules/schedule/index.js +27 -35
  28. package/dist/server/utils/product.js +0 -1
  29. package/dist/solution/BaseSales/index.js +115 -76
  30. package/dist/solution/BookingByStep/index.d.ts +1 -1
  31. package/dist/solution/BookingByStep/index.js +7 -59
  32. package/dist/solution/BookingByStep/utils/capacity.js +1 -11
  33. package/dist/solution/BookingByStep/utils/resources.js +1 -3
  34. package/dist/solution/BookingByStep/utils/timeslots.js +2 -43
  35. package/dist/solution/BookingTicket/index.d.ts +6 -16
  36. package/dist/solution/BookingTicket/index.js +13 -6
  37. package/dist/solution/BookingTicket/utils/scan/cloudSearch.js +6 -7
  38. package/dist/solution/BookingTicket/utils/scan/handleScan.js +25 -31
  39. package/dist/solution/BookingTicket/utils/scan/index.js +6 -10
  40. package/dist/solution/BuyTickets/index.js +9 -12
  41. package/dist/solution/Checkout/index.js +177 -252
  42. package/dist/solution/Checkout/utils/index.js +4 -16
  43. package/dist/solution/RegisterAndLogin/index.js +30 -76
  44. package/dist/solution/ScanOrder/index.js +50 -60
  45. package/dist/solution/ShopDiscount/index.js +2 -7
  46. package/dist/solution/VenueBooking/index.js +45 -55
  47. package/dist/utils/task.js +15 -18
  48. package/dist/utils/watch.js +0 -1
  49. package/lib/apis/picoding.js +2 -0
  50. package/lib/core/index.js +131 -132
  51. package/lib/effects/index.js +46 -57
  52. package/lib/index.js +82 -49
  53. package/lib/model/index.js +14 -21
  54. package/lib/model/strategy/adapter/dataVariant/adapter.js +38 -50
  55. package/lib/model/strategy/adapter/dataVariant/evaluator.js +162 -236
  56. package/lib/model/strategy/adapter/dataVariant/examples.js +229 -237
  57. package/lib/model/strategy/adapter/dataVariant/index.js +39 -34
  58. package/lib/model/strategy/adapter/dataVariant/type.js +57 -28
  59. package/lib/model/strategy/adapter/index.js +100 -64
  60. package/lib/model/strategy/adapter/itemRule/adapter.js +156 -144
  61. package/lib/model/strategy/adapter/itemRule/evaluator.js +36 -48
  62. package/lib/model/strategy/adapter/itemRule/examples.js +295 -225
  63. package/lib/model/strategy/adapter/itemRule/index.js +83 -57
  64. package/lib/model/strategy/adapter/itemRule/type.js +97 -36
  65. package/lib/model/strategy/adapter/promotion/adapter.js +91 -69
  66. package/lib/model/strategy/adapter/promotion/evaluator.js +444 -310
  67. package/lib/model/strategy/adapter/promotion/examples.js +222 -234
  68. package/lib/model/strategy/adapter/promotion/index.js +46 -0
  69. package/lib/model/strategy/adapter/promotion/type.js +243 -36
  70. package/lib/model/strategy/adapter/type.js +4 -16
  71. package/lib/model/strategy/adapter/walletPass/evaluator.js +180 -150
  72. package/lib/model/strategy/adapter/walletPass/example.js +217 -190
  73. package/lib/model/strategy/adapter/walletPass/index.js +75 -51
  74. package/lib/model/strategy/adapter/walletPass/locales.js +36 -58
  75. package/lib/model/strategy/adapter/walletPass/type.js +4 -16
  76. package/lib/model/strategy/adapter/walletPass/utils.js +588 -378
  77. package/lib/model/strategy/engine.js +270 -168
  78. package/lib/model/strategy/index.js +49 -34
  79. package/lib/model/strategy/strategy-example.js +243 -239
  80. package/lib/model/strategy/type.js +100 -40
  81. package/lib/modules/Account/index.js +39 -53
  82. package/lib/modules/Account/types.js +20 -33
  83. package/lib/modules/AccountList/index.js +116 -154
  84. package/lib/modules/AccountList/types.js +30 -31
  85. package/lib/modules/AccountList/utils.js +18 -30
  86. package/lib/modules/BaseModule.js +23 -42
  87. package/lib/modules/BookingContext/index.js +158 -136
  88. package/lib/modules/BookingContext/types.js +46 -32
  89. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +138 -146
  90. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +78 -83
  91. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +170 -150
  92. package/lib/modules/BookingContext/utils/flexible.js +38 -55
  93. package/lib/modules/BookingContext/utils/formatResourceList.js +19 -34
  94. package/lib/modules/BookingContext/utils/index.js +124 -41
  95. package/lib/modules/BookingContext/utils/noResource.js +58 -70
  96. package/lib/modules/BookingContext/utils/orderLineDisplay.js +14 -41
  97. package/lib/modules/BookingContext/utils/productExtend.js +202 -155
  98. package/lib/modules/BookingContext/utils/resourceErrors.js +53 -53
  99. package/lib/modules/BookingContext/utils/resourceSelection.js +19 -41
  100. package/lib/modules/BookingContext/utils/resources.js +209 -167
  101. package/lib/modules/BookingContext/utils/serviceTimes.js +115 -116
  102. package/lib/modules/BookingContext/utils/timeSlices.js +76 -86
  103. package/lib/modules/Cart/index.js +170 -124
  104. package/lib/modules/Cart/types.js +46 -51
  105. package/lib/modules/Cart/utils/cartAccount.js +40 -39
  106. package/lib/modules/Cart/utils/cartDate.js +56 -61
  107. package/lib/modules/Cart/utils/cartDiscount.js +28 -33
  108. package/lib/modules/Cart/utils/cartNote.js +27 -32
  109. package/lib/modules/Cart/utils/cartProduct.js +321 -251
  110. package/lib/modules/Cart/utils/cartRelationForms.js +29 -35
  111. package/lib/modules/Cart/utils/cartResource.js +70 -78
  112. package/lib/modules/Cart/utils/changePrice.js +22 -50
  113. package/lib/modules/Cart/utils/index.js +106 -48
  114. package/lib/modules/Customer/constants.js +13 -34
  115. package/lib/modules/Customer/index.js +235 -172
  116. package/lib/modules/Customer/types.js +38 -35
  117. package/lib/modules/Date/index.js +116 -115
  118. package/lib/modules/Date/types.js +16 -28
  119. package/lib/modules/Date/utils.js +174 -123
  120. package/lib/modules/Discount/index.js +122 -127
  121. package/lib/modules/Discount/types.js +9 -31
  122. package/lib/modules/Guests/index.js +30 -56
  123. package/lib/modules/Guests/types.js +23 -33
  124. package/lib/modules/Holder/index.js +209 -189
  125. package/lib/modules/Holder/types.js +4 -16
  126. package/lib/modules/Holder/utils.js +20 -49
  127. package/lib/modules/OpenData/index.js +70 -76
  128. package/lib/modules/OpenData/types.js +4 -16
  129. package/lib/modules/OpenData/utils.js +44 -78
  130. package/lib/modules/Order/index.d.ts +1 -1
  131. package/lib/modules/Order/index.js +1728 -2123
  132. package/lib/modules/Order/payment-utils.js +77 -120
  133. package/lib/modules/Order/types.d.ts +3 -1
  134. package/lib/modules/Order/types.js +88 -35
  135. package/lib/modules/Order/utils/bundleDiscountHydration.js +41 -74
  136. package/lib/modules/Order/utils/discountProductLineIdentity.js +142 -100
  137. package/lib/modules/Order/utils/manualProductDiscount.js +124 -123
  138. package/lib/modules/Order/utils/orderCollectionIdentity.js +184 -244
  139. package/lib/modules/Order/utils.js +814 -647
  140. package/lib/modules/Payment/cash.js +20 -33
  141. package/lib/modules/Payment/cashRecommendationAlgorithm.js +145 -76
  142. package/lib/modules/Payment/eftpos.js +16 -30
  143. package/lib/modules/Payment/index.js +532 -399
  144. package/lib/modules/Payment/mx51.js +1 -0
  145. package/lib/modules/Payment/types.js +230 -108
  146. package/lib/modules/Payment/utils.js +52 -51
  147. package/lib/modules/Payment/walletpass.js +485 -660
  148. package/lib/modules/Product/index.js +51 -46
  149. package/lib/modules/Product/types.js +4 -16
  150. package/lib/modules/Product/utils.js +32 -33
  151. package/lib/modules/ProductList/index.js +119 -123
  152. package/lib/modules/ProductList/types.js +9 -31
  153. package/lib/modules/Quotation/index.js +66 -100
  154. package/lib/modules/Quotation/types.js +4 -16
  155. package/lib/modules/Resource/index.js +27 -59
  156. package/lib/modules/Resource/types.js +22 -32
  157. package/lib/modules/Resource/utils.js +30 -38
  158. package/lib/modules/ResourcePlanner/index.js +60 -61
  159. package/lib/modules/ResourcePlanner/planner.js +346 -384
  160. package/lib/modules/ResourcePlanner/types.js +4 -16
  161. package/lib/modules/Rules/index.js +1218 -959
  162. package/lib/modules/Rules/types.js +17 -40
  163. package/lib/modules/SalesSummary/index.js +85 -90
  164. package/lib/modules/SalesSummary/types.js +4 -16
  165. package/lib/modules/SalesSummary/utils.js +355 -430
  166. package/lib/modules/ScanOrderLogger/index.js +59 -79
  167. package/lib/modules/ScanOrderLogger/providers/feishu.js +54 -78
  168. package/lib/modules/ScanOrderLogger/providers/grafana.js +13 -36
  169. package/lib/modules/ScanOrderLogger/types.js +4 -16
  170. package/lib/modules/Schedule/getDateIsInSchedule.js +334 -163
  171. package/lib/modules/Schedule/index.js +100 -114
  172. package/lib/modules/Schedule/type.js +4 -16
  173. package/lib/modules/Schedule/types.js +4 -16
  174. package/lib/modules/Schedule/utils.js +433 -291
  175. package/lib/modules/Step/index.js +40 -52
  176. package/lib/modules/Step/tyeps.js +4 -16
  177. package/lib/modules/Summary/index.js +66 -71
  178. package/lib/modules/Summary/types.js +4 -16
  179. package/lib/modules/Summary/utils.js +773 -418
  180. package/lib/modules/SurchargeList/index.js +46 -60
  181. package/lib/modules/SurchargeList/types.js +4 -16
  182. package/lib/modules/index.js +245 -63
  183. package/lib/plugins/app.js +4 -16
  184. package/lib/plugins/index.js +36 -25
  185. package/lib/plugins/request.js +137 -126
  186. package/lib/plugins/shopStore.js +4 -16
  187. package/lib/plugins/user.js +4 -16
  188. package/lib/plugins/window.js +171 -179
  189. package/lib/server/index.js +3027 -2655
  190. package/lib/server/modules/floor-plan/index.js +102 -123
  191. package/lib/server/modules/floor-plan/types.js +15 -30
  192. package/lib/server/modules/index.js +106 -68
  193. package/lib/server/modules/menu/index.js +146 -122
  194. package/lib/server/modules/menu/types.js +18 -31
  195. package/lib/server/modules/order/index.js +758 -956
  196. package/lib/server/modules/order/types.js +122 -33
  197. package/lib/server/modules/order/utils/filterBookings.js +219 -194
  198. package/lib/server/modules/order/utils/filterOrders.js +118 -92
  199. package/lib/server/modules/payment/index.js +59 -83
  200. package/lib/server/modules/payment/types.js +4 -16
  201. package/lib/server/modules/products/index.js +575 -459
  202. package/lib/server/modules/products/types.js +44 -34
  203. package/lib/server/modules/quotation/index.js +137 -172
  204. package/lib/server/modules/quotation/types.js +21 -31
  205. package/lib/server/modules/resource/index.js +213 -184
  206. package/lib/server/modules/resource/types.js +42 -33
  207. package/lib/server/modules/schedule/index.js +135 -123
  208. package/lib/server/modules/schedule/types.js +14 -21
  209. package/lib/server/modules/schedule/utils.js +334 -163
  210. package/lib/server/types.js +4 -16
  211. package/lib/server/utils/index.js +25 -23
  212. package/lib/server/utils/product.js +196 -139
  213. package/lib/server/utils/schedule.js +34 -41
  214. package/lib/server/utils/small-ticket.js +479 -456
  215. package/lib/server/utils/time.js +40 -49
  216. package/lib/solution/BaseSales/index.js +1220 -1412
  217. package/lib/solution/BaseSales/types.js +42 -38
  218. package/lib/solution/BaseSales/utils/cartPromotion.js +650 -502
  219. package/lib/solution/BaseSales/utils/parseSalesResponse.js +85 -105
  220. package/lib/solution/BaseSales/utils/quotationPrice.js +56 -114
  221. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +108 -145
  222. package/lib/solution/BaseSales/utils.js +158 -143
  223. package/lib/solution/BookingByStep/index.d.ts +1 -1
  224. package/lib/solution/BookingByStep/index.js +1527 -1340
  225. package/lib/solution/BookingByStep/types.js +40 -99
  226. package/lib/solution/BookingByStep/utils/capacity.js +192 -160
  227. package/lib/solution/BookingByStep/utils/products.js +42 -52
  228. package/lib/solution/BookingByStep/utils/resources.js +527 -330
  229. package/lib/solution/BookingByStep/utils/stock.js +65 -44
  230. package/lib/solution/BookingByStep/utils/timeslots.js +129 -131
  231. package/lib/solution/BookingTicket/index.d.ts +6 -16
  232. package/lib/solution/BookingTicket/index.js +608 -517
  233. package/lib/solution/BookingTicket/types.js +99 -77
  234. package/lib/solution/BookingTicket/utils/addProductDecision.js +225 -187
  235. package/lib/solution/BookingTicket/utils/addTimeAvailability.js +58 -89
  236. package/lib/solution/BookingTicket/utils/bookingStatus.js +107 -78
  237. package/lib/solution/BookingTicket/utils/cartView.js +114 -99
  238. package/lib/solution/BookingTicket/utils/exampleData.js +185 -0
  239. package/lib/solution/BookingTicket/utils/orderCustomer.js +18 -41
  240. package/lib/solution/BookingTicket/utils/resolveBestAddTimePlan.js +219 -86
  241. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.js +168 -116
  242. package/lib/solution/BookingTicket/utils/scan/cloudSearch.js +79 -91
  243. package/lib/solution/BookingTicket/utils/scan/formatGlobalScan.js +54 -41
  244. package/lib/solution/BookingTicket/utils/scan/handleScan.js +84 -81
  245. package/lib/solution/BookingTicket/utils/scan/index.js +98 -104
  246. package/lib/solution/BookingTicket/utils/scan/scanCache.js +90 -43
  247. package/lib/solution/BookingTicket/utils/scan/scanProductValues.js +52 -64
  248. package/lib/solution/BookingTicket/utils/sessionCatalogStale.js +56 -58
  249. package/lib/solution/BookingTicket/utils/weighingProductSku.js +34 -48
  250. package/lib/solution/BuyTickets/index.js +67 -70
  251. package/lib/solution/BuyTickets/types.js +22 -38
  252. package/lib/solution/Checkout/index.js +1451 -1158
  253. package/lib/solution/Checkout/types.js +91 -61
  254. package/lib/solution/Checkout/utils/index.js +228 -156
  255. package/lib/solution/PlaceOrder/index.js +55 -0
  256. package/lib/solution/RegisterAndLogin/config.js +493 -460
  257. package/lib/solution/RegisterAndLogin/index.js +633 -630
  258. package/lib/solution/RegisterAndLogin/types.js +189 -76
  259. package/lib/solution/RegisterAndLogin/utils.js +183 -125
  260. package/lib/solution/Sales/index.js +328 -324
  261. package/lib/solution/Sales/types.js +27 -33
  262. package/lib/solution/ScanOrder/index.js +832 -864
  263. package/lib/solution/ScanOrder/types.js +33 -34
  264. package/lib/solution/ScanOrder/utils.js +409 -374
  265. package/lib/solution/ShopDiscount/index.js +226 -232
  266. package/lib/solution/ShopDiscount/types.js +15 -37
  267. package/lib/solution/ShopDiscount/utils.js +300 -172
  268. package/lib/solution/UnifiedBookingSales/index.js +437 -487
  269. package/lib/solution/UnifiedBookingSales/types.js +12 -31
  270. package/lib/solution/VenueBooking/index.js +811 -879
  271. package/lib/solution/VenueBooking/types.js +19 -39
  272. package/lib/solution/VenueBooking/utils/dateSummary.js +27 -56
  273. package/lib/solution/VenueBooking/utils/resource.js +31 -54
  274. package/lib/solution/VenueBooking/utils/slotMerge.js +94 -107
  275. package/lib/solution/VenueBooking/utils/timeSlot.js +132 -132
  276. package/lib/solution/VenueBooking/utils.js +130 -67
  277. package/lib/solution/index.js +124 -41
  278. package/lib/store/createStore.js +32 -29
  279. package/lib/types/index.js +4 -16
  280. package/lib/utils/payment-number.js +26 -46
  281. package/lib/utils/task.js +36 -36
  282. package/lib/utils/watch.js +81 -47
  283. package/package.json +2 -1
@@ -1,162 +1,161 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __export = (target, all) => {
8
- for (var name in all)
9
- __defProp(target, name, { get: all[name], enumerable: true });
10
- };
11
- var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from))
14
- if (!__hasOwnProp.call(to, key) && key !== except)
15
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
- }
17
- return to;
18
- };
19
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
- // If the importer is in node compatibility mode or this is not an ESM
21
- // file that has been converted to a CommonJS file using a Babel-
22
- // compatible transform (i.e. "__esModule" has not been set), then set
23
- // "default" to the CommonJS "module.exports" for node compatibility.
24
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
- mod
26
- ));
27
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ "use strict";
28
2
 
29
- // src/modules/BookingContext/utils/serviceTimes.ts
30
- var serviceTimes_exports = {};
31
- __export(serviceTimes_exports, {
32
- applySessionTimesToExtend: () => applySessionTimesToExtend,
33
- formatDayDate: () => formatDayDate,
34
- getDays: () => getDays,
35
- getDurationValue: () => import_flexible.getDurationValue,
36
- getServeStartTime: () => getServeStartTime,
37
- getServiceTimes: () => getServiceTimes,
38
- getSessionFromItem: () => getSessionFromItem,
39
- isBookingProduct: () => isBookingProduct,
40
- isMultiDayProduct: () => isMultiDayProduct,
41
- isSessionProduct: () => isSessionProduct
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.applySessionTimesToExtend = applySessionTimesToExtend;
7
+ exports.formatDayDate = formatDayDate;
8
+ exports.getDays = getDays;
9
+ Object.defineProperty(exports, "getDurationValue", {
10
+ enumerable: true,
11
+ get: function () {
12
+ return _flexible.getDurationValue;
13
+ }
42
14
  });
43
- module.exports = __toCommonJS(serviceTimes_exports);
44
- var import_dayjs = __toESM(require("dayjs"));
45
- var import_flexible = require("./flexible");
15
+ exports.getServeStartTime = getServeStartTime;
16
+ exports.getServiceTimes = getServiceTimes;
17
+ exports.getSessionFromItem = getSessionFromItem;
18
+ exports.isBookingProduct = isBookingProduct;
19
+ exports.isMultiDayProduct = isMultiDayProduct;
20
+ exports.isSessionProduct = isSessionProduct;
21
+ var _dayjs = _interopRequireDefault(require("dayjs"));
22
+ var _flexible = require("./flexible");
23
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
24
+ /**
25
+ * 判断商品是否为跨日预约(duration.type === 'days')。与 info2 isMultiDayProduct 等价。
26
+ */
46
27
  function isMultiDayProduct(product) {
47
- var _a;
48
- return ((_a = product == null ? void 0 : product.duration) == null ? void 0 : _a.type) === "days";
28
+ return product?.duration?.type === 'days';
49
29
  }
30
+
31
+ /**
32
+ * 判断 cacheItem 是否为 session 商品(extension_type ∈ session_product / session_ticket)。
33
+ */
50
34
  function isSessionProduct(cacheItem) {
51
- return ["session_product", "session_ticket"].includes(cacheItem == null ? void 0 : cacheItem.extension_type);
35
+ return ['session_product', 'session_ticket'].includes(cacheItem?.extension_type);
52
36
  }
37
+
38
+ /** 从 catalog `cartDetailValue` 或 `_extend.other` 取 session 快照。 */
53
39
  function getSessionFromItem(item) {
54
- var _a, _b, _c;
55
- const session = ((_a = item == null ? void 0 : item.cartDetailValue) == null ? void 0 : _a.session) ?? ((_c = (_b = item == null ? void 0 : item._extend) == null ? void 0 : _b.other) == null ? void 0 : _c.session);
56
- return session && typeof session === "object" ? session : null;
40
+ const session = item?.cartDetailValue?.session ?? item?._extend?.other?.session;
41
+ return session && typeof session === 'object' ? session : null;
57
42
  }
43
+
44
+ /**
45
+ * 将 cartDetailValue.session 写入 _extend 的起止时间(与 info2 getServiceStartTimeAndEndTime 的 session 分支一致)。
46
+ * 日历日优先用 ctx.date,时分取自 session.start_at / end_at 或 session.start_time / end_time。
47
+ */
58
48
  function applySessionTimesToExtend(item, extend, ctx) {
59
- var _a;
60
- const session = ((_a = extend == null ? void 0 : extend.other) == null ? void 0 : _a.session) ?? getSessionFromItem(item);
49
+ const session = extend?.other?.session ?? getSessionFromItem(item);
61
50
  if (!session || !isSessionProduct(item)) {
62
51
  return extend;
63
52
  }
64
- const baseDate = (ctx == null ? void 0 : ctx.date) ? (0, import_dayjs.default)(ctx.date) : (0, import_dayjs.default)();
65
- const startAt = (0, import_dayjs.default)(
66
- `${baseDate.format("YYYY-MM-DD")} ${(0, import_dayjs.default)(session.start_at).format("HH:mm:ss")}`
67
- );
68
- const endAt = (0, import_dayjs.default)(
69
- `${baseDate.format("YYYY-MM-DD")} ${(0, import_dayjs.default)(session.end_at).format("HH:mm:ss")}`
70
- );
53
+ const baseDate = ctx?.date ? (0, _dayjs.default)(ctx.date) : (0, _dayjs.default)();
54
+ const startAt = (0, _dayjs.default)(`${baseDate.format('YYYY-MM-DD')} ${(0, _dayjs.default)(session.start_at).format('HH:mm:ss')}`);
55
+ const endAt = (0, _dayjs.default)(`${baseDate.format('YYYY-MM-DD')} ${(0, _dayjs.default)(session.end_at).format('HH:mm:ss')}`);
71
56
  const nextExtend = {
72
57
  ...extend,
73
- other: { ...extend.other || {}, session },
58
+ other: {
59
+ ...(extend.other || {}),
60
+ session
61
+ },
74
62
  start_date: startAt,
75
63
  startDate: startAt,
76
- start_time: session.start_time ?? (0, import_dayjs.default)(session.start_at).format("HH:mm"),
64
+ start_time: session.start_time ?? (0, _dayjs.default)(session.start_at).format('HH:mm'),
77
65
  end_date: endAt,
78
66
  endDate: endAt,
79
- end_time: session.end_time ?? (0, import_dayjs.default)(session.end_at).format("HH:mm")
67
+ end_time: session.end_time ?? (0, _dayjs.default)(session.end_at).format('HH:mm')
80
68
  };
81
69
  return {
82
70
  ...nextExtend,
83
- duration: getDays({ _extend: nextExtend }, "minutes")
71
+ duration: getDays({
72
+ _extend: nextExtend
73
+ }, 'minutes')
84
74
  };
85
75
  }
76
+
77
+ /**
78
+ * 是否应写入 booking(与 Product.utils isNormalProduct 对齐,并覆盖 session_ticket / cartDetailValue.session)。
79
+ */
86
80
  function isBookingProduct(item) {
87
- var _a, _b;
88
- if (!item)
89
- return false;
90
- if (item.duration)
91
- return true;
92
- if ((_a = item == null ? void 0 : item.schedules) == null ? void 0 : _a.length)
93
- return true;
94
- if ((_b = item == null ? void 0 : item["schedule.ids"]) == null ? void 0 : _b.length)
95
- return true;
96
- if (isSessionProduct(item))
97
- return true;
98
- if (getSessionFromItem(item))
99
- return true;
81
+ if (!item) return false;
82
+ if (item.duration) return true;
83
+ if (item?.schedules?.length) return true;
84
+ if (item?.['schedule.ids']?.length) return true;
85
+ if (isSessionProduct(item)) return true;
86
+ if (getSessionFromItem(item)) return true;
100
87
  return false;
101
88
  }
89
+
90
+ /**
91
+ * 处理 'now' 时间占位:'now' → 当前 HH:mm;其他原样返回。
92
+ * 与 info2 `getServeStartTime` 等价。
93
+ */
102
94
  function getServeStartTime(startTime) {
103
- if (startTime === "now")
104
- return (0, import_dayjs.default)().format("HH:mm");
105
- return startTime || "";
95
+ if (startTime === 'now') return (0, _dayjs.default)().format('HH:mm');
96
+ return startTime || '';
106
97
  }
98
+
99
+ /**
100
+ * 计算商品的开始结束时间(统一为 dayjs 实例)。
101
+ * 与 info2 `getServiceTimes` 行为等价:
102
+ * - 跨日商品:startDate = start_date + start_time,endDate = _extend.end_date 原样
103
+ * - session 商品:从 _extend.other.session 取 start_at / end_at
104
+ * - 普通商品:startDate + duration(含 flexible 处理)
105
+ */
107
106
  function getServiceTimes(service) {
108
- var _a, _b, _c, _d, _e, _f, _g, _h;
109
- const startDate = (0, import_dayjs.default)(
110
- `${(0, import_dayjs.default)((_a = service == null ? void 0 : service._extend) == null ? void 0 : _a.start_date).format("YYYY-MM-DD")} ${getServeStartTime(
111
- (_b = service == null ? void 0 : service._extend) == null ? void 0 : _b.start_time
112
- )}`
113
- );
107
+ const startDate = (0, _dayjs.default)(`${(0, _dayjs.default)(service?._extend?.start_date).format('YYYY-MM-DD')} ${getServeStartTime(service?._extend?.start_time)}`);
114
108
  if (isMultiDayProduct(service)) {
115
- const startTime = getServeStartTime((_c = service == null ? void 0 : service._extend) == null ? void 0 : _c.start_time);
116
- const endDateRaw = ((_d = service == null ? void 0 : service._extend) == null ? void 0 : _d.end_date) ?? ((_e = service == null ? void 0 : service._extend) == null ? void 0 : _e.endDate);
117
- const endBase = (0, import_dayjs.default)(endDateRaw);
118
- const endDate2 = endBase.isValid() ? (0, import_dayjs.default)(`${endBase.format("YYYY-MM-DD")} ${startTime}`) : endBase;
109
+ const startTime = getServeStartTime(service?._extend?.start_time);
110
+ const endDateRaw = service?._extend?.end_date ?? service?._extend?.endDate;
111
+ const endBase = (0, _dayjs.default)(endDateRaw);
112
+ // 跨日结束日保留与开始相同的时刻(如 11:24),避免 end_date 仅日期时被解析为 00:00
113
+ const endDate = endBase.isValid() ? (0, _dayjs.default)(`${endBase.format('YYYY-MM-DD')} ${startTime}`) : endBase;
119
114
  return {
120
115
  startDate,
121
- endDate: endDate2
116
+ endDate
122
117
  };
123
118
  }
124
- const session = (_g = (_f = service == null ? void 0 : service._extend) == null ? void 0 : _f.other) == null ? void 0 : _g.session;
119
+ const session = service?._extend?.other?.session;
125
120
  if (isSessionProduct(service) && session) {
126
121
  return {
127
- startDate: (0, import_dayjs.default)(session.start_at),
128
- endDate: (0, import_dayjs.default)(session.end_at)
122
+ startDate: (0, _dayjs.default)(session.start_at),
123
+ endDate: (0, _dayjs.default)(session.end_at)
129
124
  };
130
125
  }
131
- const endDate = startDate.add(import_flexible.flexibleObj.getValue((_h = service == null ? void 0 : service._extend) == null ? void 0 : _h.duration), "minute");
132
- return { startDate, endDate };
126
+ const endDate = startDate.add(_flexible.flexibleObj.getValue(service?._extend?.duration), 'minute');
127
+ return {
128
+ startDate,
129
+ endDate
130
+ };
133
131
  }
132
+
133
+ /**
134
+ * 跨日预约相关:把 _extend.start_date / end_date 都对齐到 dayjs startOf('day')。
135
+ * 与 info2 `formatDayDate` 等价。
136
+ */
134
137
  function formatDayDate(_extend) {
135
138
  return {
136
- start_date: (0, import_dayjs.default)(_extend == null ? void 0 : _extend.start_date).startOf("day"),
137
- end_date: (0, import_dayjs.default)(_extend == null ? void 0 : _extend.end_date).startOf("day")
139
+ start_date: (0, _dayjs.default)(_extend?.start_date).startOf('day'),
140
+ end_date: (0, _dayjs.default)(_extend?.end_date).startOf('day')
138
141
  };
139
142
  }
143
+
144
+ /**
145
+ * 计算跨日预约时长:
146
+ * - type='days' → end - start 的天数
147
+ * - type='minutes' → end - start 的分钟数
148
+ * 与 info2 `getDays` 等价。
149
+ */
140
150
  function getDays(cacheItem, type) {
141
- var _a, _b;
142
- if (type === "days") {
143
- const { start_date, end_date } = formatDayDate(cacheItem._extend);
144
- return end_date.diff(start_date, "day");
151
+ if (type === 'days') {
152
+ const {
153
+ start_date,
154
+ end_date
155
+ } = formatDayDate(cacheItem._extend);
156
+ return end_date.diff(start_date, 'day');
145
157
  }
146
- const startDate = (0, import_dayjs.default)((_a = cacheItem == null ? void 0 : cacheItem._extend) == null ? void 0 : _a.start_date);
147
- const endDate = (0, import_dayjs.default)((_b = cacheItem == null ? void 0 : cacheItem._extend) == null ? void 0 : _b.end_date);
158
+ const startDate = (0, _dayjs.default)(cacheItem?._extend?.start_date);
159
+ const endDate = (0, _dayjs.default)(cacheItem?._extend?.end_date);
148
160
  return endDate.diff(startDate, type);
149
- }
150
- // Annotate the CommonJS export names for ESM import in node:
151
- 0 && (module.exports = {
152
- applySessionTimesToExtend,
153
- formatDayDate,
154
- getDays,
155
- getDurationValue,
156
- getServeStartTime,
157
- getServiceTimes,
158
- getSessionFromItem,
159
- isBookingProduct,
160
- isMultiDayProduct,
161
- isSessionProduct
162
- });
161
+ }
@@ -1,58 +1,45 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __export = (target, all) => {
8
- for (var name in all)
9
- __defProp(target, name, { get: all[name], enumerable: true });
10
- };
11
- var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from))
14
- if (!__hasOwnProp.call(to, key) && key !== except)
15
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
- }
17
- return to;
18
- };
19
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
- // If the importer is in node compatibility mode or this is not an ESM
21
- // file that has been converted to a CommonJS file using a Babel-
22
- // compatible transform (i.e. "__esModule" has not been set), then set
23
- // "default" to the CommonJS "module.exports" for node compatibility.
24
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
- mod
26
- ));
27
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ "use strict";
28
2
 
29
- // src/modules/BookingContext/utils/timeSlices.ts
30
- var timeSlices_exports = {};
31
- __export(timeSlices_exports, {
32
- findNextDuration: () => findNextDuration,
33
- findNextSlice: () => findNextSlice,
34
- getDurationValue: () => import_flexible.getDurationValue,
35
- getEndDate: () => getEndDate,
36
- sliceDayIntoFiveMinutes: () => sliceDayIntoFiveMinutes
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.findNextDuration = findNextDuration;
7
+ exports.findNextSlice = findNextSlice;
8
+ Object.defineProperty(exports, "getDurationValue", {
9
+ enumerable: true,
10
+ get: function () {
11
+ return _flexible.getDurationValue;
12
+ }
37
13
  });
38
- module.exports = __toCommonJS(timeSlices_exports);
39
- var import_dayjs = __toESM(require("dayjs"));
40
- var import_flexible = require("./flexible");
41
- var timeSlicesCache = /* @__PURE__ */ new Map();
14
+ exports.getEndDate = getEndDate;
15
+ exports.sliceDayIntoFiveMinutes = sliceDayIntoFiveMinutes;
16
+ var _dayjs = _interopRequireDefault(require("dayjs"));
17
+ var _flexible = require("./flexible");
18
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
19
+ const timeSlicesCache = new Map();
42
20
  function copyTimeSlices(result) {
43
21
  return {
44
22
  timeSlices: [...result.timeSlices],
45
23
  durationSlicesBasedOnTime: [...result.durationSlicesBasedOnTime]
46
24
  };
47
25
  }
26
+
27
+ /**
28
+ * 把一天切成等长时间槽,输出 timeSlices(开始时间标签)与 durationSlicesBasedOnTime(基于切片的时长选项)。
29
+ *
30
+ * 与 info2 `sliceDayIntoFiveMinutes` 行为等价;为了不依赖 `locales`,label 输出原始时间字符串('08:00 AM' / '90'),
31
+ * UI 侧需要本地化展示时可基于 value 自行包装。
32
+ *
33
+ * @param config booking config `basic.service_time`,{ value: minutes }
34
+ * @param isDay 是否跨日预约(true 时按 1~30 天切片)
35
+ */
48
36
  function sliceDayIntoFiveMinutes(config, isDay) {
49
37
  const timeSlice = config && config.value || 5;
50
- const cacheKey = isDay ? "days" : `minutes:${timeSlice}`;
38
+ const cacheKey = isDay ? 'days' : `minutes:${timeSlice}`;
51
39
  const cached = timeSlicesCache.get(cacheKey);
52
- if (cached)
53
- return copyTimeSlices(cached);
54
- const startTime = (0, import_dayjs.default)().startOf("day");
55
- const endTime = (0, import_dayjs.default)().endOf("day");
40
+ if (cached) return copyTimeSlices(cached);
41
+ const startTime = (0, _dayjs.default)().startOf('day');
42
+ const endTime = (0, _dayjs.default)().endOf('day');
56
43
  const timeSlices = [];
57
44
  const durationSlicesBasedOnTime = [];
58
45
  let currentTime = startTime;
@@ -60,8 +47,8 @@ function sliceDayIntoFiveMinutes(config, isDay) {
60
47
  let currentDay = 1;
61
48
  while (currentDay <= 30) {
62
49
  timeSlices.push({
63
- label: currentTime.format("hh:mm A"),
64
- value: currentTime.format("HH:mm")
50
+ label: currentTime.format('hh:mm A'),
51
+ value: currentTime.format('HH:mm')
65
52
  });
66
53
  durationSlicesBasedOnTime.push({
67
54
  label: String(currentDay),
@@ -69,71 +56,74 @@ function sliceDayIntoFiveMinutes(config, isDay) {
69
56
  });
70
57
  currentDay += 1;
71
58
  }
72
- const result2 = { timeSlices, durationSlicesBasedOnTime };
73
- timeSlicesCache.set(cacheKey, result2);
74
- return copyTimeSlices(result2);
59
+ const result = {
60
+ timeSlices,
61
+ durationSlicesBasedOnTime
62
+ };
63
+ timeSlicesCache.set(cacheKey, result);
64
+ return copyTimeSlices(result);
75
65
  }
76
66
  while (currentTime.isBefore(endTime)) {
77
67
  timeSlices.push({
78
- label: currentTime.format("hh:mm A"),
79
- value: currentTime.format("HH:mm")
68
+ label: currentTime.format('hh:mm A'),
69
+ value: currentTime.format('HH:mm')
80
70
  });
81
- const nextTime = currentTime.add(timeSlice, "minute");
82
- const durationValue = nextTime.diff(startTime, "minute");
71
+ const nextTime = currentTime.add(timeSlice, 'minute');
72
+ const durationValue = nextTime.diff(startTime, 'minute');
83
73
  durationSlicesBasedOnTime.push({
84
74
  label: String(durationValue),
85
75
  value: durationValue
86
76
  });
87
77
  currentTime = nextTime;
88
78
  }
89
- const result = { timeSlices, durationSlicesBasedOnTime };
79
+ const result = {
80
+ timeSlices,
81
+ durationSlicesBasedOnTime
82
+ };
90
83
  timeSlicesCache.set(cacheKey, result);
91
84
  return copyTimeSlices(result);
92
85
  }
86
+
87
+ /**
88
+ * 取「下一个 duration 选项」:优先用 defaultValue;否则在 array 中找匹配的;找不到取第一个。
89
+ * 与 info2 `findNextDuration` 等价。
90
+ */
93
91
  function findNextDuration(current, array, defaultValue) {
94
- if (defaultValue !== void 0 && defaultValue !== null)
95
- return defaultValue;
96
- if (!array || array.length === 0)
97
- return void 0;
92
+ if (defaultValue !== undefined && defaultValue !== null) return defaultValue;
93
+ if (!array || array.length === 0) return undefined;
98
94
  for (let i = 0; i < array.length; i += 1) {
99
- if (array[i].value === (current == null ? void 0 : current.value))
100
- return array[i].value;
95
+ if (array[i].value === current?.value) return array[i].value;
101
96
  }
102
97
  return array[0].value;
103
98
  }
99
+
100
+ /** 取首选 time slice:若指定 date(HH:mm)则找第一个 >= date 的;否则第一个。 */
104
101
  function findNextSlice(params) {
105
- var _a;
106
- const { timeSlices, index = 0, date = "" } = params;
107
- const currentTimeValue = date || (0, import_dayjs.default)().format("HH:mm");
102
+ const {
103
+ timeSlices,
104
+ index = 0,
105
+ date = ''
106
+ } = params;
107
+ const currentTimeValue = date || (0, _dayjs.default)().format('HH:mm');
108
108
  for (let i = 0; i < timeSlices.length; i += 1) {
109
- if (timeSlices[i].value !== "now" && timeSlices[i].value >= currentTimeValue) {
109
+ if (timeSlices[i].value !== 'now' && timeSlices[i].value >= currentTimeValue) {
110
110
  return timeSlices[i].value;
111
111
  }
112
112
  }
113
- return (_a = timeSlices[index]) == null ? void 0 : _a.value;
113
+ return timeSlices[index]?.value;
114
114
  }
115
+
116
+ /** 取 endDate;duration='flexible' 时取 endDate 与店铺营业时间的较小值,否则 startDate + duration 分钟。 */
115
117
  function getEndDate(startDate, duration, endDate, shopOpeningHours) {
116
- if (duration === "flexible") {
117
- let openingDate = (0, import_dayjs.default)(
118
- `${startDate.format("YYYY-MM-DD")} ${shopOpeningHours || "23:59"}`
119
- );
120
- if ((0, import_dayjs.default)(startDate).isAfter(openingDate)) {
121
- openingDate = openingDate.add(1, "day");
118
+ if (duration === 'flexible') {
119
+ let openingDate = (0, _dayjs.default)(`${startDate.format('YYYY-MM-DD')} ${shopOpeningHours || '23:59'}`);
120
+ if ((0, _dayjs.default)(startDate).isAfter(openingDate)) {
121
+ openingDate = openingDate.add(1, 'day');
122
122
  }
123
- if (!endDate)
124
- return openingDate;
125
- const endDateObj = (0, import_dayjs.default)(endDate);
126
- if (endDateObj.isAfter(openingDate))
127
- return openingDate;
123
+ if (!endDate) return openingDate;
124
+ const endDateObj = (0, _dayjs.default)(endDate);
125
+ if (endDateObj.isAfter(openingDate)) return openingDate;
128
126
  return endDateObj;
129
127
  }
130
- return startDate.add(Number(duration), "minute");
131
- }
132
- // Annotate the CommonJS export names for ESM import in node:
133
- 0 && (module.exports = {
134
- findNextDuration,
135
- findNextSlice,
136
- getDurationValue,
137
- getEndDate,
138
- sliceDayIntoFiveMinutes
139
- });
128
+ return startDate.add(Number(duration), 'minute');
129
+ }