@pisell/pisellos 0.0.394 → 0.0.395

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.
@@ -49,5 +49,5 @@ export declare class Product extends BaseModule implements Module {
49
49
  getCategories(): ProductCategory[];
50
50
  setOtherParams(key: string, value: any): void;
51
51
  getOtherParams(): any;
52
- getProductType(): "normal" | "duration" | "session";
52
+ getProductType(): "duration" | "session" | "normal";
53
53
  }
@@ -412,8 +412,10 @@ export var RulesModule = /*#__PURE__*/function (_BaseModule) {
412
412
 
413
413
  // 对扁平化后的列表按价格降序排序(用于应用优惠券时优先选择高价商品)
414
414
  var sortedFlattenedList = flattenedList.sort(function (a, b) {
415
- var priceA = new Decimal(a.price || '0');
416
- var priceB = new Decimal(b.price || '0');
415
+ var _ref3, _a$original_price, _ref4, _b$original_price;
416
+ // 子商品优先使用 original_price,主商品使用 price
417
+ var priceA = new Decimal(a.type === 'bundle' ? (_ref3 = (_a$original_price = a.original_price) !== null && _a$original_price !== void 0 ? _a$original_price : a.price) !== null && _ref3 !== void 0 ? _ref3 : '0' : a.price || '0');
418
+ var priceB = new Decimal(b.type === 'bundle' ? (_ref4 = (_b$original_price = b.original_price) !== null && _b$original_price !== void 0 ? _b$original_price : b.price) !== null && _ref4 !== void 0 ? _ref4 : '0' : b.price || '0');
417
419
  if (priceA.equals(priceB)) {
418
420
  // 价格相同时,主商品优先
419
421
  if (a.type !== b.type) {
@@ -826,8 +828,8 @@ export var RulesModule = /*#__PURE__*/function (_BaseModule) {
826
828
  var _product$discount_lis5, _product11, _product11$every;
827
829
  // 主商品:判断自身是否手动折扣
828
830
  isManualDiscount = typeof product.isManualDiscount === 'boolean' ? product.isManualDiscount : product.total != product.origin_total && (product.bundle || []).every(function (item) {
829
- var _ref3;
830
- return !((_ref3 = item.discount_list || []) !== null && _ref3 !== void 0 && _ref3.length);
831
+ var _ref5;
832
+ return !((_ref5 = item.discount_list || []) !== null && _ref5 !== void 0 && _ref5.length);
831
833
  }) && (!((_product$discount_lis5 = product.discount_list) !== null && _product$discount_lis5 !== void 0 && _product$discount_lis5.length) || ((_product11 = product) === null || _product11 === void 0 || (_product11 = _product11.discount_list) === null || _product11 === void 0 || (_product11$every = _product11.every) === null || _product11$every === void 0 ? void 0 : _product11$every.call(_product11, function (item) {
832
834
  return item.type === 'product';
833
835
  })));
@@ -837,8 +839,8 @@ export var RulesModule = /*#__PURE__*/function (_BaseModule) {
837
839
  if (parentProduct) {
838
840
  var _parentProduct$discou, _parentProduct$discou2, _parentProduct$discou3;
839
841
  isManualDiscount = typeof parentProduct.isManualDiscount === 'boolean' ? parentProduct.isManualDiscount : parentProduct.total != parentProduct.origin_total && (parentProduct.bundle || []).every(function (item) {
840
- var _ref4;
841
- return !((_ref4 = item.discount_list || []) !== null && _ref4 !== void 0 && _ref4.length);
842
+ var _ref6;
843
+ return !((_ref6 = item.discount_list || []) !== null && _ref6 !== void 0 && _ref6.length);
842
844
  }) && (!((_parentProduct$discou = parentProduct.discount_list) !== null && _parentProduct$discou !== void 0 && _parentProduct$discou.length) || (parentProduct === null || parentProduct === void 0 || (_parentProduct$discou2 = parentProduct.discount_list) === null || _parentProduct$discou2 === void 0 || (_parentProduct$discou3 = _parentProduct$discou2.every) === null || _parentProduct$discou3 === void 0 ? void 0 : _parentProduct$discou3.call(_parentProduct$discou2, function (item) {
843
845
  return item.type === 'product';
844
846
  })));
@@ -308,7 +308,7 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
308
308
  date: string;
309
309
  status: string;
310
310
  week: string;
311
- weekNum: 0 | 1 | 2 | 3 | 4 | 5 | 6;
311
+ weekNum: 0 | 2 | 1 | 3 | 5 | 4 | 6;
312
312
  }[]>;
313
313
  submitTimeSlot(timeSlots: TimeSliceItem): void;
314
314
  private getScheduleDataByIds;
@@ -123,7 +123,7 @@ export declare class BookingTicketImpl extends BaseModule implements Module {
123
123
  * 获取当前的客户搜索条件
124
124
  * @returns 当前搜索条件
125
125
  */
126
- getCurrentCustomerSearchParams(): Omit<import("../../modules").ShopGetCustomerListParams, "num" | "skip">;
126
+ getCurrentCustomerSearchParams(): Omit<import("../../modules").ShopGetCustomerListParams, "skip" | "num">;
127
127
  /**
128
128
  * 获取客户列表状态(包含滚动加载相关状态)
129
129
  * @returns 客户状态
@@ -49,5 +49,5 @@ export declare class Product extends BaseModule implements Module {
49
49
  getCategories(): ProductCategory[];
50
50
  setOtherParams(key: string, value: any): void;
51
51
  getOtherParams(): any;
52
- getProductType(): "normal" | "duration" | "session";
52
+ getProductType(): "duration" | "session" | "normal";
53
53
  }
@@ -294,8 +294,12 @@ var RulesModule = class extends import_BaseModule.BaseModule {
294
294
  const flattenedList = flattenProductsWithBundle(productList);
295
295
  const sortedFlattenedList = flattenedList.sort((a, b) => {
296
296
  var _a, _b;
297
- const priceA = new import_decimal.default(a.price || "0");
298
- const priceB = new import_decimal.default(b.price || "0");
297
+ const priceA = new import_decimal.default(
298
+ a.type === "bundle" ? a.original_price ?? a.price ?? "0" : a.price || "0"
299
+ );
300
+ const priceB = new import_decimal.default(
301
+ b.type === "bundle" ? b.original_price ?? b.price ?? "0" : b.price || "0"
302
+ );
299
303
  if (priceA.equals(priceB)) {
300
304
  if (a.type !== b.type) {
301
305
  return a.type === "main" ? -1 : 1;
@@ -308,7 +308,7 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
308
308
  date: string;
309
309
  status: string;
310
310
  week: string;
311
- weekNum: 0 | 1 | 2 | 3 | 4 | 5 | 6;
311
+ weekNum: 0 | 2 | 1 | 3 | 5 | 4 | 6;
312
312
  }[]>;
313
313
  submitTimeSlot(timeSlots: TimeSliceItem): void;
314
314
  private getScheduleDataByIds;
@@ -123,7 +123,7 @@ export declare class BookingTicketImpl extends BaseModule implements Module {
123
123
  * 获取当前的客户搜索条件
124
124
  * @returns 当前搜索条件
125
125
  */
126
- getCurrentCustomerSearchParams(): Omit<import("../../modules").ShopGetCustomerListParams, "num" | "skip">;
126
+ getCurrentCustomerSearchParams(): Omit<import("../../modules").ShopGetCustomerListParams, "skip" | "num">;
127
127
  /**
128
128
  * 获取客户列表状态(包含滚动加载相关状态)
129
129
  * @returns 客户状态
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@pisell/pisellos",
4
- "version": "0.0.394",
4
+ "version": "0.0.395",
5
5
  "description": "一个可扩展的前端模块化SDK框架,支持插件系统",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",