@pisell/pisellos 3.0.95 → 3.0.96
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.
- package/dist/modules/Discount/index.d.ts +2 -1
- package/dist/modules/Product/index.d.ts +1 -1
- package/dist/modules/Rules/index.js +2 -1
- package/dist/solution/BookingByStep/index.d.ts +1 -1
- package/dist/solution/ShopDiscount/index.d.ts +1 -0
- package/dist/solution/ShopDiscount/index.js +28 -19
- package/dist/solution/ShopDiscount/types.d.ts +1 -0
- package/lib/modules/Discount/index.d.ts +2 -1
- package/lib/modules/Product/index.d.ts +1 -1
- package/lib/modules/Rules/index.js +1 -1
- package/lib/solution/BookingByStep/index.d.ts +1 -1
- package/lib/solution/ShopDiscount/index.d.ts +1 -0
- package/lib/solution/ShopDiscount/index.js +9 -3
- package/lib/solution/ShopDiscount/types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -17,12 +17,13 @@ export declare class DiscountModule extends BaseModule implements Module, Discou
|
|
|
17
17
|
setOriginalDiscountList(originalDiscountList: Discount[]): Promise<void>;
|
|
18
18
|
getOriginalDiscountList(): Discount[];
|
|
19
19
|
loadPrepareConfig(params: {
|
|
20
|
-
action?: 'create';
|
|
20
|
+
action?: 'create' | 'edit';
|
|
21
21
|
with_good_pass: 0 | 1;
|
|
22
22
|
with_discount_card: 0 | 1;
|
|
23
23
|
customer_id: number;
|
|
24
24
|
with_wallet_pass_holder: 0 | 1;
|
|
25
25
|
request_timezone: string;
|
|
26
|
+
order_id?: number;
|
|
26
27
|
}): Promise<Discount[]>;
|
|
27
28
|
batchSearch(code: string, customerId?: number): Promise<DiscountWithReason>;
|
|
28
29
|
filterEnabledDiscountList(discountList: Discount[]): Discount[];
|
|
@@ -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(): "
|
|
52
|
+
getProductType(): "duration" | "session" | "normal";
|
|
53
53
|
}
|
|
@@ -1805,7 +1805,8 @@ export var RulesModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
1805
1805
|
// 套餐适用范围配置
|
|
1806
1806
|
var packageScope = usageRules === null || usageRules === void 0 ? void 0 : usageRules.package_scope;
|
|
1807
1807
|
var _ref8 = packageScope || {},
|
|
1808
|
-
|
|
1808
|
+
_ref8$type = _ref8.type,
|
|
1809
|
+
scopeType = _ref8$type === void 0 ? 'product_all' : _ref8$type,
|
|
1809
1810
|
_ref8$exclude_bundle_ = _ref8.exclude_bundle_product_ids,
|
|
1810
1811
|
exclude_bundle_product_ids = _ref8$exclude_bundle_ === void 0 ? [] : _ref8$exclude_bundle_,
|
|
1811
1812
|
_ref8$include_bundle_ = _ref8.include_bundle_product_ids,
|
|
@@ -325,7 +325,7 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
|
|
|
325
325
|
date: string;
|
|
326
326
|
status: string;
|
|
327
327
|
week: string;
|
|
328
|
-
weekNum: 0 |
|
|
328
|
+
weekNum: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
329
329
|
}[]>;
|
|
330
330
|
submitTimeSlot(timeSlots: TimeSliceItem): void;
|
|
331
331
|
private getScheduleDataByIds;
|
|
@@ -25,6 +25,7 @@ export declare class ShopDiscountImpl extends BaseModule implements Module {
|
|
|
25
25
|
setHolders(holders: {
|
|
26
26
|
form_record_id: number;
|
|
27
27
|
}[]): void;
|
|
28
|
+
setOrderId(id?: number): void;
|
|
28
29
|
setBookingSubject(bookingSubject: {
|
|
29
30
|
type?: 'form' | 'customer';
|
|
30
31
|
[key: string]: any;
|
|
@@ -56,7 +56,8 @@ export var ShopDiscountImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
56
56
|
originalDiscountList: [],
|
|
57
57
|
currentBookingTime: "",
|
|
58
58
|
filteredDiscountList: [],
|
|
59
|
-
bookingSubject: undefined
|
|
59
|
+
bookingSubject: undefined,
|
|
60
|
+
orderId: undefined
|
|
60
61
|
};
|
|
61
62
|
return _this;
|
|
62
63
|
}
|
|
@@ -294,6 +295,11 @@ export var ShopDiscountImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
294
295
|
value: function setHolders(holders) {
|
|
295
296
|
this.store.holders = holders;
|
|
296
297
|
}
|
|
298
|
+
}, {
|
|
299
|
+
key: "setOrderId",
|
|
300
|
+
value: function setOrderId(id) {
|
|
301
|
+
this.store.orderId = id;
|
|
302
|
+
}
|
|
297
303
|
}, {
|
|
298
304
|
key: "setBookingSubject",
|
|
299
305
|
value: function setBookingSubject(bookingSubject) {
|
|
@@ -686,24 +692,27 @@ export var ShopDiscountImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
686
692
|
key: "loadPrepareConfig",
|
|
687
693
|
value: function () {
|
|
688
694
|
var _loadPrepareConfig = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(params) {
|
|
689
|
-
var _this$getCustomer2, _this$store$discount7, _this$getDiscountList, _this$store$discount8, _this$store$productLi, customerId, goodPassList, scanDiscount, scanDiscountIds, newGoodPassList, newDiscountList, filteredDiscountList, result;
|
|
695
|
+
var _this$getCustomer2, _this$store$discount7, _this$getDiscountList, _this$store$discount8, _this$store$productLi, orderId, customerId, goodPassList, scanDiscount, scanDiscountIds, newGoodPassList, newDiscountList, filteredDiscountList, result;
|
|
690
696
|
return _regeneratorRuntime().wrap(function _callee8$(_context8) {
|
|
691
697
|
while (1) switch (_context8.prev = _context8.next) {
|
|
692
698
|
case 0:
|
|
693
699
|
_context8.prev = 0;
|
|
700
|
+
orderId = this.store.orderId;
|
|
694
701
|
customerId = params.customerId || ((_this$getCustomer2 = this.getCustomer()) === null || _this$getCustomer2 === void 0 ? void 0 : _this$getCustomer2.id); // if (customerId === 1 || !customerId) {
|
|
695
702
|
// return
|
|
696
703
|
// }
|
|
697
|
-
_context8.next =
|
|
698
|
-
return (_this$store$discount7 = this.store.discount) === null || _this$store$discount7 === void 0 ? void 0 : _this$store$discount7.loadPrepareConfig({
|
|
704
|
+
_context8.next = 5;
|
|
705
|
+
return (_this$store$discount7 = this.store.discount) === null || _this$store$discount7 === void 0 ? void 0 : _this$store$discount7.loadPrepareConfig(_objectSpread({
|
|
699
706
|
customer_id: customerId,
|
|
700
|
-
action: 'create',
|
|
707
|
+
action: orderId ? 'edit' : 'create',
|
|
701
708
|
with_good_pass: 1,
|
|
702
709
|
with_discount_card: 1,
|
|
703
710
|
with_wallet_pass_holder: 1,
|
|
704
711
|
request_timezone: Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
705
|
-
}
|
|
706
|
-
|
|
712
|
+
}, orderId ? {
|
|
713
|
+
order_id: orderId
|
|
714
|
+
} : {}));
|
|
715
|
+
case 5:
|
|
707
716
|
goodPassList = _context8.sent;
|
|
708
717
|
scanDiscount = (_this$getDiscountList = this.getDiscountList()) === null || _this$getDiscountList === void 0 ? void 0 : _this$getDiscountList.filter(function (item) {
|
|
709
718
|
return item.isScan;
|
|
@@ -716,35 +725,35 @@ export var ShopDiscountImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
716
725
|
});
|
|
717
726
|
newDiscountList = [].concat(_toConsumableArray(scanDiscount), _toConsumableArray(newGoodPassList || [])); // 存储原始优惠券列表
|
|
718
727
|
this.store.originalDiscountList = newDiscountList;
|
|
719
|
-
_context8.next =
|
|
728
|
+
_context8.next = 13;
|
|
720
729
|
return (_this$store$discount8 = this.store.discount) === null || _this$store$discount8 === void 0 ? void 0 : _this$store$discount8.setOriginalDiscountList(newDiscountList);
|
|
721
|
-
case
|
|
730
|
+
case 13:
|
|
722
731
|
// 根据当前预约时间过滤优惠券列表
|
|
723
732
|
filteredDiscountList = this.filterDiscountListByBookingTime(newDiscountList, this.store.currentBookingTime);
|
|
724
733
|
this.store.filteredDiscountList = filteredDiscountList;
|
|
725
734
|
this.setDiscountList(filteredDiscountList || []);
|
|
726
735
|
if (!((_this$store$productLi = this.store.productList) !== null && _this$store$productLi !== void 0 && _this$store$productLi.length)) {
|
|
727
|
-
_context8.next =
|
|
736
|
+
_context8.next = 20;
|
|
728
737
|
break;
|
|
729
738
|
}
|
|
730
739
|
result = this.calcDiscount(this.store.productList);
|
|
731
|
-
_context8.next =
|
|
740
|
+
_context8.next = 20;
|
|
732
741
|
return this.core.effects.emit(ShopDiscountHooks.onLoadPrepareCalcResult, result);
|
|
733
|
-
case
|
|
734
|
-
_context8.next =
|
|
742
|
+
case 20:
|
|
743
|
+
_context8.next = 22;
|
|
735
744
|
return this.core.effects.emit(ShopDiscountHooks.onLoadDiscountList, filteredDiscountList);
|
|
736
|
-
case
|
|
737
|
-
_context8.next =
|
|
745
|
+
case 22:
|
|
746
|
+
_context8.next = 27;
|
|
738
747
|
break;
|
|
739
|
-
case
|
|
740
|
-
_context8.prev =
|
|
748
|
+
case 24:
|
|
749
|
+
_context8.prev = 24;
|
|
741
750
|
_context8.t0 = _context8["catch"](0);
|
|
742
751
|
console.error('[ShopDiscount] 加载准备配置出错:', _context8.t0);
|
|
743
|
-
case
|
|
752
|
+
case 27:
|
|
744
753
|
case "end":
|
|
745
754
|
return _context8.stop();
|
|
746
755
|
}
|
|
747
|
-
}, _callee8, this, [[0,
|
|
756
|
+
}, _callee8, this, [[0, 24]]);
|
|
748
757
|
}));
|
|
749
758
|
function loadPrepareConfig(_x8) {
|
|
750
759
|
return _loadPrepareConfig.apply(this, arguments);
|
|
@@ -17,12 +17,13 @@ export declare class DiscountModule extends BaseModule implements Module, Discou
|
|
|
17
17
|
setOriginalDiscountList(originalDiscountList: Discount[]): Promise<void>;
|
|
18
18
|
getOriginalDiscountList(): Discount[];
|
|
19
19
|
loadPrepareConfig(params: {
|
|
20
|
-
action?: 'create';
|
|
20
|
+
action?: 'create' | 'edit';
|
|
21
21
|
with_good_pass: 0 | 1;
|
|
22
22
|
with_discount_card: 0 | 1;
|
|
23
23
|
customer_id: number;
|
|
24
24
|
with_wallet_pass_holder: 0 | 1;
|
|
25
25
|
request_timezone: string;
|
|
26
|
+
order_id?: number;
|
|
26
27
|
}): Promise<Discount[]>;
|
|
27
28
|
batchSearch(code: string, customerId?: number): Promise<DiscountWithReason>;
|
|
28
29
|
filterEnabledDiscountList(discountList: Discount[]): Discount[];
|
|
@@ -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(): "
|
|
52
|
+
getProductType(): "duration" | "session" | "normal";
|
|
53
53
|
}
|
|
@@ -1382,7 +1382,7 @@ var RulesModule = class extends import_BaseModule.BaseModule {
|
|
|
1382
1382
|
}
|
|
1383
1383
|
const ruleType = usageRules.type;
|
|
1384
1384
|
const packageScope = usageRules == null ? void 0 : usageRules.package_scope;
|
|
1385
|
-
const { type: scopeType, exclude_bundle_product_ids = [], include_bundle_product_ids = [], filter = 0 } = packageScope || {};
|
|
1385
|
+
const { type: scopeType = "product_all", exclude_bundle_product_ids = [], include_bundle_product_ids = [], filter = 0 } = packageScope || {};
|
|
1386
1386
|
const isMainProduct = flatItem.type === "main";
|
|
1387
1387
|
const isBundleItem = flatItem.type === "bundle";
|
|
1388
1388
|
if (isMainProduct) {
|
|
@@ -325,7 +325,7 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
|
|
|
325
325
|
date: string;
|
|
326
326
|
status: string;
|
|
327
327
|
week: string;
|
|
328
|
-
weekNum: 0 |
|
|
328
|
+
weekNum: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
329
329
|
}[]>;
|
|
330
330
|
submitTimeSlot(timeSlots: TimeSliceItem): void;
|
|
331
331
|
private getScheduleDataByIds;
|
|
@@ -25,6 +25,7 @@ export declare class ShopDiscountImpl extends BaseModule implements Module {
|
|
|
25
25
|
setHolders(holders: {
|
|
26
26
|
form_record_id: number;
|
|
27
27
|
}[]): void;
|
|
28
|
+
setOrderId(id?: number): void;
|
|
28
29
|
setBookingSubject(bookingSubject: {
|
|
29
30
|
type?: 'form' | 'customer';
|
|
30
31
|
[key: string]: any;
|
|
@@ -56,7 +56,8 @@ var ShopDiscountImpl = class extends import_BaseModule.BaseModule {
|
|
|
56
56
|
originalDiscountList: [],
|
|
57
57
|
currentBookingTime: "",
|
|
58
58
|
filteredDiscountList: [],
|
|
59
|
-
bookingSubject: void 0
|
|
59
|
+
bookingSubject: void 0,
|
|
60
|
+
orderId: void 0
|
|
60
61
|
};
|
|
61
62
|
}
|
|
62
63
|
// =========== 生命周期方法 ===========
|
|
@@ -198,6 +199,9 @@ var ShopDiscountImpl = class extends import_BaseModule.BaseModule {
|
|
|
198
199
|
setHolders(holders) {
|
|
199
200
|
this.store.holders = holders;
|
|
200
201
|
}
|
|
202
|
+
setOrderId(id) {
|
|
203
|
+
this.store.orderId = id;
|
|
204
|
+
}
|
|
201
205
|
setBookingSubject(bookingSubject) {
|
|
202
206
|
this.store.bookingSubject = bookingSubject;
|
|
203
207
|
}
|
|
@@ -465,14 +469,16 @@ var ShopDiscountImpl = class extends import_BaseModule.BaseModule {
|
|
|
465
469
|
async loadPrepareConfig(params) {
|
|
466
470
|
var _a, _b, _c, _d, _e;
|
|
467
471
|
try {
|
|
472
|
+
const orderId = this.store.orderId;
|
|
468
473
|
const customerId = params.customerId || ((_a = this.getCustomer()) == null ? void 0 : _a.id);
|
|
469
474
|
const goodPassList = await ((_b = this.store.discount) == null ? void 0 : _b.loadPrepareConfig({
|
|
470
475
|
customer_id: customerId,
|
|
471
|
-
action: "create",
|
|
476
|
+
action: orderId ? "edit" : "create",
|
|
472
477
|
with_good_pass: 1,
|
|
473
478
|
with_discount_card: 1,
|
|
474
479
|
with_wallet_pass_holder: 1,
|
|
475
|
-
request_timezone: Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
480
|
+
request_timezone: Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
481
|
+
...orderId ? { order_id: orderId } : {}
|
|
476
482
|
}));
|
|
477
483
|
const scanDiscount = (_c = this.getDiscountList()) == null ? void 0 : _c.filter(
|
|
478
484
|
(item) => item.isScan
|