@pisell/pisellos 2.2.243 → 2.2.244

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 (315) hide show
  1. package/dist/model/strategy/adapter/promotion/evaluator.js +2 -3
  2. package/dist/model/strategy/adapter/promotion/index.js +9 -0
  3. package/dist/model/strategy/adapter/walletPass/utils.js +4 -7
  4. package/dist/modules/Cart/utils/cartProduct.js +3 -24
  5. package/dist/modules/Cart/utils/changePrice.js +11 -11
  6. package/dist/modules/Customer/index.d.ts +0 -20
  7. package/dist/modules/Customer/index.js +83 -172
  8. package/dist/modules/Customer/types.d.ts +0 -2
  9. package/dist/modules/Discount/index.js +3 -4
  10. package/dist/modules/Discount/types.d.ts +0 -1
  11. package/dist/modules/OpenData/index.d.ts +0 -8
  12. package/dist/modules/OpenData/index.js +17 -37
  13. package/dist/modules/Order/index.d.ts +18 -268
  14. package/dist/modules/Order/index.js +757 -3306
  15. package/dist/modules/Order/types.d.ts +31 -279
  16. package/dist/modules/Order/types.js +0 -38
  17. package/dist/modules/Order/utils.d.ts +5 -147
  18. package/dist/modules/Order/utils.js +103 -746
  19. package/dist/modules/Payment/index.d.ts +13 -10
  20. package/dist/modules/Payment/index.js +837 -467
  21. package/dist/modules/Payment/types.d.ts +0 -2
  22. package/dist/modules/Payment/utils.js +1 -2
  23. package/dist/modules/Payment/walletpass.js +7 -14
  24. package/dist/modules/ProductList/index.d.ts +12 -16
  25. package/dist/modules/ProductList/index.js +59 -133
  26. package/dist/modules/ProductList/types.d.ts +0 -14
  27. package/dist/modules/Quotation/index.d.ts +1 -0
  28. package/dist/modules/Quotation/index.js +22 -25
  29. package/dist/modules/Rules/index.d.ts +0 -4
  30. package/dist/modules/Rules/index.js +69 -93
  31. package/dist/modules/Rules/types.d.ts +0 -1
  32. package/dist/modules/SalesSummary/index.d.ts +25 -8
  33. package/dist/modules/SalesSummary/index.js +35 -86
  34. package/dist/modules/SalesSummary/types.d.ts +1 -4
  35. package/dist/modules/SalesSummary/utils.d.ts +25 -2
  36. package/dist/modules/SalesSummary/utils.js +162 -794
  37. package/dist/modules/Schedule/index.d.ts +0 -7
  38. package/dist/modules/Schedule/index.js +2 -24
  39. package/dist/modules/Summary/index.js +3 -4
  40. package/dist/modules/index.d.ts +0 -2
  41. package/dist/modules/index.js +1 -3
  42. package/dist/plugins/request.d.ts +0 -1
  43. package/dist/server/index.d.ts +1 -204
  44. package/dist/server/index.js +928 -3658
  45. package/dist/server/modules/index.d.ts +0 -2
  46. package/dist/server/modules/index.js +0 -2
  47. package/dist/server/modules/order/index.d.ts +4 -120
  48. package/dist/server/modules/order/index.js +483 -1779
  49. package/dist/server/modules/order/types.d.ts +3 -32
  50. package/dist/server/modules/order/types.js +0 -8
  51. package/dist/server/modules/order/utils/filterBookings.js +3 -26
  52. package/dist/server/modules/order/utils/filterOrders.js +8 -23
  53. package/dist/server/modules/products/index.d.ts +7 -34
  54. package/dist/server/modules/products/index.js +317 -631
  55. package/dist/server/modules/resource/index.d.ts +0 -2
  56. package/dist/server/modules/resource/index.js +3 -29
  57. package/dist/server/modules/schedule/index.d.ts +4 -4
  58. package/dist/server/modules/schedule/index.js +88 -111
  59. package/dist/solution/BaseSales/index.d.ts +9 -131
  60. package/dist/solution/BaseSales/index.js +447 -1944
  61. package/dist/solution/BaseSales/types.d.ts +6 -76
  62. package/dist/solution/BaseSales/types.js +4 -5
  63. package/dist/solution/BaseSales/utils/transformBaseProductToOrderProduct.d.ts +0 -1
  64. package/dist/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +24 -105
  65. package/dist/solution/BaseSales/utils.d.ts +1 -1
  66. package/dist/solution/BaseSales/utils.js +21 -62
  67. package/dist/solution/BookingByStep/index.d.ts +1 -1
  68. package/dist/solution/BookingTicket/index.d.ts +10 -270
  69. package/dist/solution/BookingTicket/index.js +237 -1772
  70. package/dist/solution/BookingTicket/types.d.ts +1 -118
  71. package/dist/solution/BookingTicket/types.js +2 -41
  72. package/dist/solution/BookingTicket/utils/bookingStatus.d.ts +0 -40
  73. package/dist/solution/BookingTicket/utils/bookingStatus.js +0 -70
  74. package/dist/solution/BookingTicket/utils/cartView.d.ts +1 -9
  75. package/dist/solution/BookingTicket/utils/cartView.js +7 -94
  76. package/dist/solution/BookingTicket/utils/scan/index.d.ts +0 -5
  77. package/dist/solution/BookingTicket/utils/scan/index.js +8 -20
  78. package/dist/solution/Checkout/appointmentDemo.json +1 -0
  79. package/dist/solution/Checkout/index.d.ts +0 -1
  80. package/dist/solution/Checkout/index.js +9 -10
  81. package/dist/solution/RegisterAndLogin/config.js +10 -2
  82. package/dist/solution/ScanOrder/index.d.ts +3 -9
  83. package/dist/solution/ScanOrder/index.js +134 -241
  84. package/dist/solution/ScanOrder/types.d.ts +5 -9
  85. package/dist/solution/ScanOrder/types.js +3 -2
  86. package/dist/solution/ScanOrder/utils.d.ts +1 -1
  87. package/dist/solution/ScanOrder/utils.js +22 -84
  88. package/dist/solution/VenueBooking/index.d.ts +2 -5
  89. package/dist/solution/VenueBooking/index.js +59 -110
  90. package/dist/solution/VenueBooking/sales-section-4-annotated.json +2 -0
  91. package/dist/solution/VenueBooking/utils/slotMerge.d.ts +0 -4
  92. package/dist/solution/VenueBooking/utils/slotMerge.js +0 -10
  93. package/dist/types/index.d.ts +0 -10
  94. package/lib/model/strategy/adapter/promotion/evaluator.js +1 -2
  95. package/lib/model/strategy/adapter/promotion/index.js +0 -49
  96. package/lib/model/strategy/adapter/walletPass/utils.js +2 -3
  97. package/lib/modules/Cart/utils/cartProduct.js +3 -20
  98. package/lib/modules/Cart/utils/changePrice.js +20 -12
  99. package/lib/modules/Customer/index.d.ts +0 -20
  100. package/lib/modules/Customer/index.js +11 -64
  101. package/lib/modules/Customer/types.d.ts +0 -2
  102. package/lib/modules/Discount/index.js +1 -5
  103. package/lib/modules/Discount/types.d.ts +0 -1
  104. package/lib/modules/OpenData/index.d.ts +0 -8
  105. package/lib/modules/OpenData/index.js +5 -19
  106. package/lib/modules/Order/index.d.ts +18 -268
  107. package/lib/modules/Order/index.js +344 -2149
  108. package/lib/modules/Order/types.d.ts +31 -279
  109. package/lib/modules/Order/types.js +0 -1
  110. package/lib/modules/Order/utils.d.ts +5 -147
  111. package/lib/modules/Order/utils.js +46 -614
  112. package/lib/modules/Payment/index.d.ts +13 -10
  113. package/lib/modules/Payment/index.js +150 -18
  114. package/lib/modules/Payment/types.d.ts +0 -2
  115. package/lib/modules/Payment/utils.js +1 -2
  116. package/lib/modules/Payment/walletpass.js +3 -7
  117. package/lib/modules/ProductList/index.d.ts +12 -16
  118. package/lib/modules/ProductList/index.js +4 -41
  119. package/lib/modules/ProductList/types.d.ts +0 -14
  120. package/lib/modules/Quotation/index.d.ts +1 -0
  121. package/lib/modules/Quotation/index.js +16 -19
  122. package/lib/modules/Rules/index.d.ts +0 -4
  123. package/lib/modules/Rules/index.js +120 -136
  124. package/lib/modules/Rules/types.d.ts +0 -1
  125. package/lib/modules/SalesSummary/index.d.ts +25 -8
  126. package/lib/modules/SalesSummary/index.js +4 -30
  127. package/lib/modules/SalesSummary/types.d.ts +1 -4
  128. package/lib/modules/SalesSummary/utils.d.ts +25 -2
  129. package/lib/modules/SalesSummary/utils.js +91 -645
  130. package/lib/modules/Schedule/index.d.ts +0 -7
  131. package/lib/modules/Schedule/index.js +1 -17
  132. package/lib/modules/Summary/index.js +4 -5
  133. package/lib/modules/index.d.ts +0 -2
  134. package/lib/modules/index.js +1 -5
  135. package/lib/plugins/request.d.ts +0 -1
  136. package/lib/server/index.d.ts +1 -204
  137. package/lib/server/index.js +57 -1888
  138. package/lib/server/modules/index.d.ts +0 -2
  139. package/lib/server/modules/index.js +0 -3
  140. package/lib/server/modules/order/index.d.ts +4 -120
  141. package/lib/server/modules/order/index.js +142 -919
  142. package/lib/server/modules/order/types.d.ts +3 -32
  143. package/lib/server/modules/order/utils/filterBookings.js +5 -24
  144. package/lib/server/modules/order/utils/filterOrders.js +6 -15
  145. package/lib/server/modules/products/index.d.ts +7 -34
  146. package/lib/server/modules/products/index.js +54 -189
  147. package/lib/server/modules/resource/index.d.ts +0 -2
  148. package/lib/server/modules/resource/index.js +3 -27
  149. package/lib/server/modules/schedule/index.d.ts +4 -4
  150. package/lib/server/modules/schedule/index.js +40 -47
  151. package/lib/solution/BaseSales/index.d.ts +9 -131
  152. package/lib/solution/BaseSales/index.js +63 -1106
  153. package/lib/solution/BaseSales/types.d.ts +6 -76
  154. package/lib/solution/BaseSales/types.js +1 -3
  155. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.d.ts +0 -1
  156. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +18 -106
  157. package/lib/solution/BaseSales/utils.d.ts +1 -1
  158. package/lib/solution/BaseSales/utils.js +10 -54
  159. package/lib/solution/BookingByStep/index.d.ts +1 -1
  160. package/lib/solution/BookingTicket/index.d.ts +10 -270
  161. package/lib/solution/BookingTicket/index.js +29 -922
  162. package/lib/solution/BookingTicket/types.d.ts +1 -118
  163. package/lib/solution/BookingTicket/types.js +0 -11
  164. package/lib/solution/BookingTicket/utils/bookingStatus.d.ts +0 -40
  165. package/lib/solution/BookingTicket/utils/bookingStatus.js +2 -44
  166. package/lib/solution/BookingTicket/utils/cartView.d.ts +1 -9
  167. package/lib/solution/BookingTicket/utils/cartView.js +6 -61
  168. package/lib/solution/BookingTicket/utils/scan/index.d.ts +0 -5
  169. package/lib/solution/BookingTicket/utils/scan/index.js +3 -17
  170. package/lib/solution/Checkout/appointmentDemo.json +1 -0
  171. package/lib/solution/Checkout/index.d.ts +0 -1
  172. package/lib/solution/Checkout/index.js +2 -1
  173. package/lib/solution/RegisterAndLogin/config.js +10 -2
  174. package/lib/solution/ScanOrder/index.d.ts +3 -9
  175. package/lib/solution/ScanOrder/index.js +70 -153
  176. package/lib/solution/ScanOrder/types.d.ts +5 -9
  177. package/lib/solution/ScanOrder/utils.d.ts +1 -1
  178. package/lib/solution/ScanOrder/utils.js +17 -83
  179. package/lib/solution/VenueBooking/index.d.ts +2 -5
  180. package/lib/solution/VenueBooking/index.js +17 -54
  181. package/lib/solution/VenueBooking/sales-section-4-annotated.json +2 -0
  182. package/lib/solution/VenueBooking/utils/slotMerge.d.ts +0 -4
  183. package/lib/solution/VenueBooking/utils/slotMerge.js +0 -10
  184. package/lib/types/index.d.ts +0 -10
  185. package/package.json +1 -1
  186. package/dist/modules/BookingContext/index.d.ts +0 -48
  187. package/dist/modules/BookingContext/index.js +0 -566
  188. package/dist/modules/BookingContext/types.d.ts +0 -102
  189. package/dist/modules/BookingContext/types.js +0 -51
  190. package/dist/modules/BookingContext/utils/buildCacheItemFromOrderLine.d.ts +0 -16
  191. package/dist/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +0 -284
  192. package/dist/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.d.ts +0 -8
  193. package/dist/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +0 -145
  194. package/dist/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +0 -76
  195. package/dist/modules/BookingContext/utils/cacheItemToBookingInput.js +0 -218
  196. package/dist/modules/BookingContext/utils/flexible.d.ts +0 -28
  197. package/dist/modules/BookingContext/utils/flexible.js +0 -56
  198. package/dist/modules/BookingContext/utils/formatResourceList.d.ts +0 -8
  199. package/dist/modules/BookingContext/utils/formatResourceList.js +0 -38
  200. package/dist/modules/BookingContext/utils/index.d.ts +0 -11
  201. package/dist/modules/BookingContext/utils/index.js +0 -11
  202. package/dist/modules/BookingContext/utils/noResource.d.ts +0 -13
  203. package/dist/modules/BookingContext/utils/noResource.js +0 -77
  204. package/dist/modules/BookingContext/utils/orderLineDisplay.d.ts +0 -1
  205. package/dist/modules/BookingContext/utils/orderLineDisplay.js +0 -36
  206. package/dist/modules/BookingContext/utils/productExtend.d.ts +0 -72
  207. package/dist/modules/BookingContext/utils/productExtend.js +0 -339
  208. package/dist/modules/BookingContext/utils/resourceErrors.d.ts +0 -41
  209. package/dist/modules/BookingContext/utils/resourceErrors.js +0 -74
  210. package/dist/modules/BookingContext/utils/resourceSelection.d.ts +0 -7
  211. package/dist/modules/BookingContext/utils/resourceSelection.js +0 -24
  212. package/dist/modules/BookingContext/utils/resources.d.ts +0 -80
  213. package/dist/modules/BookingContext/utils/resources.js +0 -486
  214. package/dist/modules/BookingContext/utils/serviceTimes.d.ts +0 -55
  215. package/dist/modules/BookingContext/utils/serviceTimes.js +0 -151
  216. package/dist/modules/BookingContext/utils/timeSlices.d.ts +0 -42
  217. package/dist/modules/BookingContext/utils/timeSlices.js +0 -100
  218. package/dist/modules/Order/utils/manualProductDiscount.d.ts +0 -106
  219. package/dist/modules/Order/utils/manualProductDiscount.js +0 -210
  220. package/dist/modules/SurchargeList/index.d.ts +0 -16
  221. package/dist/modules/SurchargeList/index.js +0 -162
  222. package/dist/modules/SurchargeList/types.d.ts +0 -11
  223. package/dist/modules/SurchargeList/types.js +0 -1
  224. package/dist/server/modules/payment/index.d.ts +0 -28
  225. package/dist/server/modules/payment/index.js +0 -305
  226. package/dist/server/modules/payment/types.d.ts +0 -9
  227. package/dist/server/modules/payment/types.js +0 -1
  228. package/dist/server/test.json +0 -713
  229. package/dist/server/utils/small-ticket.d.ts +0 -71
  230. package/dist/server/utils/small-ticket.js +0 -830
  231. package/dist/solution/BaseSales/utils/cartPromotion.d.ts +0 -287
  232. package/dist/solution/BaseSales/utils/cartPromotion.js +0 -1438
  233. package/dist/solution/BaseSales/utils/quotationPrice.d.ts +0 -7
  234. package/dist/solution/BaseSales/utils/quotationPrice.js +0 -237
  235. package/dist/solution/BookingTicket/utils/addProductDecision.d.ts +0 -117
  236. package/dist/solution/BookingTicket/utils/addProductDecision.js +0 -346
  237. package/dist/solution/BookingTicket/utils/addTimeAvailability.d.ts +0 -35
  238. package/dist/solution/BookingTicket/utils/addTimeAvailability.js +0 -95
  239. package/dist/solution/BookingTicket/utils/exampleData.d.ts +0 -123
  240. package/dist/solution/BookingTicket/utils/exampleData.js +0 -183
  241. package/dist/solution/BookingTicket/utils/resolveBestAddTimePlan.d.ts +0 -185
  242. package/dist/solution/BookingTicket/utils/resolveBestAddTimePlan.js +0 -438
  243. package/dist/solution/BookingTicket/utils/scan/applyGlobalScan.d.ts +0 -36
  244. package/dist/solution/BookingTicket/utils/scan/applyGlobalScan.js +0 -399
  245. package/dist/solution/BookingTicket/utils/scan/formatGlobalScan.d.ts +0 -32
  246. package/dist/solution/BookingTicket/utils/scan/formatGlobalScan.js +0 -56
  247. package/dist/solution/BookingTicket/utils/scan/scanProductValues.d.ts +0 -21
  248. package/dist/solution/BookingTicket/utils/scan/scanProductValues.js +0 -150
  249. package/dist/solution/BookingTicket/utils/sessionCatalogStale.d.ts +0 -23
  250. package/dist/solution/BookingTicket/utils/sessionCatalogStale.js +0 -78
  251. package/lib/modules/BookingContext/index.d.ts +0 -48
  252. package/lib/modules/BookingContext/index.js +0 -368
  253. package/lib/modules/BookingContext/types.d.ts +0 -102
  254. package/lib/modules/BookingContext/types.js +0 -34
  255. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.d.ts +0 -16
  256. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +0 -276
  257. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.d.ts +0 -8
  258. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +0 -151
  259. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +0 -76
  260. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +0 -201
  261. package/lib/modules/BookingContext/utils/flexible.d.ts +0 -28
  262. package/lib/modules/BookingContext/utils/flexible.js +0 -80
  263. package/lib/modules/BookingContext/utils/formatResourceList.d.ts +0 -8
  264. package/lib/modules/BookingContext/utils/formatResourceList.js +0 -50
  265. package/lib/modules/BookingContext/utils/index.d.ts +0 -11
  266. package/lib/modules/BookingContext/utils/index.js +0 -43
  267. package/lib/modules/BookingContext/utils/noResource.d.ts +0 -13
  268. package/lib/modules/BookingContext/utils/noResource.js +0 -90
  269. package/lib/modules/BookingContext/utils/orderLineDisplay.d.ts +0 -1
  270. package/lib/modules/BookingContext/utils/orderLineDisplay.js +0 -56
  271. package/lib/modules/BookingContext/utils/productExtend.d.ts +0 -72
  272. package/lib/modules/BookingContext/utils/productExtend.js +0 -283
  273. package/lib/modules/BookingContext/utils/resourceErrors.d.ts +0 -41
  274. package/lib/modules/BookingContext/utils/resourceErrors.js +0 -80
  275. package/lib/modules/BookingContext/utils/resourceSelection.d.ts +0 -7
  276. package/lib/modules/BookingContext/utils/resourceSelection.js +0 -46
  277. package/lib/modules/BookingContext/utils/resources.d.ts +0 -80
  278. package/lib/modules/BookingContext/utils/resources.js +0 -377
  279. package/lib/modules/BookingContext/utils/serviceTimes.d.ts +0 -55
  280. package/lib/modules/BookingContext/utils/serviceTimes.js +0 -162
  281. package/lib/modules/BookingContext/utils/timeSlices.d.ts +0 -42
  282. package/lib/modules/BookingContext/utils/timeSlices.js +0 -124
  283. package/lib/modules/Order/utils/manualProductDiscount.d.ts +0 -106
  284. package/lib/modules/Order/utils/manualProductDiscount.js +0 -206
  285. package/lib/modules/SurchargeList/index.d.ts +0 -16
  286. package/lib/modules/SurchargeList/index.js +0 -89
  287. package/lib/modules/SurchargeList/types.d.ts +0 -11
  288. package/lib/modules/SurchargeList/types.js +0 -17
  289. package/lib/server/modules/payment/index.d.ts +0 -28
  290. package/lib/server/modules/payment/index.js +0 -192
  291. package/lib/server/modules/payment/types.d.ts +0 -9
  292. package/lib/server/modules/payment/types.js +0 -17
  293. package/lib/server/test.json +0 -713
  294. package/lib/server/utils/small-ticket.d.ts +0 -71
  295. package/lib/server/utils/small-ticket.js +0 -781
  296. package/lib/solution/BaseSales/utils/cartPromotion.d.ts +0 -287
  297. package/lib/solution/BaseSales/utils/cartPromotion.js +0 -992
  298. package/lib/solution/BaseSales/utils/quotationPrice.d.ts +0 -7
  299. package/lib/solution/BaseSales/utils/quotationPrice.js +0 -277
  300. package/lib/solution/BookingTicket/utils/addProductDecision.d.ts +0 -117
  301. package/lib/solution/BookingTicket/utils/addProductDecision.js +0 -318
  302. package/lib/solution/BookingTicket/utils/addTimeAvailability.d.ts +0 -35
  303. package/lib/solution/BookingTicket/utils/addTimeAvailability.js +0 -125
  304. package/lib/solution/BookingTicket/utils/exampleData.d.ts +0 -123
  305. package/lib/solution/BookingTicket/utils/exampleData.js +0 -0
  306. package/lib/solution/BookingTicket/utils/resolveBestAddTimePlan.d.ts +0 -185
  307. package/lib/solution/BookingTicket/utils/resolveBestAddTimePlan.js +0 -254
  308. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.d.ts +0 -36
  309. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.js +0 -168
  310. package/lib/solution/BookingTicket/utils/scan/formatGlobalScan.d.ts +0 -32
  311. package/lib/solution/BookingTicket/utils/scan/formatGlobalScan.js +0 -51
  312. package/lib/solution/BookingTicket/utils/scan/scanProductValues.d.ts +0 -21
  313. package/lib/solution/BookingTicket/utils/scan/scanProductValues.js +0 -127
  314. package/lib/solution/BookingTicket/utils/sessionCatalogStale.d.ts +0 -23
  315. package/lib/solution/BookingTicket/utils/sessionCatalogStale.js +0 -85
@@ -1,318 +0,0 @@
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);
28
-
29
- // src/solution/BookingTicket/utils/addProductDecision.ts
30
- var addProductDecision_exports = {};
31
- __export(addProductDecision_exports, {
32
- buildCacheItemFromCartDetail: () => buildCacheItemFromCartDetail,
33
- buildCacheItemFromDetail: () => buildCacheItemFromDetail,
34
- buildRequiresDetailPayload: () => buildRequiresDetailPayload,
35
- decideAddProduct: () => decideAddProduct,
36
- decideAfterDetail: () => decideAfterDetail,
37
- decideAutoClose: () => decideAutoClose,
38
- getIsEject: () => getIsEject,
39
- getIsOnlySession: () => getIsOnlySession,
40
- prepareBookingCacheItem: () => prepareBookingCacheItem,
41
- transformDetailToProductAndBooking: () => transformDetailToProductAndBooking
42
- });
43
- module.exports = __toCommonJS(addProductDecision_exports);
44
- var import_dayjs = __toESM(require("dayjs"));
45
- var import_BookingContext = require("../../../modules/BookingContext");
46
- var import_transformBaseProductToOrderProduct = require("../../BaseSales/utils/transformBaseProductToOrderProduct");
47
- function needsSpecDetailModal(item) {
48
- if (item == null ? void 0 : item.open_sold_weight)
49
- return true;
50
- if (item == null ? void 0 : item.isOpenDetailModal)
51
- return true;
52
- if (!(item == null ? void 0 : item.cartDetailValue))
53
- return true;
54
- return false;
55
- }
56
- function needsBookingEdit(cacheItem, ctx) {
57
- if (isNormalBookingProduct(cacheItem))
58
- return false;
59
- const isAutoAllocationOn = (ctx == null ? void 0 : ctx.isAutoAllocationOn) || (() => true);
60
- return !(0, import_BookingContext.getIsAutoClose)(cacheItem, isAutoAllocationOn);
61
- }
62
- function buildRequiresBookingEditPayload(cacheItem, ctx) {
63
- return {
64
- cacheItem,
65
- customerId: ctx == null ? void 0 : ctx.customerId,
66
- date: typeof (ctx == null ? void 0 : ctx.date) === "string" ? ctx.date : null
67
- };
68
- }
69
- function decideAddProduct(item, ctx) {
70
- const derivedCtx = withDerivedBookingCtx(ctx);
71
- if (needsSpecDetailModal(item)) {
72
- return {
73
- action: "requiresDetail",
74
- payload: buildRequiresDetailPayload(item, derivedCtx)
75
- };
76
- }
77
- const cacheItem = prepareBookingCacheItem(
78
- buildCacheItemFromCartDetail(item, derivedCtx),
79
- derivedCtx
80
- );
81
- if (needsBookingEdit(cacheItem, derivedCtx)) {
82
- return {
83
- action: "requiresBookingEdit",
84
- cacheItem,
85
- payload: buildRequiresBookingEditPayload(cacheItem, derivedCtx)
86
- };
87
- }
88
- return { action: "add", cacheItem };
89
- }
90
- function decideAfterDetail(cacheItem, ctx) {
91
- const derivedCtx = withDerivedBookingCtx(ctx);
92
- const extended = prepareBookingCacheItem(cacheItem, derivedCtx);
93
- if (needsBookingEdit(extended, derivedCtx)) {
94
- return {
95
- action: "requiresBookingEdit",
96
- cacheItem: extended,
97
- payload: buildRequiresBookingEditPayload(extended, derivedCtx)
98
- };
99
- }
100
- return { action: "add", cacheItem: extended };
101
- }
102
- function isNormalBookingProduct(item) {
103
- return !(0, import_BookingContext.isBookingProduct)(item);
104
- }
105
- function hasPreparedBookingExtend(cacheItem) {
106
- var _a;
107
- if ((0, import_BookingContext.productNeedsResourceExtend)(cacheItem) && !(0, import_BookingContext.hasActualResourceSelection)(cacheItem)) {
108
- return false;
109
- }
110
- const ext = (cacheItem == null ? void 0 : cacheItem._extend) || {};
111
- const hasResourceState = Boolean(
112
- (0, import_BookingContext.hasActualResourceSelection)(cacheItem) && ext.capacity && (ext.endDate || ext.end_date)
113
- );
114
- const hasSessionState = Boolean(
115
- (0, import_BookingContext.isSessionProduct)(cacheItem) && ((_a = ext.other) == null ? void 0 : _a.session) && ext.start_time && (ext.end_time || ext.endDate)
116
- );
117
- const hasMultiDayState = Boolean(isNormalBookingProduct(cacheItem) === false && isMultiDayLike(cacheItem));
118
- const hasExplicitTimeState = Boolean(
119
- ext.duration && (ext.start_date || ext.startDate) && ext.start_time && (ext.end_date && ext.end_time || ext.endDate)
120
- );
121
- return hasResourceState || hasSessionState || hasMultiDayState || hasExplicitTimeState;
122
- }
123
- function formatBookingDateForUI(date) {
124
- if (date == null || date === "")
125
- return null;
126
- const parsed = (0, import_dayjs.default)(date);
127
- return parsed.isValid() ? parsed.format("YYYY-MM-DD") : null;
128
- }
129
- function withDerivedBookingCtx(ctx) {
130
- if (!ctx)
131
- return {};
132
- return {
133
- ...ctx,
134
- presetStartTime: ctx.presetStartTime ?? (0, import_BookingContext.derivePresetStartTimeFromDate)(ctx.date)
135
- };
136
- }
137
- function isMultiDayLike(cacheItem) {
138
- var _a;
139
- const ext = (cacheItem == null ? void 0 : cacheItem._extend) || {};
140
- return Boolean(
141
- ((_a = cacheItem == null ? void 0 : cacheItem.duration) == null ? void 0 : _a.type) === "days" && ext.duration && ext.start_date && ext.end_date
142
- );
143
- }
144
- function prepareBookingCacheItem(cacheItem, ctx) {
145
- if (isNormalBookingProduct(cacheItem) || hasPreparedBookingExtend(cacheItem)) {
146
- return cacheItem;
147
- }
148
- return (0, import_BookingContext.getProductExtend)({
149
- cacheItem,
150
- ctx: withDerivedBookingCtx(ctx),
151
- isDisabledTime: true
152
- });
153
- }
154
- function decideAutoClose(item, ctx) {
155
- const decision = decideAddProduct(item, ctx);
156
- if (decision.action === "add") {
157
- return { autoClose: true, cacheItem: decision.cacheItem };
158
- }
159
- if (decision.action === "requiresBookingEdit") {
160
- return { autoClose: false, cacheItem: decision.cacheItem };
161
- }
162
- return { autoClose: false };
163
- }
164
- function getIsEject(item, type = "select") {
165
- const isSession = (0, import_BookingContext.isSessionProduct)(item);
166
- const isSoldByWeight = Boolean(item == null ? void 0 : item.open_sold_weight);
167
- const need = type === "detail" || ((item == null ? void 0 : item.bundle_group_count) || 0) > 0 || ((item == null ? void 0 : item.option_group_count) || 0) > 0 || ((item == null ? void 0 : item.is_variant) || 0) > 0 || isSession || isSoldByWeight;
168
- return need ? 1 : 0;
169
- }
170
- function getIsOnlySession(item) {
171
- const isSession = (0, import_BookingContext.isSessionProduct)(item);
172
- return !(((item == null ? void 0 : item.bundle_group_count) || 0) > 0 || ((item == null ? void 0 : item.option_group_count) || 0) > 0 || ((item == null ? void 0 : item.is_variant) || 0) > 0) && isSession;
173
- }
174
- function buildRequiresDetailPayload(item, ctx) {
175
- const isOnlySession = getIsOnlySession(item);
176
- const isEject = getIsEject(item, (ctx == null ? void 0 : ctx.type) || "select");
177
- return {
178
- item,
179
- showConfig: {
180
- option: ((item == null ? void 0 : item.option_group_count) || 0) > 0,
181
- session: (0, import_BookingContext.isSessionProduct)(item),
182
- variant: ((item == null ? void 0 : item.is_variant) || 0) > 0,
183
- package: ((item == null ? void 0 : item.bundle_group_count) || 0) > 0,
184
- number: Boolean(item == null ? void 0 : item.open_sold_weight)
185
- },
186
- isOnlySession,
187
- isEject: isEject ? 1 : 0,
188
- customerId: ctx == null ? void 0 : ctx.customerId,
189
- date: formatBookingDateForUI(ctx == null ? void 0 : ctx.date),
190
- productData: item
191
- };
192
- }
193
- function buildCacheItemFromCartDetail(item, ctx) {
194
- var _a;
195
- const cartDetailValue = item.cartDetailValue || {};
196
- const other = JSON.parse(JSON.stringify(cartDetailValue || {}));
197
- other.session = cartDetailValue.session;
198
- const resolvedId = item.id ?? item.product_id;
199
- let extend = (0, import_BookingContext.applySessionTimesToExtend)(
200
- item,
201
- {
202
- start_date: (ctx == null ? void 0 : ctx.date) || void 0,
203
- /** 列表连点 / 防抖合并时以 ctx.quantity 为准,避免 cartDetailValue 默认 1 盖掉合并数量 */
204
- quantity: (ctx == null ? void 0 : ctx.quantity) ?? (cartDetailValue == null ? void 0 : cartDetailValue.quantity) ?? 1,
205
- product_name: item.title,
206
- other,
207
- isNormalProduct: !(0, import_BookingContext.isBookingProduct)(item),
208
- price: ((_a = item == null ? void 0 : item._extend) == null ? void 0 : _a.price) ?? (item == null ? void 0 : item.price)
209
- },
210
- { date: ctx == null ? void 0 : ctx.date }
211
- );
212
- return {
213
- ...item,
214
- id: resolvedId,
215
- product_id: resolvedId,
216
- _key: cartDetailValue.key,
217
- _extend: extend,
218
- new: 1
219
- };
220
- }
221
- function buildCacheItemFromDetail(item, detailResult, ctx) {
222
- var _a, _b, _c;
223
- const _currentItem = detailResult.detail || item;
224
- const _detail = _currentItem;
225
- const detailExtend = (_detail == null ? void 0 : _detail._extend) || {};
226
- const other = JSON.parse(JSON.stringify(detailResult.e || {}));
227
- other.session = (_a = detailResult.e) == null ? void 0 : _a.session;
228
- const resolvedId = _currentItem.id ?? _currentItem.product_id;
229
- const mergedItem = { ...item, ..._detail, extension_type: _detail.extension_type ?? item.extension_type };
230
- const runtimeExtend = (0, import_BookingContext.applySessionTimesToExtend)(
231
- mergedItem,
232
- {
233
- start_date: (ctx == null ? void 0 : ctx.date) || detailExtend.start_date || void 0,
234
- quantity: (ctx == null ? void 0 : ctx.quantity) ?? ((_b = detailResult.e) == null ? void 0 : _b.quantity) ?? detailExtend.quantity ?? 1,
235
- price: detailExtend.price ?? (_detail == null ? void 0 : _detail.price) ?? (item == null ? void 0 : item.price),
236
- product_name: _currentItem.title ?? detailExtend.product_name,
237
- other,
238
- isNormalProduct: !(0, import_BookingContext.isBookingProduct)(mergedItem)
239
- },
240
- { date: ctx == null ? void 0 : ctx.date }
241
- );
242
- const extend = {
243
- ...detailExtend,
244
- ...runtimeExtend,
245
- other
246
- };
247
- const note = detailExtend.note ?? (_detail == null ? void 0 : _detail.note);
248
- return {
249
- ..._detail,
250
- id: resolvedId,
251
- product_id: resolvedId,
252
- extension_type: mergedItem.extension_type,
253
- _key: (_c = detailResult.e) == null ? void 0 : _c.key,
254
- ...note != null && note !== "" ? { note: String(note) } : {},
255
- _extend: extend,
256
- new: 1
257
- };
258
- }
259
- function transformDetailToProductAndBooking(cacheItem, ctx) {
260
- const preparedCacheItem = prepareBookingCacheItem(cacheItem, withDerivedBookingCtx(ctx));
261
- const payload = buildBasePayloadFromCacheItem(preparedCacheItem, ctx);
262
- const productInput = (0, import_transformBaseProductToOrderProduct.transformBaseProductToOrderProduct)({
263
- payload,
264
- sourceProduct: preparedCacheItem
265
- });
266
- if (!productInput) {
267
- throw new Error(
268
- "[BookingTicket] transformDetailToProductAndBooking: product transform failed (missing numeric item.id / item.product_id)"
269
- );
270
- }
271
- const isNormalProduct = isNormalBookingProduct(preparedCacheItem);
272
- let booking;
273
- if (!isNormalProduct) {
274
- booking = (0, import_BookingContext.cacheItemToBookingInput)(preparedCacheItem, { bookingConfig: ctx == null ? void 0 : ctx.bookingConfig });
275
- }
276
- return { product: productInput, booking, cacheItem: preparedCacheItem };
277
- }
278
- function buildBasePayloadFromCacheItem(cacheItem, ctx) {
279
- var _a, _b, _c, _d;
280
- const other = ((_a = cacheItem == null ? void 0 : cacheItem._extend) == null ? void 0 : _a.other) || {};
281
- const quantity = (ctx == null ? void 0 : ctx.quantity) != null && ctx.quantity > 0 ? ctx.quantity : ((_b = cacheItem == null ? void 0 : cacheItem._extend) == null ? void 0 : _b.quantity) ?? 1;
282
- const resolvedPid = (cacheItem == null ? void 0 : cacheItem.product_id) ?? (cacheItem == null ? void 0 : cacheItem.id);
283
- const extend = (cacheItem == null ? void 0 : cacheItem._extend) || {};
284
- return {
285
- id: (cacheItem == null ? void 0 : cacheItem.id) ?? (cacheItem == null ? void 0 : cacheItem.product_id),
286
- product_id: resolvedPid,
287
- variant_id: (other == null ? void 0 : other.product_variant_id) ?? (other == null ? void 0 : other.variant_id) ?? 0,
288
- quantity,
289
- option: (other == null ? void 0 : other.option) || [],
290
- bundle: (other == null ? void 0 : other.bundle) || ((_c = extend == null ? void 0 : extend.skuValue) == null ? void 0 : _c.bundle) || ((_d = extend == null ? void 0 : extend._skuValue) == null ? void 0 : _d.bundle) || [],
291
- unique: other == null ? void 0 : other.unique,
292
- session: other == null ? void 0 : other.session,
293
- note: extend == null ? void 0 : extend.note,
294
- price: (extend == null ? void 0 : extend.price) ?? (cacheItem == null ? void 0 : cacheItem.price),
295
- selling_price: (extend == null ? void 0 : extend.price) ?? (cacheItem == null ? void 0 : cacheItem.price),
296
- line_total: extend == null ? void 0 : extend.total,
297
- total: extend == null ? void 0 : extend.total,
298
- origin_total: extend == null ? void 0 : extend.origin_total,
299
- price_override: extend == null ? void 0 : extend.priceOverride,
300
- bundle_edit: extend == null ? void 0 : extend.bundle_edit,
301
- discount_reason: extend == null ? void 0 : extend.discount_reason,
302
- discount_list: cacheItem == null ? void 0 : cacheItem.discount_list,
303
- _extend: extend
304
- };
305
- }
306
- // Annotate the CommonJS export names for ESM import in node:
307
- 0 && (module.exports = {
308
- buildCacheItemFromCartDetail,
309
- buildCacheItemFromDetail,
310
- buildRequiresDetailPayload,
311
- decideAddProduct,
312
- decideAfterDetail,
313
- decideAutoClose,
314
- getIsEject,
315
- getIsOnlySession,
316
- prepareBookingCacheItem,
317
- transformDetailToProductAndBooking
318
- });
@@ -1,35 +0,0 @@
1
- import type { BaseSalesOrderProduct } from '../../BaseSales';
2
- import type { ISalesBooking } from '../../BaseSales/utils/parseSalesResponse';
3
- export interface BuildAddTimeCurrentItemParams {
4
- booking: ISalesBooking;
5
- product: BaseSalesOrderProduct | null;
6
- productsByUid?: Record<string, {
7
- origin?: Record<string, any>;
8
- }>;
9
- }
10
- export interface ResolveBookingCanAddTimeParams extends BuildAddTimeCurrentItemParams {
11
- addTimeProducts?: any[];
12
- bookingConfig?: Record<string, any> | null;
13
- shopOpeningHours?: string;
14
- }
15
- /**
16
- * 从 booking 与其关联商品行构建旧 `isUsableProduct` 所需的当前商品快照。
17
- *
18
- * @example
19
- * const currentItem = buildAddTimeCurrentItem({ booking, product, productsByUid });
20
- */
21
- export declare function buildAddTimeCurrentItem({ booking, product, productsByUid, }: BuildAddTimeCurrentItemParams): Record<string, any> | null;
22
- /**
23
- * 判断当前 booking 是否允许打开加时入口,保持与旧 ticketBooking 的商品适用规则一致。
24
- *
25
- * @example
26
- * const canAddTime = resolveBookingCanAddTime({ booking, product, addTimeProducts, bookingConfig });
27
- */
28
- export declare function resolveBookingCanAddTime(params: ResolveBookingCanAddTimeParams): boolean;
29
- /**
30
- * 判断一个加时商品是否适用于当前预约商品。
31
- *
32
- * @example
33
- * const usable = isUsableAddTimeProduct(addTime.add_time, currentItem, '23:59');
34
- */
35
- export declare function isUsableAddTimeProduct(addTime: any, currentItem: Record<string, any> | null | undefined, shopOpeningHours?: string): boolean;
@@ -1,125 +0,0 @@
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);
28
-
29
- // src/solution/BookingTicket/utils/addTimeAvailability.ts
30
- var addTimeAvailability_exports = {};
31
- __export(addTimeAvailability_exports, {
32
- buildAddTimeCurrentItem: () => buildAddTimeCurrentItem,
33
- isUsableAddTimeProduct: () => isUsableAddTimeProduct,
34
- resolveBookingCanAddTime: () => resolveBookingCanAddTime
35
- });
36
- module.exports = __toCommonJS(addTimeAvailability_exports);
37
- var import_dayjs = __toESM(require("dayjs"));
38
- var import_lodash_es = require("lodash-es");
39
- var import_serviceTimes = require("../../../modules/BookingContext/utils/serviceTimes");
40
- var import_timeSlices = require("../../../modules/BookingContext/utils/timeSlices");
41
- function buildAddTimeCurrentItem({
42
- booking,
43
- product,
44
- productsByUid
45
- }) {
46
- var _a, _b, _c;
47
- if (!booking || !product)
48
- return null;
49
- const uid = (_a = product.metadata) == null ? void 0 : _a.unique_identification_number;
50
- const origin = uid ? (_b = productsByUid == null ? void 0 : productsByUid[String(uid)]) == null ? void 0 : _b.origin : void 0;
51
- const sourceProduct = origin || booking.product || {};
52
- const startAt = booking.start_date && booking.start_time ? `${booking.start_date} ${booking.start_time}` : booking.start_date;
53
- const endAt = booking.end_date && booking.end_time ? `${booking.end_date} ${booking.end_time}` : booking.end_date;
54
- return {
55
- ...sourceProduct,
56
- ...booking.product,
57
- product_id: product.product_id ?? sourceProduct.product_id ?? sourceProduct.id,
58
- id: sourceProduct.id ?? product.product_id,
59
- collection: sourceProduct.collection || ((_c = booking.product) == null ? void 0 : _c.collection) || [],
60
- duration: sourceProduct.duration || booking.duration,
61
- _extend: {
62
- ...sourceProduct._extend || {},
63
- startDate: startAt ? (0, import_dayjs.default)(startAt) : void 0,
64
- endDate: endAt ? (0, import_dayjs.default)(endAt) : void 0,
65
- start_date: booking.start_date,
66
- end_date: booking.end_date,
67
- start_time: booking.start_time,
68
- end_time: booking.end_time,
69
- sub_type: booking.sub_type
70
- }
71
- };
72
- }
73
- function resolveBookingCanAddTime(params) {
74
- var _a, _b, _c, _d;
75
- const quickTime = (_d = (_c = (_b = (_a = params.bookingConfig) == null ? void 0 : _a.config) == null ? void 0 : _b.information_tab) == null ? void 0 : _c.appointment_card) == null ? void 0 : _d.quick_time;
76
- if (quickTime !== void 0 && quickTime !== 1)
77
- return false;
78
- const currentItem = buildAddTimeCurrentItem(params);
79
- if (!currentItem || (0, import_serviceTimes.isMultiDayProduct)(currentItem))
80
- return false;
81
- return (params.addTimeProducts || []).some(
82
- (item) => isUsableAddTimeProduct(item == null ? void 0 : item.add_time, currentItem, params.shopOpeningHours)
83
- );
84
- }
85
- function isUsableAddTimeProduct(addTime, currentItem, shopOpeningHours) {
86
- var _a, _b;
87
- if (!addTime || !currentItem)
88
- return false;
89
- if (addTime.additional_time_options === "unlimited") {
90
- const startDate = (0, import_dayjs.default)((_a = currentItem._extend) == null ? void 0 : _a.startDate);
91
- const endDate = (0, import_dayjs.default)((_b = currentItem._extend) == null ? void 0 : _b.endDate);
92
- if (!startDate.isValid() || !endDate.isValid())
93
- return false;
94
- const maxEndDate = (0, import_timeSlices.getEndDate)(startDate, "flexible", "", shopOpeningHours);
95
- if (endDate.isAfter(maxEndDate))
96
- return false;
97
- }
98
- const relationProduct = addTime.relation_product || {};
99
- const type = relationProduct.type;
100
- const products = Array.isArray(relationProduct.products) ? relationProduct.products : [];
101
- if (type === "product_all")
102
- return true;
103
- if (type === "product_collection") {
104
- return Boolean(
105
- (0, import_lodash_es.intersectionBy)(
106
- products.map((item) => ({
107
- ...item,
108
- id: item.product_collection_id
109
- })),
110
- currentItem.collection || [],
111
- "id"
112
- ).length
113
- );
114
- }
115
- if (type === "products") {
116
- return products.some((item) => item.product_id == currentItem.product_id);
117
- }
118
- return false;
119
- }
120
- // Annotate the CommonJS export names for ESM import in node:
121
- 0 && (module.exports = {
122
- buildAddTimeCurrentItem,
123
- isUsableAddTimeProduct,
124
- resolveBookingCanAddTime
125
- });
@@ -1,123 +0,0 @@
1
- declare let data: ({
2
- id: number;
3
- title: string;
4
- price: number;
5
- minMinutes: number;
6
- maxMinutes: number;
7
- unitMinutes: number;
8
- unlimited: boolean;
9
- _originalProduct: {
10
- id: number;
11
- extension_id: number;
12
- extension_type: string;
13
- shop_id: number;
14
- title: string;
15
- slug: string;
16
- status: string;
17
- stock_quantity: number;
18
- sales_quantity: number;
19
- sum_stock: number;
20
- price: string;
21
- original_price: string;
22
- cost_price: string;
23
- cover: string;
24
- channel_application: string[];
25
- is_track: number;
26
- over_sold: number;
27
- is_gst: number;
28
- code: string;
29
- barcode: string;
30
- is_delivery: number;
31
- weight_unit: string;
32
- weight_value: string;
33
- type: string;
34
- unit: string;
35
- sort: number;
36
- subtitle: string;
37
- minimum_markup_price: string;
38
- is_bundle: number;
39
- description: string;
40
- open_sold_weight: number;
41
- unit_value: number;
42
- is_variant: number;
43
- variant_count: number;
44
- add_time: {
45
- unit_duration: number;
46
- min_add_time: number;
47
- max_add_time: number;
48
- calculate_type: string;
49
- relation_product: {
50
- type: string;
51
- products: never[];
52
- };
53
- additional_time_options?: undefined;
54
- };
55
- shelf_product_datas: never[];
56
- step_value: number;
57
- min_num_unit: number;
58
- is_charge_tax: number;
59
- base_price: string;
60
- variant: never[];
61
- };
62
- } | {
63
- id: number;
64
- title: string;
65
- price: number;
66
- minMinutes: number;
67
- maxMinutes: number;
68
- unitMinutes: number;
69
- unlimited: boolean;
70
- _originalProduct: {
71
- id: number;
72
- extension_id: number;
73
- extension_type: string;
74
- shop_id: number;
75
- title: string;
76
- slug: string;
77
- status: string;
78
- stock_quantity: number;
79
- sales_quantity: number;
80
- sum_stock: number;
81
- price: string;
82
- original_price: string;
83
- cost_price: string;
84
- cover: string;
85
- channel_application: string[];
86
- is_track: number;
87
- over_sold: number;
88
- is_gst: number;
89
- code: string;
90
- barcode: string;
91
- is_delivery: number;
92
- weight_unit: string;
93
- weight_value: string;
94
- type: string;
95
- unit: string;
96
- sort: number;
97
- subtitle: string;
98
- minimum_markup_price: string;
99
- is_bundle: number;
100
- description: string;
101
- open_sold_weight: number;
102
- unit_value: number;
103
- is_variant: number;
104
- variant_count: number;
105
- add_time: {
106
- additional_time_options: string;
107
- unit_duration: number;
108
- min_add_time: number;
109
- max_add_time: number;
110
- calculate_type: string;
111
- relation_product: {
112
- type: string;
113
- products: never[];
114
- };
115
- };
116
- shelf_product_datas: never[];
117
- step_value: number;
118
- min_num_unit: number;
119
- is_charge_tax: number;
120
- base_price: string;
121
- variant: never[];
122
- };
123
- })[];
File without changes