@pisell/pisellos 2.2.33 → 2.2.35
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 +1 -0
- package/dist/modules/Discount/index.js +2 -1
- package/dist/modules/Product/index.d.ts +1 -1
- package/dist/server/modules/menu/index.js +1 -1
- package/dist/server/modules/schedule/index.js +1 -1
- package/dist/solution/BookingByStep/index.d.ts +1 -1
- package/dist/solution/BookingTicket/index.d.ts +1 -1
- package/dist/solution/ShopDiscount/index.js +2 -1
- package/lib/modules/Discount/index.d.ts +1 -0
- package/lib/modules/Discount/index.js +2 -1
- package/lib/modules/Product/index.d.ts +1 -1
- package/lib/server/modules/menu/index.js +1 -1
- package/lib/server/modules/schedule/index.js +1 -1
- package/lib/solution/BookingByStep/index.d.ts +1 -1
- package/lib/solution/BookingTicket/index.d.ts +1 -1
- package/lib/solution/ShopDiscount/index.js +2 -1
- package/package.json +1 -1
|
@@ -22,6 +22,7 @@ export declare class DiscountModule extends BaseModule implements Module, Discou
|
|
|
22
22
|
with_discount_card: 0 | 1;
|
|
23
23
|
customer_id: number;
|
|
24
24
|
with_wallet_pass_holder: 0 | 1;
|
|
25
|
+
request_timezone: string;
|
|
25
26
|
}): Promise<Discount[]>;
|
|
26
27
|
batchSearch(code: string, customerId?: number): Promise<Discount[]>;
|
|
27
28
|
filterEnabledDiscountList(discountList: Discount[]): Discount[];
|
|
@@ -190,7 +190,8 @@ export var DiscountModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
190
190
|
relation_product: 1,
|
|
191
191
|
with: ['extensionData', 'customScheduleSnapshot', 'holder.detail'],
|
|
192
192
|
order_behavior_count: 1,
|
|
193
|
-
order_behavior_count_customer_id: customerId || 1
|
|
193
|
+
order_behavior_count_customer_id: customerId || 1,
|
|
194
|
+
request_timezone: Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
194
195
|
});
|
|
195
196
|
case 2:
|
|
196
197
|
result = _context5.sent;
|
|
@@ -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(): "normal" | "duration" | "session";
|
|
53
53
|
}
|
|
@@ -212,7 +212,7 @@ export var MenuModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
212
212
|
key: "getMenuByIds",
|
|
213
213
|
value: function getMenuByIds(ids) {
|
|
214
214
|
if (!ids || ids.length === 0) {
|
|
215
|
-
this.
|
|
215
|
+
this.logInfo('getMenuByIds: 未提供有效的 ids', {
|
|
216
216
|
idsCount: 0
|
|
217
217
|
});
|
|
218
218
|
return [];
|
|
@@ -258,7 +258,7 @@ export var ScheduleModuleEx = /*#__PURE__*/function (_BaseModule) {
|
|
|
258
258
|
key: "getScheduleByIds",
|
|
259
259
|
value: function getScheduleByIds(ids) {
|
|
260
260
|
if (!ids || ids.length === 0) {
|
|
261
|
-
this.
|
|
261
|
+
this.logInfo('getScheduleByIds: 未提供有效的 ids', {
|
|
262
262
|
idsCount: 0
|
|
263
263
|
});
|
|
264
264
|
return [];
|
|
@@ -343,7 +343,7 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
|
|
|
343
343
|
};
|
|
344
344
|
setOtherData(key: string, value: any): void;
|
|
345
345
|
getOtherData(key: string): any;
|
|
346
|
-
getProductTypeById(id: number): Promise<"
|
|
346
|
+
getProductTypeById(id: number): Promise<"normal" | "duration" | "session">;
|
|
347
347
|
/**
|
|
348
348
|
* 提供给 UI 的方法,减轻 UI 层的计算压力,UI 层只需要传递 cartItemId 和 resourceCode 即返回对应的 renderList
|
|
349
349
|
*
|
|
@@ -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, "
|
|
126
|
+
getCurrentCustomerSearchParams(): Omit<import("../../modules").ShopGetCustomerListParams, "num" | "skip">;
|
|
127
127
|
/**
|
|
128
128
|
* 获取客户列表状态(包含滚动加载相关状态)
|
|
129
129
|
* @returns 客户状态
|
|
@@ -741,7 +741,8 @@ export var ShopDiscountImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
741
741
|
action: 'create',
|
|
742
742
|
with_good_pass: 1,
|
|
743
743
|
with_discount_card: 1,
|
|
744
|
-
with_wallet_pass_holder: 1
|
|
744
|
+
with_wallet_pass_holder: 1,
|
|
745
|
+
request_timezone: Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
745
746
|
});
|
|
746
747
|
case 4:
|
|
747
748
|
goodPassList = _context9.sent;
|
|
@@ -22,6 +22,7 @@ export declare class DiscountModule extends BaseModule implements Module, Discou
|
|
|
22
22
|
with_discount_card: 0 | 1;
|
|
23
23
|
customer_id: number;
|
|
24
24
|
with_wallet_pass_holder: 0 | 1;
|
|
25
|
+
request_timezone: string;
|
|
25
26
|
}): Promise<Discount[]>;
|
|
26
27
|
batchSearch(code: string, customerId?: number): Promise<Discount[]>;
|
|
27
28
|
filterEnabledDiscountList(discountList: Discount[]): Discount[];
|
|
@@ -111,7 +111,8 @@ var DiscountModule = class extends import_BaseModule.BaseModule {
|
|
|
111
111
|
relation_product: 1,
|
|
112
112
|
with: ["extensionData", "customScheduleSnapshot", "holder.detail"],
|
|
113
113
|
order_behavior_count: 1,
|
|
114
|
-
order_behavior_count_customer_id: customerId || 1
|
|
114
|
+
order_behavior_count_customer_id: customerId || 1,
|
|
115
|
+
request_timezone: Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
115
116
|
});
|
|
116
117
|
const resultDiscountList = this.filterEnabledDiscountList((result == null ? void 0 : result.data) || []) || [];
|
|
117
118
|
return resultDiscountList;
|
|
@@ -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(): "normal" | "duration" | "session";
|
|
53
53
|
}
|
|
@@ -123,7 +123,7 @@ var MenuModule = class extends import_BaseModule.BaseModule {
|
|
|
123
123
|
*/
|
|
124
124
|
getMenuByIds(ids) {
|
|
125
125
|
if (!ids || ids.length === 0) {
|
|
126
|
-
this.
|
|
126
|
+
this.logInfo("getMenuByIds: 未提供有效的 ids", { idsCount: 0 });
|
|
127
127
|
return [];
|
|
128
128
|
}
|
|
129
129
|
const result = [];
|
|
@@ -179,7 +179,7 @@ var ScheduleModuleEx = class extends import_BaseModule.BaseModule {
|
|
|
179
179
|
*/
|
|
180
180
|
getScheduleByIds(ids) {
|
|
181
181
|
if (!ids || ids.length === 0) {
|
|
182
|
-
this.
|
|
182
|
+
this.logInfo("getScheduleByIds: 未提供有效的 ids", { idsCount: 0 });
|
|
183
183
|
return [];
|
|
184
184
|
}
|
|
185
185
|
const result = [];
|
|
@@ -343,7 +343,7 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
|
|
|
343
343
|
};
|
|
344
344
|
setOtherData(key: string, value: any): void;
|
|
345
345
|
getOtherData(key: string): any;
|
|
346
|
-
getProductTypeById(id: number): Promise<"
|
|
346
|
+
getProductTypeById(id: number): Promise<"normal" | "duration" | "session">;
|
|
347
347
|
/**
|
|
348
348
|
* 提供给 UI 的方法,减轻 UI 层的计算压力,UI 层只需要传递 cartItemId 和 resourceCode 即返回对应的 renderList
|
|
349
349
|
*
|
|
@@ -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, "
|
|
126
|
+
getCurrentCustomerSearchParams(): Omit<import("../../modules").ShopGetCustomerListParams, "num" | "skip">;
|
|
127
127
|
/**
|
|
128
128
|
* 获取客户列表状态(包含滚动加载相关状态)
|
|
129
129
|
* @returns 客户状态
|
|
@@ -490,7 +490,8 @@ var ShopDiscountImpl = class extends import_BaseModule.BaseModule {
|
|
|
490
490
|
action: "create",
|
|
491
491
|
with_good_pass: 1,
|
|
492
492
|
with_discount_card: 1,
|
|
493
|
-
with_wallet_pass_holder: 1
|
|
493
|
+
with_wallet_pass_holder: 1,
|
|
494
|
+
request_timezone: Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
494
495
|
}));
|
|
495
496
|
const scanDiscount = (_c = this.getDiscountList()) == null ? void 0 : _c.filter(
|
|
496
497
|
(item) => item.isScan
|