@pisell/pisellos 2.3.74 → 2.3.76

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/promotion/index.js +9 -0
  3. package/dist/model/strategy/adapter/walletPass/example.js +3 -26
  4. package/dist/model/strategy/strategy-example.js +5 -19
  5. package/dist/modules/Cart/index.js +0 -3
  6. package/dist/modules/Cart/utils/cartProduct.js +0 -1
  7. package/dist/modules/Date/index.js +1 -5
  8. package/dist/modules/Discount/index.js +2 -4
  9. package/dist/modules/OpenData/index.js +0 -2
  10. package/dist/modules/Order/index.d.ts +1 -1
  11. package/dist/modules/Order/index.js +75 -91
  12. package/dist/modules/Order/types.d.ts +3 -1
  13. package/dist/modules/Payment/index.js +97 -162
  14. package/dist/modules/Rules/index.js +1 -4
  15. package/dist/modules/Schedule/index.js +0 -1
  16. package/dist/modules/Schedule/utils.js +0 -1
  17. package/dist/modules/Step/index.js +0 -1
  18. package/dist/plugins/request.js +1 -4
  19. package/dist/plugins/window.js +2 -6
  20. package/dist/server/index.js +97 -129
  21. package/dist/server/modules/menu/index.js +32 -41
  22. package/dist/server/modules/order/index.js +2 -4
  23. package/dist/server/modules/products/index.js +24 -42
  24. package/dist/server/modules/quotation/index.js +29 -38
  25. package/dist/server/modules/resource/index.js +3 -4
  26. package/dist/server/modules/schedule/index.js +27 -35
  27. package/dist/server/utils/product.js +0 -1
  28. package/dist/solution/BaseSales/index.js +100 -72
  29. package/dist/solution/BaseSales/utils/cartPromotion.d.ts +5 -0
  30. package/dist/solution/BaseSales/utils/cartPromotion.js +15 -6
  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.js +0 -2
  36. package/dist/solution/BookingTicket/utils/scan/cloudSearch.js +6 -7
  37. package/dist/solution/BookingTicket/utils/scan/handleScan.js +25 -31
  38. package/dist/solution/BookingTicket/utils/scan/index.js +6 -10
  39. package/dist/solution/BuyTickets/index.js +9 -12
  40. package/dist/solution/Checkout/index.js +177 -252
  41. package/dist/solution/Checkout/utils/index.js +4 -16
  42. package/dist/solution/RegisterAndLogin/index.js +30 -76
  43. package/dist/solution/ScanOrder/index.js +50 -60
  44. package/dist/solution/ShopDiscount/index.js +2 -7
  45. package/dist/solution/VenueBooking/index.js +45 -55
  46. package/dist/utils/task.js +15 -18
  47. package/dist/utils/watch.js +0 -1
  48. package/lib/apis/picoding.js +2 -0
  49. package/lib/core/index.js +134 -134
  50. package/lib/effects/index.js +46 -57
  51. package/lib/index.js +82 -49
  52. package/lib/model/index.js +14 -21
  53. package/lib/model/strategy/adapter/dataVariant/adapter.js +38 -50
  54. package/lib/model/strategy/adapter/dataVariant/evaluator.js +162 -236
  55. package/lib/model/strategy/adapter/dataVariant/examples.js +229 -237
  56. package/lib/model/strategy/adapter/dataVariant/index.js +39 -34
  57. package/lib/model/strategy/adapter/dataVariant/type.js +57 -28
  58. package/lib/model/strategy/adapter/index.js +100 -64
  59. package/lib/model/strategy/adapter/itemRule/adapter.js +156 -144
  60. package/lib/model/strategy/adapter/itemRule/evaluator.js +36 -48
  61. package/lib/model/strategy/adapter/itemRule/examples.js +295 -225
  62. package/lib/model/strategy/adapter/itemRule/index.js +83 -57
  63. package/lib/model/strategy/adapter/itemRule/type.js +97 -36
  64. package/lib/model/strategy/adapter/promotion/adapter.js +91 -69
  65. package/lib/model/strategy/adapter/promotion/evaluator.js +444 -310
  66. package/lib/model/strategy/adapter/promotion/examples.js +222 -234
  67. package/lib/model/strategy/adapter/promotion/index.js +1 -0
  68. package/lib/model/strategy/adapter/promotion/type.js +243 -36
  69. package/lib/model/strategy/adapter/type.js +4 -16
  70. package/lib/model/strategy/adapter/walletPass/evaluator.js +180 -150
  71. package/lib/model/strategy/adapter/walletPass/example.js +217 -190
  72. package/lib/model/strategy/adapter/walletPass/index.js +75 -51
  73. package/lib/model/strategy/adapter/walletPass/locales.js +36 -58
  74. package/lib/model/strategy/adapter/walletPass/type.js +4 -16
  75. package/lib/model/strategy/adapter/walletPass/utils.js +588 -378
  76. package/lib/model/strategy/engine.js +270 -168
  77. package/lib/model/strategy/index.js +49 -34
  78. package/lib/model/strategy/strategy-example.js +243 -239
  79. package/lib/model/strategy/type.js +100 -40
  80. package/lib/modules/Account/index.js +39 -53
  81. package/lib/modules/Account/types.js +20 -33
  82. package/lib/modules/AccountList/index.js +116 -154
  83. package/lib/modules/AccountList/types.js +30 -31
  84. package/lib/modules/AccountList/utils.js +18 -30
  85. package/lib/modules/BaseModule.js +23 -42
  86. package/lib/modules/BookingContext/index.js +158 -136
  87. package/lib/modules/BookingContext/types.js +46 -32
  88. package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +138 -146
  89. package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +78 -83
  90. package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +170 -150
  91. package/lib/modules/BookingContext/utils/flexible.js +38 -55
  92. package/lib/modules/BookingContext/utils/formatResourceList.js +19 -34
  93. package/lib/modules/BookingContext/utils/index.js +124 -41
  94. package/lib/modules/BookingContext/utils/noResource.js +58 -70
  95. package/lib/modules/BookingContext/utils/orderLineDisplay.js +14 -41
  96. package/lib/modules/BookingContext/utils/productExtend.js +202 -155
  97. package/lib/modules/BookingContext/utils/resourceErrors.js +53 -53
  98. package/lib/modules/BookingContext/utils/resourceSelection.js +19 -41
  99. package/lib/modules/BookingContext/utils/resources.js +209 -167
  100. package/lib/modules/BookingContext/utils/serviceTimes.js +115 -116
  101. package/lib/modules/BookingContext/utils/timeSlices.js +76 -86
  102. package/lib/modules/Cart/index.js +170 -124
  103. package/lib/modules/Cart/types.js +46 -51
  104. package/lib/modules/Cart/utils/cartAccount.js +40 -39
  105. package/lib/modules/Cart/utils/cartDate.js +56 -61
  106. package/lib/modules/Cart/utils/cartDiscount.js +28 -33
  107. package/lib/modules/Cart/utils/cartNote.js +27 -32
  108. package/lib/modules/Cart/utils/cartProduct.js +321 -251
  109. package/lib/modules/Cart/utils/cartRelationForms.js +29 -35
  110. package/lib/modules/Cart/utils/cartResource.js +70 -78
  111. package/lib/modules/Cart/utils/changePrice.js +22 -50
  112. package/lib/modules/Cart/utils/index.js +106 -48
  113. package/lib/modules/Customer/constants.js +13 -34
  114. package/lib/modules/Customer/index.js +235 -172
  115. package/lib/modules/Customer/types.js +38 -35
  116. package/lib/modules/Date/index.js +116 -115
  117. package/lib/modules/Date/types.js +16 -28
  118. package/lib/modules/Date/utils.js +174 -123
  119. package/lib/modules/Discount/index.js +122 -127
  120. package/lib/modules/Discount/types.js +9 -31
  121. package/lib/modules/Guests/index.js +30 -56
  122. package/lib/modules/Guests/types.js +23 -33
  123. package/lib/modules/Holder/index.js +209 -189
  124. package/lib/modules/Holder/types.js +4 -16
  125. package/lib/modules/Holder/utils.js +20 -49
  126. package/lib/modules/OpenData/index.js +70 -76
  127. package/lib/modules/OpenData/types.js +4 -16
  128. package/lib/modules/OpenData/utils.js +44 -78
  129. package/lib/modules/Order/index.d.ts +1 -1
  130. package/lib/modules/Order/index.js +1733 -2121
  131. package/lib/modules/Order/payment-utils.js +77 -120
  132. package/lib/modules/Order/types.d.ts +3 -1
  133. package/lib/modules/Order/types.js +88 -35
  134. package/lib/modules/Order/utils/bundleDiscountHydration.js +41 -74
  135. package/lib/modules/Order/utils/discountProductLineIdentity.js +142 -100
  136. package/lib/modules/Order/utils/manualProductDiscount.js +124 -123
  137. package/lib/modules/Order/utils/orderCollectionIdentity.js +184 -244
  138. package/lib/modules/Order/utils.js +814 -647
  139. package/lib/modules/Payment/cash.js +20 -33
  140. package/lib/modules/Payment/cashRecommendationAlgorithm.js +145 -76
  141. package/lib/modules/Payment/eftpos.js +16 -30
  142. package/lib/modules/Payment/index.js +532 -399
  143. package/lib/modules/Payment/mx51.js +1 -0
  144. package/lib/modules/Payment/types.js +230 -108
  145. package/lib/modules/Payment/utils.js +52 -51
  146. package/lib/modules/Payment/walletpass.js +485 -660
  147. package/lib/modules/Product/index.js +51 -46
  148. package/lib/modules/Product/types.js +4 -16
  149. package/lib/modules/Product/utils.js +32 -33
  150. package/lib/modules/ProductList/index.js +113 -123
  151. package/lib/modules/ProductList/types.js +9 -31
  152. package/lib/modules/Quotation/index.js +81 -118
  153. package/lib/modules/Quotation/types.js +4 -16
  154. package/lib/modules/Resource/index.js +27 -59
  155. package/lib/modules/Resource/types.js +22 -32
  156. package/lib/modules/Resource/utils.js +30 -38
  157. package/lib/modules/ResourcePlanner/index.js +25 -23
  158. package/lib/modules/ResourcePlanner/localClock.js +54 -119
  159. package/lib/modules/ResourcePlanner/planner.js +589 -770
  160. package/lib/modules/ResourcePlanner/types.js +10 -29
  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 +3050 -2665
  190. package/lib/server/modules/floor-plan/index.js +118 -134
  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 +142 -122
  194. package/lib/server/modules/menu/types.js +18 -31
  195. package/lib/server/modules/order/index.js +784 -1002
  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 +583 -471
  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 +220 -186
  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.d.ts +5 -0
  219. package/lib/solution/BaseSales/utils/cartPromotion.js +652 -498
  220. package/lib/solution/BaseSales/utils/parseSalesResponse.js +85 -105
  221. package/lib/solution/BaseSales/utils/quotationPrice.js +56 -114
  222. package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +108 -145
  223. package/lib/solution/BaseSales/utils.js +158 -143
  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.js +607 -522
  232. package/lib/solution/BookingTicket/types.js +99 -77
  233. package/lib/solution/BookingTicket/utils/addProductDecision.js +226 -189
  234. package/lib/solution/BookingTicket/utils/addTimeAvailability.js +58 -89
  235. package/lib/solution/BookingTicket/utils/bookingStatus.js +107 -78
  236. package/lib/solution/BookingTicket/utils/cartView.js +114 -99
  237. package/lib/solution/BookingTicket/utils/exampleData.js +185 -0
  238. package/lib/solution/BookingTicket/utils/orderCustomer.js +18 -41
  239. package/lib/solution/BookingTicket/utils/resolveBestAddTimePlan.js +219 -86
  240. package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.js +168 -116
  241. package/lib/solution/BookingTicket/utils/scan/cloudSearch.js +79 -91
  242. package/lib/solution/BookingTicket/utils/scan/formatGlobalScan.js +54 -41
  243. package/lib/solution/BookingTicket/utils/scan/handleScan.js +84 -81
  244. package/lib/solution/BookingTicket/utils/scan/index.js +98 -104
  245. package/lib/solution/BookingTicket/utils/scan/scanCache.js +90 -43
  246. package/lib/solution/BookingTicket/utils/scan/scanProductValues.js +52 -64
  247. package/lib/solution/BookingTicket/utils/sessionCatalogStale.js +56 -58
  248. package/lib/solution/BookingTicket/utils/weighingProductSku.js +34 -48
  249. package/lib/solution/BuyTickets/index.js +67 -70
  250. package/lib/solution/BuyTickets/types.js +22 -38
  251. package/lib/solution/Checkout/index.js +1451 -1158
  252. package/lib/solution/Checkout/types.js +91 -61
  253. package/lib/solution/Checkout/utils/index.js +228 -156
  254. package/lib/solution/PlaceOrder/index.js +55 -0
  255. package/lib/solution/RegisterAndLogin/config.js +493 -460
  256. package/lib/solution/RegisterAndLogin/index.js +633 -630
  257. package/lib/solution/RegisterAndLogin/types.js +189 -76
  258. package/lib/solution/RegisterAndLogin/utils.js +183 -125
  259. package/lib/solution/Sales/index.js +328 -324
  260. package/lib/solution/Sales/types.js +27 -33
  261. package/lib/solution/ScanOrder/index.js +832 -864
  262. package/lib/solution/ScanOrder/types.js +33 -34
  263. package/lib/solution/ScanOrder/utils.js +409 -374
  264. package/lib/solution/ShopDiscount/index.js +226 -232
  265. package/lib/solution/ShopDiscount/types.js +15 -37
  266. package/lib/solution/ShopDiscount/utils.js +300 -172
  267. package/lib/solution/UnifiedBookingSales/index.js +1035 -1201
  268. package/lib/solution/UnifiedBookingSales/remoteOccupancyCache.js +99 -159
  269. package/lib/solution/UnifiedBookingSales/types.js +10 -32
  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,48 +1,42 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ "use strict";
18
2
 
19
- // src/modules/Cart/utils/cartRelationForms.ts
20
- var cartRelationForms_exports = {};
21
- __export(cartRelationForms_exports, {
22
- deleteRelationFormsFromCartItem: () => deleteRelationFormsFromCartItem,
23
- formatRelationFormsToCartItem: () => formatRelationFormsToCartItem,
24
- formatRelationFormsToCartItemOrigin: () => formatRelationFormsToCartItemOrigin
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
25
5
  });
26
- module.exports = __toCommonJS(cartRelationForms_exports);
27
- var formatRelationFormsToCartItem = (params) => {
28
- const { cartItem } = params;
6
+ exports.formatRelationFormsToCartItemOrigin = exports.formatRelationFormsToCartItem = exports.deleteRelationFormsFromCartItem = void 0;
7
+ /**
8
+ * 格式化关联表单到购物车
9
+ * @param params 参数
10
+ * @returns 格式化后的购物车
11
+ */
12
+ const formatRelationFormsToCartItem = params => {
13
+ const {
14
+ cartItem
15
+ } = params;
29
16
  const oringin = formatRelationFormsToCartItemOrigin(params);
30
17
  cartItem._origin = oringin;
31
18
  return cartItem;
32
19
  };
33
- var formatRelationFormsToCartItemOrigin = (params) => {
34
- const { cartItem, relationForms } = params;
20
+ exports.formatRelationFormsToCartItem = formatRelationFormsToCartItem;
21
+ const formatRelationFormsToCartItemOrigin = params => {
22
+ const {
23
+ cartItem,
24
+ relationForms
25
+ } = params;
35
26
  const origin = cartItem._origin;
36
27
  origin.relation_forms = relationForms;
37
28
  return origin;
38
29
  };
39
- var deleteRelationFormsFromCartItem = (cartItem) => {
30
+
31
+ /**
32
+ * 从购物车中删除关联表单信息
33
+ * @param cartItem 购物车
34
+ * @returns 删除后的购物车
35
+ */
36
+ exports.formatRelationFormsToCartItemOrigin = formatRelationFormsToCartItemOrigin;
37
+ const deleteRelationFormsFromCartItem = cartItem => {
38
+ // 删除原始数据
40
39
  cartItem._origin.relation_forms = null;
41
40
  return cartItem;
42
41
  };
43
- // Annotate the CommonJS export names for ESM import in node:
44
- 0 && (module.exports = {
45
- deleteRelationFormsFromCartItem,
46
- formatRelationFormsToCartItem,
47
- formatRelationFormsToCartItemOrigin
48
- });
42
+ exports.deleteRelationFormsFromCartItem = deleteRelationFormsFromCartItem;
@@ -1,88 +1,70 @@
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/Cart/utils/cartResource.ts
30
- var cartResource_exports = {};
31
- __export(cartResource_exports, {
32
- deleteResourceFromCartItem: () => deleteResourceFromCartItem,
33
- formatResourceToCartItem: () => formatResourceToCartItem,
34
- formatResourceToCartItemOrigin: () => formatResourceToCartItemOrigin
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
35
5
  });
36
- module.exports = __toCommonJS(cartResource_exports);
37
- var import_dayjs = __toESM(require("dayjs"));
38
- var formatResourceToCartItem = (params) => {
39
- const { cartItem, resources } = params;
40
- if (resources && (resources == null ? void 0 : resources.length)) {
6
+ exports.formatResourceToCartItemOrigin = exports.formatResourceToCartItem = exports.deleteResourceFromCartItem = void 0;
7
+ var _dayjs = _interopRequireDefault(require("dayjs"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
+ /**
10
+ * 格式化资源到购物车
11
+ * @param resource 资源
12
+ * @returns 格式化后的资源
13
+ */
14
+ const formatResourceToCartItem = params => {
15
+ const {
16
+ cartItem,
17
+ resources
18
+ } = params;
19
+ if (resources && resources?.length) {
41
20
  const firstResource = resources[0];
42
- cartItem.resource_id = firstResource == null ? void 0 : firstResource.id;
43
- cartItem.relation_form_name = firstResource == null ? void 0 : firstResource.main_field;
21
+ cartItem.resource_id = firstResource?.id;
22
+ cartItem.relation_form_name = firstResource?.main_field;
44
23
  if (firstResource.startTime && firstResource.endTime) {
45
- cartItem.start_date = (0, import_dayjs.default)(firstResource.startTime).format("YYYY-MM-DD");
46
- cartItem.start_time = (0, import_dayjs.default)(firstResource.startTime).format("HH:mm");
47
- cartItem.end_date = (0, import_dayjs.default)(firstResource.endTime).format("YYYY-MM-DD");
48
- cartItem.end_time = (0, import_dayjs.default)(firstResource.endTime).format("HH:mm");
24
+ cartItem.start_date = (0, _dayjs.default)(firstResource.startTime).format('YYYY-MM-DD');
25
+ cartItem.start_time = (0, _dayjs.default)(firstResource.startTime).format('HH:mm');
26
+ cartItem.end_date = (0, _dayjs.default)(firstResource.endTime).format('YYYY-MM-DD');
27
+ cartItem.end_time = (0, _dayjs.default)(firstResource.endTime).format('HH:mm');
49
28
  }
50
29
  } else {
51
- cartItem.resource_id = void 0;
52
- cartItem.relation_form_name = void 0;
53
- cartItem.start_date = void 0;
54
- cartItem.start_time = void 0;
55
- cartItem.end_date = void 0;
56
- cartItem.end_time = void 0;
30
+ cartItem.resource_id = undefined;
31
+ cartItem.relation_form_name = undefined;
32
+ cartItem.start_date = undefined;
33
+ cartItem.start_time = undefined;
34
+ cartItem.end_date = undefined;
35
+ cartItem.end_time = undefined;
57
36
  }
58
37
  const oringin = formatResourceToCartItemOrigin(params);
59
38
  cartItem._origin = oringin;
60
39
  cartItem._resourceOrigin = resources;
61
40
  return cartItem;
62
41
  };
63
- var formatResourceToCartItemOrigin = (params) => {
64
- const { cartItem, resources } = params;
42
+ exports.formatResourceToCartItem = formatResourceToCartItem;
43
+ const formatResourceToCartItemOrigin = params => {
44
+ const {
45
+ cartItem,
46
+ resources
47
+ } = params;
65
48
  let origin = cartItem._origin;
66
- if (resources && (resources == null ? void 0 : resources.length)) {
49
+ if (resources && resources?.length) {
67
50
  origin.resources = [];
68
- const checkResourcesFormat = (resources2, arr) => {
69
- resources2.forEach((resource) => {
70
- var _a;
51
+ // 接口只需要部分字段,需要处理
52
+ const checkResourcesFormat = (resources, arr) => {
53
+ resources.forEach(resource => {
71
54
  const childArr = [];
72
- if ((_a = resource == null ? void 0 : resource.children) == null ? void 0 : _a.length) {
55
+ if (resource?.children?.length) {
73
56
  checkResourcesFormat(resource.children, childArr);
74
57
  }
75
58
  const obj = {
76
- relation_type: "form",
77
- like_status: resource.like_status || "common",
59
+ relation_type: 'form',
60
+ like_status: resource.like_status || 'common',
78
61
  id: resource.id,
79
62
  main_field: resource.main_field,
80
63
  resourceType: resource.resourceType,
81
64
  form_id: resource.form_id,
82
65
  relation_id: resource.id,
83
- capacity: (resource == null ? void 0 : resource.capacity) || 0,
84
- metadata: (resource == null ? void 0 : resource.metadata) || {}
85
- // 后端可以在这里挂一个前端用于计算的数据
66
+ capacity: resource?.capacity || 0,
67
+ metadata: resource?.metadata || {} // 后端可以在这里挂一个前端用于计算的数据
86
68
  };
87
69
  if (childArr.length) {
88
70
  obj.children = childArr;
@@ -91,15 +73,18 @@ var formatResourceToCartItemOrigin = (params) => {
91
73
  });
92
74
  };
93
75
  checkResourcesFormat(resources, origin.resources);
94
- const { startTime, endTime } = resources[0];
76
+ const {
77
+ startTime,
78
+ endTime
79
+ } = resources[0];
95
80
  if (startTime && endTime) {
96
- origin.select_date = (0, import_dayjs.default)(startTime).format("YYYY-MM-DD");
97
- origin.start_date = (0, import_dayjs.default)(startTime).format("YYYY-MM-DD");
98
- origin.start_time = (0, import_dayjs.default)(startTime).format("HH:mm");
99
- origin.end_date = (0, import_dayjs.default)(endTime).format("YYYY-MM-DD");
100
- origin.end_time = (0, import_dayjs.default)(endTime).format("HH:mm");
81
+ origin.select_date = (0, _dayjs.default)(startTime).format('YYYY-MM-DD');
82
+ origin.start_date = (0, _dayjs.default)(startTime).format('YYYY-MM-DD');
83
+ origin.start_time = (0, _dayjs.default)(startTime).format('HH:mm');
84
+ origin.end_date = (0, _dayjs.default)(endTime).format('YYYY-MM-DD');
85
+ origin.end_time = (0, _dayjs.default)(endTime).format('HH:mm');
101
86
  }
102
- } else if ((resources == null ? void 0 : resources.length) === 0) {
87
+ } else if (resources?.length === 0) {
103
88
  origin.resources = [];
104
89
  origin.select_date = null;
105
90
  origin.start_date = null;
@@ -109,16 +94,23 @@ var formatResourceToCartItemOrigin = (params) => {
109
94
  }
110
95
  return origin;
111
96
  };
112
- var deleteResourceFromCartItem = (cartItem) => {
113
- cartItem.resource_id = void 0;
114
- cartItem.relation_form_name = void 0;
97
+
98
+ /**
99
+ * 从购物车中删除资源相关信息
100
+ * @param cartItem 购物车
101
+ * @returns 删除后的购物车
102
+ */
103
+ exports.formatResourceToCartItemOrigin = formatResourceToCartItemOrigin;
104
+ const deleteResourceFromCartItem = cartItem => {
105
+ // 删除UI层的数据
106
+ cartItem.resource_id = undefined;
107
+ cartItem.relation_form_name = undefined;
108
+
109
+ // 删除资源原始数据
115
110
  delete cartItem._resourceOrigin;
111
+
112
+ // 删除原始数据
116
113
  cartItem._origin.resources = null;
117
114
  return cartItem;
118
115
  };
119
- // Annotate the CommonJS export names for ESM import in node:
120
- 0 && (module.exports = {
121
- deleteResourceFromCartItem,
122
- formatResourceToCartItem,
123
- formatResourceToCartItemOrigin
124
- });
116
+ exports.deleteResourceFromCartItem = deleteResourceFromCartItem;
@@ -1,52 +1,27 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ "use strict";
18
2
 
19
- // src/modules/Cart/utils/changePrice.ts
20
- var changePrice_exports = {};
21
- __export(changePrice_exports, {
22
- updateAllCartItemPrice: () => updateAllCartItemPrice
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
23
5
  });
24
- module.exports = __toCommonJS(changePrice_exports);
25
- var import_utils = require("../../Order/utils");
6
+ exports.updateAllCartItemPrice = updateAllCartItemPrice;
7
+ var _utils = require("../../Order/utils");
26
8
  async function updateAllCartItemPrice(cartItems, priceData, getProduct, updateCart, updateItemInitInfo) {
27
- var _a, _b;
28
9
  for (const item of cartItems) {
29
- const targetProduct = priceData.find((n) => n.id === item.id);
30
- const cartProduct = await getProduct(
31
- item.id
32
- );
10
+ const targetProduct = priceData.find(n => n.id === item.id);
11
+ const cartProduct = await getProduct(item.id);
33
12
  let productInfo = cartProduct;
34
13
  if (!productInfo) {
35
14
  productInfo = item._productOrigin;
36
15
  }
37
16
  let bundle = item._bundleOrigin;
38
- productInfo.price = targetProduct == null ? void 0 : targetProduct.price;
39
- productInfo.base_price = targetProduct == null ? void 0 : targetProduct.base_price;
40
- productInfo.product_variant_id = (_a = item._productOrigin) == null ? void 0 : _a.product_variant_id;
41
- bundle = bundle == null ? void 0 : bundle.map((n) => {
42
- var _a2;
43
- const targetBundle = (_a2 = targetProduct == null ? void 0 : targetProduct.bundle_group) == null ? void 0 : _a2.find(
44
- (m) => m.id === n.group_id
45
- );
17
+ productInfo.price = targetProduct?.price;
18
+ productInfo.base_price = targetProduct?.base_price;
19
+ productInfo.product_variant_id = item._productOrigin?.product_variant_id;
20
+ bundle = bundle?.map(n => {
21
+ // 更新 bundle 的价格
22
+ const targetBundle = targetProduct?.bundle_group?.find(m => m.id === n.group_id);
46
23
  if (targetBundle) {
47
- const targetBundleItem = targetBundle.bundle_item.find(
48
- (m) => m.id === n.id
49
- );
24
+ const targetBundleItem = targetBundle.bundle_item.find(m => m.id === n.id);
50
25
  if (targetBundleItem) {
51
26
  const normalizedBundle = {
52
27
  ...n,
@@ -55,11 +30,11 @@ async function updateAllCartItemPrice(cartItems, priceData, getProduct, updateCa
55
30
  price_type: targetBundleItem.price_type,
56
31
  price_type_ext: targetBundleItem.price_type_ext
57
32
  };
58
- const bundleSellingPrice = (0, import_utils.getBundleSellingMagnitude)(normalizedBundle).toFixed(2);
33
+ const bundleSellingPrice = (0, _utils.getBundleSellingMagnitude)(normalizedBundle).toFixed(2);
59
34
  return {
60
35
  ...n,
61
36
  custom_price: targetBundleItem.price,
62
- price: targetBundleItem.price_type === "markdown" ? bundleSellingPrice : targetBundleItem.price,
37
+ price: targetBundleItem.price_type === 'markdown' ? bundleSellingPrice : targetBundleItem.price,
63
38
  bundle_selling_price: bundleSellingPrice,
64
39
  base_price: targetBundleItem.base_price
65
40
  };
@@ -67,10 +42,10 @@ async function updateAllCartItemPrice(cartItems, priceData, getProduct, updateCa
67
42
  }
68
43
  return n;
69
44
  });
70
- if (targetProduct == null ? void 0 : targetProduct.variant) {
71
- productInfo.variant = (_b = productInfo.variant) == null ? void 0 : _b.map((n) => {
72
- var _a2;
73
- const targetVariant = (_a2 = targetProduct.variant) == null ? void 0 : _a2.find((m) => m.id === n.id);
45
+ // 如果有返回variant,则把对应variant的数据也补充进去
46
+ if (targetProduct?.variant) {
47
+ productInfo.variant = productInfo.variant?.map(n => {
48
+ const targetVariant = targetProduct.variant?.find(m => m.id === n.id);
74
49
  if (targetVariant) {
75
50
  return {
76
51
  ...n,
@@ -81,6 +56,7 @@ async function updateAllCartItemPrice(cartItems, priceData, getProduct, updateCa
81
56
  return n;
82
57
  });
83
58
  }
59
+ // 先把商品原始信息更新了
84
60
  updateItemInitInfo({
85
61
  _id: item._id,
86
62
  product: productInfo
@@ -92,8 +68,4 @@ async function updateAllCartItemPrice(cartItems, priceData, getProduct, updateCa
92
68
  options: item._optionsOrigin
93
69
  });
94
70
  }
95
- }
96
- // Annotate the CommonJS export names for ESM import in node:
97
- 0 && (module.exports = {
98
- updateAllCartItemPrice
99
- });
71
+ }
@@ -1,47 +1,116 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ "use strict";
19
2
 
20
- // src/modules/Cart/utils/index.ts
21
- var utils_exports = {};
22
- __export(utils_exports, {
23
- createCartItemOrigin: () => createCartItemOrigin,
24
- getUniqueId: () => getUniqueId
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _exportNames = {
7
+ getUniqueId: true,
8
+ createCartItemOrigin: true
9
+ };
10
+ exports.getUniqueId = exports.createCartItemOrigin = void 0;
11
+ var _cartAccount = require("./cartAccount");
12
+ Object.keys(_cartAccount).forEach(function (key) {
13
+ if (key === "default" || key === "__esModule") return;
14
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
15
+ if (key in exports && exports[key] === _cartAccount[key]) return;
16
+ Object.defineProperty(exports, key, {
17
+ enumerable: true,
18
+ get: function () {
19
+ return _cartAccount[key];
20
+ }
21
+ });
22
+ });
23
+ var _cartDate = require("./cartDate");
24
+ Object.keys(_cartDate).forEach(function (key) {
25
+ if (key === "default" || key === "__esModule") return;
26
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
27
+ if (key in exports && exports[key] === _cartDate[key]) return;
28
+ Object.defineProperty(exports, key, {
29
+ enumerable: true,
30
+ get: function () {
31
+ return _cartDate[key];
32
+ }
33
+ });
34
+ });
35
+ var _cartDiscount = require("./cartDiscount");
36
+ Object.keys(_cartDiscount).forEach(function (key) {
37
+ if (key === "default" || key === "__esModule") return;
38
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
39
+ if (key in exports && exports[key] === _cartDiscount[key]) return;
40
+ Object.defineProperty(exports, key, {
41
+ enumerable: true,
42
+ get: function () {
43
+ return _cartDiscount[key];
44
+ }
45
+ });
25
46
  });
26
- module.exports = __toCommonJS(utils_exports);
27
- __reExport(utils_exports, require("./cartAccount"), module.exports);
28
- __reExport(utils_exports, require("./cartDate"), module.exports);
29
- __reExport(utils_exports, require("./cartDiscount"), module.exports);
30
- __reExport(utils_exports, require("./cartNote"), module.exports);
31
- __reExport(utils_exports, require("./cartProduct"), module.exports);
32
- __reExport(utils_exports, require("./cartRelationForms"), module.exports);
33
- __reExport(utils_exports, require("./cartResource"), module.exports);
34
- var getUniqueId = (prefix = "", maxLength = 11) => {
35
- return prefix + (Math.random() + "").replace(/\D/g, "").substring(0, maxLength);
47
+ var _cartNote = require("./cartNote");
48
+ Object.keys(_cartNote).forEach(function (key) {
49
+ if (key === "default" || key === "__esModule") return;
50
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
51
+ if (key in exports && exports[key] === _cartNote[key]) return;
52
+ Object.defineProperty(exports, key, {
53
+ enumerable: true,
54
+ get: function () {
55
+ return _cartNote[key];
56
+ }
57
+ });
58
+ });
59
+ var _cartProduct = require("./cartProduct");
60
+ Object.keys(_cartProduct).forEach(function (key) {
61
+ if (key === "default" || key === "__esModule") return;
62
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
63
+ if (key in exports && exports[key] === _cartProduct[key]) return;
64
+ Object.defineProperty(exports, key, {
65
+ enumerable: true,
66
+ get: function () {
67
+ return _cartProduct[key];
68
+ }
69
+ });
70
+ });
71
+ var _cartRelationForms = require("./cartRelationForms");
72
+ Object.keys(_cartRelationForms).forEach(function (key) {
73
+ if (key === "default" || key === "__esModule") return;
74
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
75
+ if (key in exports && exports[key] === _cartRelationForms[key]) return;
76
+ Object.defineProperty(exports, key, {
77
+ enumerable: true,
78
+ get: function () {
79
+ return _cartRelationForms[key];
80
+ }
81
+ });
82
+ });
83
+ var _cartResource = require("./cartResource");
84
+ Object.keys(_cartResource).forEach(function (key) {
85
+ if (key === "default" || key === "__esModule") return;
86
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
87
+ if (key in exports && exports[key] === _cartResource[key]) return;
88
+ Object.defineProperty(exports, key, {
89
+ enumerable: true,
90
+ get: function () {
91
+ return _cartResource[key];
92
+ }
93
+ });
94
+ });
95
+ /**
96
+ * 生成一个唯一的 ID
97
+ */
98
+ const getUniqueId = (prefix = '', maxLength = 11) => {
99
+ return prefix + (Math.random() + '').replace(/\D/g, '').substring(0, maxLength);
36
100
  };
37
- var createCartItemOrigin = () => {
101
+
102
+ /**
103
+ * 创建购物车原始数据
104
+ */
105
+ exports.getUniqueId = getUniqueId;
106
+ const createCartItemOrigin = () => {
38
107
  return {
39
108
  // 新增为0
40
109
  id: 0,
41
110
  // 数量 固定为1
42
111
  number: 1,
43
112
  // 客户端报名所有活动;
44
- registration_type: "all",
113
+ registration_type: 'all',
45
114
  // 暂时不用
46
115
  relation_products: [],
47
116
  // 固定
@@ -54,7 +123,7 @@ var createCartItemOrigin = () => {
54
123
  duration: null,
55
124
  // 资源相关
56
125
  // 资源状态 -固定
57
- like_status: "common",
126
+ like_status: 'common',
58
127
  // 资源类型 - 固定--谭景琳备注:马天宇说现在平行资源是不传这个的
59
128
  // relation_type: "form",
60
129
  // 所选资源
@@ -77,15 +146,4 @@ var createCartItemOrigin = () => {
77
146
  holder: null
78
147
  };
79
148
  };
80
- // Annotate the CommonJS export names for ESM import in node:
81
- 0 && (module.exports = {
82
- createCartItemOrigin,
83
- getUniqueId,
84
- ...require("./cartAccount"),
85
- ...require("./cartDate"),
86
- ...require("./cartDiscount"),
87
- ...require("./cartNote"),
88
- ...require("./cartProduct"),
89
- ...require("./cartRelationForms"),
90
- ...require("./cartResource")
91
- });
149
+ exports.createCartItemOrigin = createCartItemOrigin;
@@ -1,39 +1,18 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ "use strict";
18
2
 
19
- // src/modules/Customer/constants.ts
20
- var constants_exports = {};
21
- __export(constants_exports, {
22
- DEFAULT_CUSTOMER: () => DEFAULT_CUSTOMER,
23
- DEFAULT_PAGE_SIZE: () => DEFAULT_PAGE_SIZE,
24
- SORT_BY: () => SORT_BY
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
25
5
  });
26
- module.exports = __toCommonJS(constants_exports);
27
- var SORT_BY = "id";
28
- var DEFAULT_PAGE_SIZE = 20;
29
- var DEFAULT_CUSTOMER = {
6
+ exports.SORT_BY = exports.DEFAULT_PAGE_SIZE = exports.DEFAULT_CUSTOMER = void 0;
7
+ // 排序字段
8
+ const SORT_BY = exports.SORT_BY = "id";
9
+
10
+ // 默认每页数量
11
+ const DEFAULT_PAGE_SIZE = exports.DEFAULT_PAGE_SIZE = 20;
12
+
13
+ // 默认客户
14
+ const DEFAULT_CUSTOMER = exports.DEFAULT_CUSTOMER = {
30
15
  "id": 1,
31
16
  "nickname": "Select a customer",
32
17
  "name": "选择一个客户"
33
- };
34
- // Annotate the CommonJS export names for ESM import in node:
35
- 0 && (module.exports = {
36
- DEFAULT_CUSTOMER,
37
- DEFAULT_PAGE_SIZE,
38
- SORT_BY
39
- });
18
+ };