@pisell/pisellos 0.0.556 → 0.0.558

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 (68) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +3 -0
  3. package/dist/model/strategy/adapter/dataVariant/adapter.d.ts +49 -0
  4. package/dist/model/strategy/adapter/dataVariant/adapter.js +152 -0
  5. package/dist/model/strategy/adapter/dataVariant/evaluator.d.ts +87 -0
  6. package/dist/model/strategy/adapter/dataVariant/evaluator.js +755 -0
  7. package/dist/model/strategy/adapter/dataVariant/examples.d.ts +39 -0
  8. package/dist/model/strategy/adapter/dataVariant/examples.js +277 -0
  9. package/dist/model/strategy/adapter/dataVariant/index.d.ts +4 -0
  10. package/dist/model/strategy/adapter/dataVariant/index.js +4 -0
  11. package/dist/model/strategy/adapter/dataVariant/type.d.ts +146 -0
  12. package/dist/model/strategy/adapter/dataVariant/type.js +54 -0
  13. package/dist/model/strategy/adapter/index.d.ts +4 -0
  14. package/dist/model/strategy/adapter/index.js +5 -1
  15. package/dist/modules/Order/index.d.ts +1 -1
  16. package/dist/modules/Product/index.d.ts +1 -1
  17. package/dist/modules/ProductList/index.d.ts +2 -1
  18. package/dist/modules/ProductList/index.js +21 -11
  19. package/dist/solution/BookingByStep/index.d.ts +2 -2
  20. package/dist/solution/ScanOrder/index.d.ts +2 -1
  21. package/dist/solution/ScanOrder/index.js +137 -117
  22. package/dist/solution/ScanOrder/utils.d.ts +5 -0
  23. package/dist/solution/ScanOrder/utils.js +55 -23
  24. package/dist/solution/VenueBooking/index.d.ts +22 -3
  25. package/dist/solution/VenueBooking/index.js +259 -166
  26. package/dist/solution/VenueBooking/utils/dateSummary.d.ts +2 -2
  27. package/dist/solution/VenueBooking/utils/dateSummary.js +12 -25
  28. package/dist/solution/VenueBooking/utils/slotMerge.d.ts +0 -6
  29. package/dist/solution/VenueBooking/utils/slotMerge.js +3 -9
  30. package/dist/solution/VenueBooking/utils/smartPricing.d.ts +69 -0
  31. package/dist/solution/VenueBooking/utils/smartPricing.js +233 -0
  32. package/dist/solution/VenueBooking/utils/timeSlot.d.ts +2 -0
  33. package/dist/solution/VenueBooking/utils/timeSlot.js +9 -4
  34. package/lib/index.d.ts +1 -0
  35. package/lib/index.js +3 -0
  36. package/lib/model/strategy/adapter/dataVariant/adapter.d.ts +49 -0
  37. package/lib/model/strategy/adapter/dataVariant/adapter.js +139 -0
  38. package/lib/model/strategy/adapter/dataVariant/evaluator.d.ts +87 -0
  39. package/lib/model/strategy/adapter/dataVariant/evaluator.js +564 -0
  40. package/lib/model/strategy/adapter/dataVariant/examples.d.ts +39 -0
  41. package/lib/model/strategy/adapter/dataVariant/examples.js +293 -0
  42. package/lib/model/strategy/adapter/dataVariant/index.d.ts +4 -0
  43. package/lib/model/strategy/adapter/dataVariant/index.js +38 -0
  44. package/lib/model/strategy/adapter/dataVariant/type.d.ts +146 -0
  45. package/lib/model/strategy/adapter/dataVariant/type.js +31 -0
  46. package/lib/model/strategy/adapter/index.d.ts +4 -0
  47. package/lib/model/strategy/adapter/index.js +13 -2
  48. package/lib/model/strategy/adapter/promotion/index.js +49 -0
  49. package/lib/modules/Order/index.d.ts +1 -1
  50. package/lib/modules/Product/index.d.ts +1 -1
  51. package/lib/modules/ProductList/index.d.ts +2 -1
  52. package/lib/modules/ProductList/index.js +45 -40
  53. package/lib/solution/BookingByStep/index.d.ts +2 -2
  54. package/lib/solution/ScanOrder/index.d.ts +2 -1
  55. package/lib/solution/ScanOrder/index.js +29 -18
  56. package/lib/solution/ScanOrder/utils.d.ts +5 -0
  57. package/lib/solution/ScanOrder/utils.js +23 -0
  58. package/lib/solution/VenueBooking/index.d.ts +22 -3
  59. package/lib/solution/VenueBooking/index.js +151 -63
  60. package/lib/solution/VenueBooking/utils/dateSummary.d.ts +2 -2
  61. package/lib/solution/VenueBooking/utils/dateSummary.js +5 -10
  62. package/lib/solution/VenueBooking/utils/slotMerge.d.ts +0 -6
  63. package/lib/solution/VenueBooking/utils/slotMerge.js +3 -4
  64. package/lib/solution/VenueBooking/utils/smartPricing.d.ts +69 -0
  65. package/lib/solution/VenueBooking/utils/smartPricing.js +180 -0
  66. package/lib/solution/VenueBooking/utils/timeSlot.d.ts +2 -0
  67. package/lib/solution/VenueBooking/utils/timeSlot.js +7 -3
  68. package/package.json +1 -1
@@ -50,6 +50,7 @@ var import_resource = require("./utils/resource");
50
50
  var import_timeSlot = require("./utils/timeSlot");
51
51
  var import_dateSummary = require("./utils/dateSummary");
52
52
  var import_slotMerge = require("./utils/slotMerge");
53
+ var import_smartPricing = require("./utils/smartPricing");
53
54
  var import_utils3 = require("../../modules/Order/utils");
54
55
  var import_Order = require("../../modules/Order");
55
56
  var import_types4 = require("../RegisterAndLogin/types");
@@ -112,6 +113,10 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
112
113
  this.loadAllProductsInFlight = null;
113
114
  this.productsLoaded = false;
114
115
  this.loadOpenDataConfigInFlight = null;
116
+ /** 按日期缓存 slot 智能定价 Map,避免同周重复 resolveProducts */
117
+ this.slotPriceMapCache = /* @__PURE__ */ new Map();
118
+ /** loadProducts 后缓存的全量商品(venue + addon),供分段算价复用 */
119
+ this.smartPricingProductCatalog = [];
115
120
  }
116
121
  getLoggerContext() {
117
122
  return {
@@ -337,6 +342,8 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
337
342
  this.customerLoginRefreshIdInFlight = params.customerId;
338
343
  const refreshTask = (async () => {
339
344
  var _a;
345
+ this.clearSlotPriceMapCache();
346
+ this.recalculateOrderPricesFromSmartPricing();
340
347
  if (this.store.holder) {
341
348
  await this.store.holder.refreshAllFormRecords({
342
349
  customer_id: params.customerId,
@@ -348,7 +355,6 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
348
355
  channel: (_a = this.otherParams) == null ? void 0 : _a.channel
349
356
  });
350
357
  }
351
- this.recalculateOrderPricesFromQuotation();
352
358
  await this.store.order.loadDiscountConfig({
353
359
  customerId: params.customerId
354
360
  });
@@ -370,7 +376,7 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
370
376
  }
371
377
  }
372
378
  async initialize(core, options = {}) {
373
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o;
379
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m;
374
380
  this.logMethodStart("initialize");
375
381
  this.core = core;
376
382
  this.initializeOptions = options || {};
@@ -528,10 +534,6 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
528
534
  await this.loadRuntimeConfigs();
529
535
  if (this.store.schedule) {
530
536
  await this.store.schedule.loadAllSchedule();
531
- this.injectScheduleResolverToQuotation();
532
- (_o = this.store.quotation) == null ? void 0 : _o.loadQuotations({
533
- channel: (_n = this.otherParams) == null ? void 0 : _n.channel
534
- });
535
537
  }
536
538
  await this.refreshItemRuleQuantityLimits();
537
539
  this.store.status = "ready";
@@ -607,6 +609,81 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
607
609
  getCartValidation() {
608
610
  return this.store.cartValidation || { passed: null, failures: [] };
609
611
  }
612
+ /** 清除 slot 价格分段缓存(商品重载 / 登录后 customerId 变化时调用) */
613
+ clearSlotPriceMapCache() {
614
+ this.slotPriceMapCache.clear();
615
+ }
616
+ /** 读取当前登录 customerId */
617
+ resolveCustomerIdForSmartPricing() {
618
+ var _a, _b, _c;
619
+ try {
620
+ const userPlugin = (_a = this.core) == null ? void 0 : _a.getPlugin("user");
621
+ const customerId = Number((_c = (_b = userPlugin == null ? void 0 : userPlugin.get) == null ? void 0 : _b.call(userPlugin)) == null ? void 0 : _c.id);
622
+ return Number.isFinite(customerId) && customerId > 0 ? customerId : void 0;
623
+ } catch {
624
+ return void 0;
625
+ }
626
+ }
627
+ /** 读取 schedule 全量列表,供智能定价 schedule_match 使用 */
628
+ getScheduleListForSmartPricing() {
629
+ var _a;
630
+ const scheduleModule = this.store.schedule;
631
+ const list = (_a = scheduleModule == null ? void 0 : scheduleModule.store) == null ? void 0 : _a.scheduleList;
632
+ return Array.isArray(list) ? list : [];
633
+ }
634
+ /** 构建智能定价上下文,对齐 OS Server buildProductFormatterContext */
635
+ buildSmartPricingContext(customerId) {
636
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
637
+ const evaluator = (_b = (_a = this.core) == null ? void 0 : _a.context) == null ? void 0 : _b.dataVariantEvaluator;
638
+ return {
639
+ evaluator,
640
+ scheduleList: this.getScheduleListForSmartPricing(),
641
+ menuList: ((_c = this.otherParams) == null ? void 0 : _c.menuList) || ((_e = (_d = this.otherParams) == null ? void 0 : _d.openData) == null ? void 0 : _e.menuList) || [],
642
+ customerId: customerId ?? this.resolveCustomerIdForSmartPricing(),
643
+ channel: (_f = this.otherParams) == null ? void 0 : _f.channel,
644
+ businessCode: (_g = this.otherParams) == null ? void 0 : _g.businessCode,
645
+ orderType: ((_h = this.otherParams) == null ? void 0 : _h.orderType) || ((_i = this.otherParams) == null ? void 0 : _i.type),
646
+ strategy_context: (_j = this.otherParams) == null ? void 0 : _j.strategy_context
647
+ };
648
+ }
649
+ /** venue + addon 全量商品,供智能定价评估 */
650
+ getAllProductsForSmartPricing() {
651
+ if (this.smartPricingProductCatalog.length) {
652
+ return this.smartPricingProductCatalog;
653
+ }
654
+ const venueList = this.getVenueProducts();
655
+ const addonList = this.getAddonProductsList();
656
+ return [...venueList, ...addonList];
657
+ }
658
+ getSlotPriceMapCacheKey(date, context) {
659
+ return [
660
+ date,
661
+ context.customerId ?? "",
662
+ context.channel ?? "",
663
+ context.businessCode ?? ""
664
+ ].join("|");
665
+ }
666
+ /**
667
+ * 按 schedule 分段构建 slot 价格 Map,带实例级缓存。
668
+ */
669
+ buildSlotPriceMapForDate(date, config, productIds) {
670
+ const context = this.buildSmartPricingContext();
671
+ const cacheKey = this.getSlotPriceMapCacheKey(date, context);
672
+ const cached = this.slotPriceMapCache.get(cacheKey);
673
+ if (cached)
674
+ return cached;
675
+ const timeLabels = (0, import_timeSlot.generateTimeLabels)(config);
676
+ const slotPriceMap = (0, import_smartPricing.buildSlotPriceMapByScheduleSegments)({
677
+ products: this.getAllProductsForSmartPricing(),
678
+ productIds,
679
+ date,
680
+ timeLabels,
681
+ config,
682
+ context
683
+ });
684
+ this.slotPriceMapCache.set(cacheKey, slotPriceMap);
685
+ return slotPriceMap;
686
+ }
610
687
  // ─── 场地商品 & 附加商品 ───
611
688
  async loadAllProducts() {
612
689
  if (this.loadAllProductsInFlight)
@@ -635,9 +712,17 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
635
712
  menu_list_ids: menuListIds,
636
713
  cacheId: this.cacheId,
637
714
  schedule_date: (0, import_dayjs.default)().format("YYYY-MM-DD"),
638
- schedule_datetime: (0, import_dayjs.default)().format("YYYY-MM-DD HH:mm:ss")
715
+ schedule_datetime: (0, import_dayjs.default)().format("YYYY-MM-DD HH:mm:ss"),
716
+ with_extra: ["dataVariants"]
639
717
  });
640
- const list = Array.isArray(allProducts) ? allProducts : [];
718
+ let list = Array.isArray(allProducts) ? allProducts : [];
719
+ list = (0, import_smartPricing.formatProductsWithDataVariant)(
720
+ list,
721
+ this.buildSmartPricingContext(),
722
+ (0, import_dayjs.default)().format("YYYY-MM-DD HH:mm:ss")
723
+ );
724
+ this.smartPricingProductCatalog = list.slice();
725
+ this.clearSlotPriceMapCache();
641
726
  const venueList = list.filter((p) => p.duration != null);
642
727
  const addonList = list.filter((p) => p.duration == null);
643
728
  const venueStore = (_c = this.store.venueProducts) == null ? void 0 : _c.store;
@@ -822,29 +907,24 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
822
907
  config: this.baseSlotConfig,
823
908
  rawResources: this.store.rawResourceData,
824
909
  resourceProductMap: this.resourceProductMap,
825
- quotationModule: this.store.quotation,
826
- resolveConfig: (date) => this.resolveSlotConfigForDate(date)
910
+ resolveConfig: (date) => this.resolveSlotConfigForDate(date),
911
+ buildSlotPriceMap: (date, config, productIds) => this.buildSlotPriceMapForDate(date, config, productIds)
827
912
  });
828
913
  }
829
914
  getTimeSlotGrid(date) {
830
915
  const resolvedSlotConfig = this.syncOperatingHoursToSlotConfig(date);
831
- let quotationPriceMap;
832
- if (this.store.quotation) {
833
- const productIds = [
834
- ...new Set(
835
- [...this.resourceProductMap.values()].flat().map((m) => m.productId)
836
- )
837
- ];
838
- const timeLabels = (0, import_timeSlot.generateTimeLabels)(resolvedSlotConfig);
839
- const timePoints = timeLabels.map((label) => `${date} ${label}`);
840
- quotationPriceMap = this.store.quotation.buildProductPriceMap({ productIds, timePoints });
841
- }
916
+ const productIds = [
917
+ ...new Set(
918
+ [...this.resourceProductMap.values()].flat().map((m) => m.productId)
919
+ )
920
+ ];
921
+ const slotPriceMap = productIds.length ? this.buildSlotPriceMapForDate(date, resolvedSlotConfig, productIds) : void 0;
842
922
  return (0, import_timeSlot.buildTimeSlotGrid)({
843
923
  date,
844
924
  config: resolvedSlotConfig,
845
925
  rawResources: this.store.rawResourceData,
846
926
  resourceProductMap: this.resourceProductMap,
847
- quotationPriceMap
927
+ slotPriceMap
848
928
  });
849
929
  }
850
930
  // ─── 时间槽订单操作 ───
@@ -1130,8 +1210,7 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
1130
1210
  booking_uid: bookingUuid,
1131
1211
  price_breakdown: (0, import_slotMerge.buildPriceBreakdown)({
1132
1212
  group,
1133
- productId: mapping.productId,
1134
- quotation: this.store.quotation
1213
+ productId: mapping.productId
1135
1214
  })
1136
1215
  },
1137
1216
  _origin: {
@@ -1229,20 +1308,12 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
1229
1308
  if (!this.store.schedule)
1230
1309
  throw new Error("schedule 模块未初始化");
1231
1310
  await this.store.schedule.loadAllSchedule();
1232
- this.injectScheduleResolverToQuotation();
1233
1311
  this.logMethodSuccess("loadSchedules");
1234
1312
  } catch (error) {
1235
1313
  this.logMethodError("loadSchedules", error);
1236
1314
  throw error;
1237
1315
  }
1238
1316
  }
1239
- injectScheduleResolverToQuotation() {
1240
- if (this.store.quotation && this.store.schedule) {
1241
- this.store.quotation.setScheduleResolver(
1242
- (id) => this.store.schedule.getScheduleListByIds([id])[0]
1243
- );
1244
- }
1245
- }
1246
1317
  getScheduleListByIds(ids) {
1247
1318
  if (!this.store.schedule)
1248
1319
  return [];
@@ -1281,14 +1352,16 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
1281
1352
  throw error;
1282
1353
  }
1283
1354
  }
1284
- recalculateOrderPricesFromQuotation() {
1355
+ recalculateOrderPricesFromSmartPricing() {
1285
1356
  var _a, _b;
1286
- if (!this.store.order || !this.store.quotation)
1357
+ if (!this.store.order)
1287
1358
  return;
1288
1359
  const tempOrder = this.store.order.getTempOrder();
1289
1360
  if (!((_a = tempOrder == null ? void 0 : tempOrder.products) == null ? void 0 : _a.length))
1290
1361
  return;
1291
1362
  const now = (0, import_dayjs.default)().format("YYYY-MM-DD HH:mm:ss");
1363
+ const catalog = this.getAllProductsForSmartPricing();
1364
+ const context = this.buildSmartPricingContext();
1292
1365
  for (const product of tempOrder.products) {
1293
1366
  if ((_b = product.metadata) == null ? void 0 : _b.venue_booking) {
1294
1367
  const mappings = this.resourceProductMap.get(product.metadata.resource_id);
@@ -1301,34 +1374,49 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
1301
1374
  product,
1302
1375
  this.store.slotConfig.slotDurationMinutes
1303
1376
  );
1304
- const updatedSlots = slots.map((slot) => ({
1305
- ...slot,
1306
- productId: mapping.productId,
1307
- price: this.store.quotation.getPriceForProduct({
1377
+ const uniqueDates = [
1378
+ ...new Set(slots.map((slot) => (0, import_dayjs.default)(slot.startTime).format("YYYY-MM-DD")))
1379
+ ];
1380
+ const slotPriceMaps = /* @__PURE__ */ new Map();
1381
+ for (const slotDate of uniqueDates) {
1382
+ slotPriceMaps.set(
1383
+ slotDate,
1384
+ this.buildSlotPriceMapForDate(slotDate, this.store.slotConfig, [mapping.productId])
1385
+ );
1386
+ }
1387
+ const updatedSlots = slots.map((slot) => {
1388
+ const slotDate = (0, import_dayjs.default)(slot.startTime).format("YYYY-MM-DD");
1389
+ const slotPriceMap = slotPriceMaps.get(slotDate);
1390
+ return {
1391
+ ...slot,
1308
1392
  productId: mapping.productId,
1309
- datetime: slot.startTime
1310
- }) ?? mapping.price
1311
- }));
1393
+ price: slotPriceMap ? (0, import_smartPricing.getSlotPriceFromMap)({
1394
+ slotPriceMap,
1395
+ productId: mapping.productId,
1396
+ slotStartTime: slot.startTime,
1397
+ fallbackPrice: mapping.price
1398
+ }) : mapping.price
1399
+ };
1400
+ });
1312
1401
  const merged = (0, import_slotMerge.mergeConsecutiveSlots)(updatedSlots);
1313
1402
  if (merged.length === 1) {
1314
1403
  product.selling_price = merged[0].totalPrice;
1315
1404
  product.original_price = merged[0].totalPrice;
1316
1405
  product.metadata.price_breakdown = (0, import_slotMerge.buildPriceBreakdown)({
1317
1406
  group: merged[0],
1318
- productId: mapping.productId,
1319
- quotation: this.store.quotation
1407
+ productId: mapping.productId
1320
1408
  });
1321
1409
  }
1322
1410
  } else if (product.product_id != null) {
1323
- const quotationPrice = this.store.quotation.getPriceForProduct({
1324
- productId: product.product_id,
1325
- variantId: product.product_variant_id ?? void 0,
1326
- datetime: now
1411
+ const smartPrice = (0, import_smartPricing.getPriceForProductAtDatetime)({
1412
+ products: catalog,
1413
+ context,
1414
+ productId: Number(product.product_id),
1415
+ datetime: now,
1416
+ fallbackPrice: product.selling_price
1327
1417
  });
1328
- if (quotationPrice !== null) {
1329
- product.selling_price = quotationPrice;
1330
- product.original_price = quotationPrice;
1331
- }
1418
+ product.selling_price = smartPrice;
1419
+ product.original_price = smartPrice;
1332
1420
  }
1333
1421
  }
1334
1422
  }
@@ -1514,7 +1602,7 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
1514
1602
  }
1515
1603
  }
1516
1604
  async addProductToOrder(product) {
1517
- var _a;
1605
+ var _a, _b;
1518
1606
  this.logMethodStart("addProductToOrder", {
1519
1607
  product_id: product.product_id,
1520
1608
  product_variant_id: product.product_variant_id
@@ -1522,18 +1610,18 @@ var _VenueBookingImpl = class extends import_BaseModule.BaseModule {
1522
1610
  try {
1523
1611
  if (!this.store.order)
1524
1612
  throw new Error("order 模块未初始化");
1525
- if (!((_a = product.metadata) == null ? void 0 : _a.venue_booking) && this.store.quotation && product.product_id != null) {
1526
- const quotationPrice = this.store.quotation.getPriceForProduct({
1527
- productId: product.product_id,
1528
- variantId: product.product_variant_id ?? void 0,
1529
- datetime: (0, import_dayjs.default)().format("YYYY-MM-DD HH:mm:ss")
1613
+ if (!((_a = product.metadata) == null ? void 0 : _a.venue_booking) && product.product_id != null) {
1614
+ const smartPrice = (0, import_smartPricing.getPriceForProductAtDatetime)({
1615
+ products: this.getAllProductsForSmartPricing(),
1616
+ context: this.buildSmartPricingContext(),
1617
+ productId: Number(product.product_id),
1618
+ datetime: (0, import_dayjs.default)().format("YYYY-MM-DD HH:mm:ss"),
1619
+ fallbackPrice: product.selling_price
1530
1620
  });
1531
- if (quotationPrice !== null) {
1532
- product.selling_price = quotationPrice;
1533
- product.original_price = quotationPrice;
1534
- } else if (product.selling_price != null) {
1535
- product.original_price = product.selling_price;
1536
- }
1621
+ product.selling_price = smartPrice;
1622
+ product.original_price = smartPrice;
1623
+ } else if (product.selling_price != null && !((_b = product.metadata) == null ? void 0 : _b.venue_booking)) {
1624
+ product.original_price = product.selling_price;
1537
1625
  }
1538
1626
  const products = await this.store.order.addProductToOrder(product);
1539
1627
  await this.refreshItemRuleQuantityLimits();
@@ -1,11 +1,11 @@
1
1
  import type { VenueBookingSlotConfig, VenueResourceRawData, VenueDateSummaryItem, ResourceProductMapping } from '../types';
2
- import type { QuotationModule } from '../../../modules/Quotation';
3
2
  export declare function buildDateRangeSummary(params: {
4
3
  startDate: string;
5
4
  endDate: string;
6
5
  config: VenueBookingSlotConfig;
7
6
  rawResources: VenueResourceRawData[];
8
7
  resourceProductMap: Map<number | string, ResourceProductMapping[]>;
9
- quotationModule?: QuotationModule;
10
8
  resolveConfig?: (date: string) => VenueBookingSlotConfig;
9
+ /** 按日期构建 slot 智能定价 Map */
10
+ buildSlotPriceMap?: (date: string, config: VenueBookingSlotConfig, productIds: number[]) => Map<string, string | null>;
11
11
  }): VenueDateSummaryItem[];
@@ -41,28 +41,23 @@ function buildDateRangeSummary(params) {
41
41
  config,
42
42
  rawResources,
43
43
  resourceProductMap,
44
- quotationModule,
45
- resolveConfig
44
+ resolveConfig,
45
+ buildSlotPriceMap
46
46
  } = params;
47
47
  const result = [];
48
- const productIds = quotationModule ? [...new Set([...resourceProductMap.values()].flat().map((m) => m.productId))] : [];
48
+ const productIds = buildSlotPriceMap ? [...new Set([...resourceProductMap.values()].flat().map((m) => m.productId))] : [];
49
49
  let cursor = (0, import_dayjs.default)(startDate);
50
50
  const end = (0, import_dayjs.default)(endDate);
51
51
  while (!cursor.isAfter(end)) {
52
52
  const date = cursor.format("YYYY-MM-DD");
53
53
  const effectiveConfig = (resolveConfig == null ? void 0 : resolveConfig(date)) || config;
54
- let quotationPriceMap;
55
- if (quotationModule && productIds.length) {
56
- const timeLabels = (0, import_timeSlot.generateTimeLabels)(effectiveConfig);
57
- const timePoints = timeLabels.map((label) => `${date} ${label}`);
58
- quotationPriceMap = quotationModule.buildProductPriceMap({ productIds, timePoints });
59
- }
54
+ const slotPriceMap = buildSlotPriceMap && productIds.length ? buildSlotPriceMap(date, effectiveConfig, productIds) : void 0;
60
55
  const grid = (0, import_timeSlot.buildTimeSlotGrid)({
61
56
  date,
62
57
  config: effectiveConfig,
63
58
  rawResources,
64
59
  resourceProductMap,
65
- quotationPriceMap
60
+ slotPriceMap
66
61
  });
67
62
  let totalSlots = 0;
68
63
  let availableSlots = 0;
@@ -5,12 +5,6 @@ export declare function mergeConsecutiveSlots(slots: VenueSlotSelection[]): Merg
5
5
  export declare function buildPriceBreakdown(params: {
6
6
  group: MergedSlotGroup;
7
7
  productId: number;
8
- quotation?: {
9
- getQuotationShelfId: (p: {
10
- productId: number;
11
- datetime: string;
12
- }) => number;
13
- };
14
8
  }): PriceBreakdownEntry[];
15
9
  export interface BuildVenueBookingParams {
16
10
  group: MergedSlotGroup;
@@ -82,17 +82,16 @@ function mergeConsecutiveSlots(slots) {
82
82
  return groups;
83
83
  }
84
84
  function buildPriceBreakdown(params) {
85
- const { group, productId, quotation } = params;
85
+ const { group } = params;
86
86
  if (!group.slots.length)
87
87
  return [];
88
88
  const entries = [];
89
89
  for (const slot of group.slots) {
90
90
  const unitPrice = Number(slot.price || "0");
91
- const shelfId = quotation ? quotation.getQuotationShelfId({ productId, datetime: slot.startTime }) : 0;
92
91
  const startHm = (0, import_dayjs.default)(slot.startTime, "YYYY-MM-DD HH:mm").format("YYYY-MM-DD HH:mm");
93
92
  const endHm = (0, import_dayjs.default)(slot.endTime, "YYYY-MM-DD HH:mm").format("YYYY-MM-DD HH:mm");
94
93
  const last = entries[entries.length - 1];
95
- if (last && last.unit_price === unitPrice && last.quotation_shelf_id === shelfId && last.end_time === startHm) {
94
+ if (last && last.unit_price === unitPrice && last.quotation_shelf_id === 0 && last.end_time === startHm) {
96
95
  last.end_time = endHm;
97
96
  last.quantity += 1;
98
97
  } else {
@@ -100,7 +99,7 @@ function buildPriceBreakdown(params) {
100
99
  start_time: startHm,
101
100
  end_time: endHm,
102
101
  unit_price: unitPrice,
103
- quotation_shelf_id: shelfId,
102
+ quotation_shelf_id: 0,
104
103
  quantity: 1
105
104
  });
106
105
  }
@@ -0,0 +1,69 @@
1
+ import type { ProductData } from '../../../modules/Product/types';
2
+ import type { ScheduleItem } from '../../../modules/Schedule/types';
3
+ import type { DataVariantBusinessData, DataVariantMenu, DataVariantProduct } from '../../../model/strategy/adapter/dataVariant/type';
4
+ import type { DataVariantEvaluator } from '../../../model/strategy/adapter/dataVariant/evaluator';
5
+ import type { StrategyConfig } from '../../../model/strategy/type';
6
+ import type { VenueBookingSlotConfig } from '../types';
7
+ /** VenueBooking 智能定价运行时上下文 */
8
+ export interface VenueBookingSmartPricingContext {
9
+ evaluator?: DataVariantEvaluator | null;
10
+ scheduleList?: ScheduleItem[];
11
+ menuList?: DataVariantMenu[];
12
+ customerId?: number | string;
13
+ channel?: string;
14
+ businessCode?: string;
15
+ orderType?: string;
16
+ strategy_context?: Record<string, any>;
17
+ strategyConfigs?: StrategyConfig[];
18
+ }
19
+ /** 从商品上读取展示/算价用的 price 字段 */
20
+ export declare function extractProductPrice(product: DataVariantProduct): string | null;
21
+ /** 组装 DataVariant 评估入参,对齐 OS Server buildProductFormatterContext 语义 */
22
+ export declare function buildDataVariantBusinessData(products: ProductData[], context: VenueBookingSmartPricingContext, scheduleDateTime: string): DataVariantBusinessData;
23
+ /**
24
+ * 对商品列表执行一次智能定价格式化(loadProducts 后使用)。
25
+ * evaluator 未注入时原样返回并打 warning。
26
+ */
27
+ export declare function formatProductsWithDataVariant(products: ProductData[], context: VenueBookingSmartPricingContext, scheduleDateTime?: string): ProductData[];
28
+ /**
29
+ * 根据 schedule_time_points 与营业开始时间,构造当天需要评估的 datetime 列表(升序)。
30
+ * 跨日营业时,早于营业开始小时的时间点归到次日。
31
+ */
32
+ export declare function buildEvaluationDatetimes(params: {
33
+ date: string;
34
+ config: VenueBookingSlotConfig;
35
+ scheduleTimePoints: string[];
36
+ }): string[];
37
+ /** 找到 slot 时间所属分段的评估 datetime(max(evalDt <= slotDt)) */
38
+ export declare function findSegmentEvalDatetime(slotDatetime: string, evalDatetimes: string[]): string;
39
+ /** 将 slot 标签转为与 timeSlot 网格一致的 slotStart 字符串 */
40
+ export declare function buildSlotStartDatetime(date: string, label: string, config: VenueBookingSlotConfig): string;
41
+ /**
42
+ * 按 schedule 分段批量 resolveProducts,输出与 quotation 相同 key 格式的 slot 价格 Map。
43
+ * key: `${productId}:${slotStart}`,value: price | null
44
+ */
45
+ export declare function buildSlotPriceMapByScheduleSegments(params: {
46
+ products: ProductData[];
47
+ productIds: number[];
48
+ date: string;
49
+ timeLabels: string[];
50
+ config: VenueBookingSlotConfig;
51
+ context: VenueBookingSmartPricingContext;
52
+ }): Map<string, string | null>;
53
+ /**
54
+ * 指定商品在某一 datetime 的智能定价(addon / 单点重算用)。
55
+ */
56
+ export declare function getPriceForProductAtDatetime(params: {
57
+ products: ProductData[];
58
+ context: VenueBookingSmartPricingContext;
59
+ productId: number;
60
+ datetime: string;
61
+ fallbackPrice?: string;
62
+ }): string;
63
+ /** 从 slot 价格 Map 读取单价,找不到则回退 fallback */
64
+ export declare function getSlotPriceFromMap(params: {
65
+ slotPriceMap: Map<string, string | null>;
66
+ productId: number;
67
+ slotStartTime: string;
68
+ fallbackPrice?: string;
69
+ }): string;