@pisell/pisellos 0.0.172 → 0.0.174

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.
@@ -420,6 +420,8 @@ export var RulesModule = /*#__PURE__*/function (_BaseModule) {
420
420
 
421
421
  // 记录实际应用了优惠券的商品信息
422
422
  var appliedProducts = appliedDiscountProducts.get(_selectedDiscount.id) || [];
423
+
424
+ // 优先从 origin_total拿,可能会拿不到(比如用户端预约在没有配置 original_price 的情况下)
423
425
  var productOriginTotal = product.origin_total || product.total || 0;
424
426
 
425
427
  // 计算使用折扣卡/商品券以后,单个商品的总 total
@@ -1191,6 +1191,21 @@ export var BookingByStepImpl = /*#__PURE__*/function (_BaseModule) {
1191
1191
  _this6.store.cart.removeItem(n._id);
1192
1192
  });
1193
1193
  }
1194
+ // 如果 date.startTime 和 dateRange 里的 startTime 不一样,需要修正 dateRange
1195
+ var dateRange = this.store.date.getDateRange();
1196
+ if (dateRange !== null && dateRange !== void 0 && dateRange[0] && !dayjs(dateRange[0].date).isSame(dayjs(date.startTime), 'day')) {
1197
+ this.setDateRange([{
1198
+ date: dayjs(date.startTime).format('YYYY-MM-DD'),
1199
+ status: 'available',
1200
+ week: '',
1201
+ weekNum: 0
1202
+ }, {
1203
+ date: dayjs(date.endTime).format('YYYY-MM-DD'),
1204
+ status: 'available',
1205
+ week: '',
1206
+ weekNum: 0
1207
+ }]);
1208
+ }
1194
1209
  }
1195
1210
  }
1196
1211
  }, {
@@ -504,7 +504,7 @@ export var ShopDiscountImpl = /*#__PURE__*/function (_BaseModule) {
504
504
  return n.id === id;
505
505
  });
506
506
  var product = (_this3$hooks2 = _this3.hooks) === null || _this3$hooks2 === void 0 ? void 0 : _this3$hooks2.getProduct(targetProduct);
507
- return Number(product === null || product === void 0 ? void 0 : product.price) === 0;
507
+ return Number(product === null || product === void 0 ? void 0 : product.total) === 0;
508
508
  };
509
509
  var isAllProductUsedOrFree = (_item$applicableProdu = item.applicableProductIds) === null || _item$applicableProdu === void 0 ? void 0 : _item$applicableProdu.every(function (id) {
510
510
  var _item$applicableProdu2;
@@ -637,6 +637,13 @@ var BookingByStepImpl = class extends import_BaseModule.BaseModule {
637
637
  this.store.cart.removeItem(n._id);
638
638
  });
639
639
  }
640
+ const dateRange = this.store.date.getDateRange();
641
+ if ((dateRange == null ? void 0 : dateRange[0]) && !(0, import_dayjs.default)(dateRange[0].date).isSame((0, import_dayjs.default)(date.startTime), "day")) {
642
+ this.setDateRange([
643
+ { date: (0, import_dayjs.default)(date.startTime).format("YYYY-MM-DD"), status: "available", week: "", weekNum: 0 },
644
+ { date: (0, import_dayjs.default)(date.endTime).format("YYYY-MM-DD"), status: "available", week: "", weekNum: 0 }
645
+ ]);
646
+ }
640
647
  }
641
648
  }
642
649
  beforeUpdateCart(params, targetCartItem) {
@@ -346,7 +346,7 @@ var ShopDiscountImpl = class extends import_BaseModule.BaseModule {
346
346
  var _a3;
347
347
  const targetProduct = productList.find((n) => n.id === id);
348
348
  const product = (_a3 = this.hooks) == null ? void 0 : _a3.getProduct(targetProduct);
349
- return Number(product == null ? void 0 : product.price) === 0;
349
+ return Number(product == null ? void 0 : product.total) === 0;
350
350
  };
351
351
  const isAllProductUsedOrFree = (_a2 = item.applicableProductIds) == null ? void 0 : _a2.every((id) => {
352
352
  var _a3;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@pisell/pisellos",
4
- "version": "0.0.172",
4
+ "version": "0.0.174",
5
5
  "description": "一个可扩展的前端模块化SDK框架,支持插件系统",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",