@pisell/private-materials 6.2.3 → 6.2.4
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.js +1 -1
- package/es/components/Sales/Summary/utils.d.ts +1 -1
- package/es/components/booking/addons/model.d.ts +1 -10
- package/es/components/booking/forms/model.d.ts +1 -10
- package/es/components/booking/forms/sendModal/useSendModal.d.ts +1 -1
- package/es/components/booking/info/addServiceVariant/index.d.ts +0 -1
- package/es/components/booking/info/hooks/useInfoHolder.d.ts +0 -1
- package/es/components/booking/info/index.d.ts +0 -1
- package/es/components/booking/info/model.d.ts +1 -10
- package/es/components/booking/info/service/Lists.d.ts +0 -1
- package/es/components/booking/info/service/addService/utils.d.ts +1 -1
- package/es/components/booking/info/service/editService/BookingList/index.d.ts +0 -1
- package/es/components/booking/info/service2/Lists.d.ts +0 -1
- package/es/components/booking/info2/service/addService/utils.d.ts +1 -1
- package/es/components/booking/materiels/holder/index.d.ts +0 -1
- package/es/components/booking/model.d.ts +1 -9
- package/es/components/booking/notes/model.d.ts +1 -10
- package/es/components/booking/payments/model.d.ts +1 -10
- package/es/components/booking/utils.d.ts +2 -2
- package/es/components/eftposPay/amount.d.ts +1 -1
- package/es/components/eftposPay/device.d.ts +1 -1
- package/es/components/eftposPay/hooks.d.ts +2 -2
- package/es/components/eftposPay/store/index.d.ts +4 -4
- package/es/components/pay/toC/PaymentMethods/index.js +70 -21
- package/es/components/pay/toC/index.js +46 -14
- package/es/components/pay/toC/model.d.ts +1 -9
- package/es/components/productExtension/fields/Forms/index.d.ts +0 -1
- package/es/components/schedules/model.d.ts +1 -9
- package/es/components/ticketBooking/components/ticketBooking/index.js +2 -2
- package/es/components/wallet/Detail/model.d.ts +1 -13
- package/es/components/wallet/DiscountCard/model.d.ts +1 -14
- package/es/components/wallet/PointCard/model.d.ts +1 -13
- package/es/components/wallet/RechargeableCard/model.d.ts +1 -29
- package/es/components/wallet/Voucher/model.d.ts +1 -13
- package/es/components/wallet/model.d.ts +1 -9
- package/lib/components/Sales/Summary/utils.d.ts +1 -1
- package/lib/components/booking/addons/model.d.ts +1 -10
- package/lib/components/booking/forms/model.d.ts +1 -10
- package/lib/components/booking/forms/sendModal/useSendModal.d.ts +1 -1
- package/lib/components/booking/info/addServiceVariant/index.d.ts +0 -1
- package/lib/components/booking/info/hooks/useInfoHolder.d.ts +0 -1
- package/lib/components/booking/info/index.d.ts +0 -1
- package/lib/components/booking/info/model.d.ts +1 -10
- package/lib/components/booking/info/service/Lists.d.ts +0 -1
- package/lib/components/booking/info/service/addService/utils.d.ts +1 -1
- package/lib/components/booking/info/service/editService/BookingList/index.d.ts +0 -1
- package/lib/components/booking/info/service2/Lists.d.ts +0 -1
- package/lib/components/booking/info2/service/addService/utils.d.ts +1 -1
- package/lib/components/booking/materiels/holder/index.d.ts +0 -1
- package/lib/components/booking/model.d.ts +1 -9
- package/lib/components/booking/notes/model.d.ts +1 -10
- package/lib/components/booking/payments/model.d.ts +1 -10
- package/lib/components/booking/utils.d.ts +2 -2
- package/lib/components/eftposPay/amount.d.ts +1 -1
- package/lib/components/eftposPay/device.d.ts +1 -1
- package/lib/components/eftposPay/hooks.d.ts +2 -2
- package/lib/components/eftposPay/store/index.d.ts +4 -4
- package/lib/components/pay/toC/PaymentMethods/index.js +30 -2
- package/lib/components/pay/toC/index.js +29 -9
- package/lib/components/pay/toC/model.d.ts +1 -9
- package/lib/components/productExtension/fields/Forms/index.d.ts +0 -1
- package/lib/components/schedules/model.d.ts +1 -9
- package/lib/components/ticketBooking/components/ticketBooking/index.js +25 -25
- package/lib/components/wallet/Detail/model.d.ts +1 -13
- package/lib/components/wallet/DiscountCard/model.d.ts +1 -14
- package/lib/components/wallet/PointCard/model.d.ts +1 -13
- package/lib/components/wallet/RechargeableCard/model.d.ts +1 -29
- package/lib/components/wallet/Voucher/model.d.ts +1 -13
- package/lib/components/wallet/model.d.ts +1 -9
- package/package.json +3 -3
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import { IWalletListItemProps } from './serve';
|
3
2
|
export interface WalletCardItemProps {
|
4
3
|
id: string;
|
@@ -27,11 +26,4 @@ export interface WalletListProps {
|
|
27
26
|
currentSearchListItemCode?: string;
|
28
27
|
[key: string]: any;
|
29
28
|
}
|
30
|
-
export declare const Provider:
|
31
|
-
global_wallet: WalletListProps;
|
32
|
-
} & {
|
33
|
-
dispatch: (params: {
|
34
|
-
type: string;
|
35
|
-
payload: any;
|
36
|
-
}) => void;
|
37
|
-
}>;
|
29
|
+
export declare const Provider: any, Context: any;
|
@@ -30,7 +30,7 @@ export declare const calculateSubtotal: (items: CartItem[]) => string;
|
|
30
30
|
* @return {*}
|
31
31
|
* @Author: xiangfeng.xue
|
32
32
|
*/
|
33
|
-
export declare const calculateTaxFee: (shopInfo: any, items: CartItem[]) => "0.00"
|
33
|
+
export declare const calculateTaxFee: (shopInfo: any, items: CartItem[]) => Decimal | "0.00";
|
34
34
|
/**
|
35
35
|
* 计算所有价格明细
|
36
36
|
* @param items - 购物车商品数组
|
@@ -1,10 +1 @@
|
|
1
|
-
|
2
|
-
import { FormState } from "../model";
|
3
|
-
export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
|
4
|
-
state: FormState;
|
5
|
-
} & {
|
6
|
-
dispatch: (params: {
|
7
|
-
type: string;
|
8
|
-
payload: any;
|
9
|
-
}) => void;
|
10
|
-
}>;
|
1
|
+
export declare const Provider: any, Context: any;
|
@@ -1,10 +1 @@
|
|
1
|
-
|
2
|
-
import { FormState } from "../model";
|
3
|
-
export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
|
4
|
-
state: FormState;
|
5
|
-
} & {
|
6
|
-
dispatch: (params: {
|
7
|
-
type: string;
|
8
|
-
payload: any;
|
9
|
-
}) => void;
|
10
|
-
}>;
|
1
|
+
export declare const Provider: any, Context: any;
|
@@ -4,6 +4,6 @@ declare const useSendModal: (bookingId?: number) => {
|
|
4
4
|
setOpen: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
5
5
|
handleOpen: () => void;
|
6
6
|
handleValuesChange: (val: any) => void;
|
7
|
-
handleOk: (values: SendModalValues) => Promise<
|
7
|
+
handleOk: (values: SendModalValues) => Promise<any>;
|
8
8
|
};
|
9
9
|
export default useSendModal;
|
@@ -1,14 +1,5 @@
|
|
1
|
-
/// <reference types="react" />
|
2
|
-
import { FormState } from '../model';
|
3
1
|
export declare const walkInData: {
|
4
2
|
id: number;
|
5
3
|
nickname: string;
|
6
4
|
};
|
7
|
-
export declare const Provider:
|
8
|
-
state: FormState;
|
9
|
-
} & {
|
10
|
-
dispatch: (params: {
|
11
|
-
type: string;
|
12
|
-
payload: any;
|
13
|
-
}) => void;
|
14
|
-
}>;
|
5
|
+
export declare const Provider: any, Context: any;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
export interface FormState {
|
3
2
|
amountSymbol: string;
|
4
3
|
apis: {
|
@@ -106,11 +105,4 @@ export declare const walkInData: {
|
|
106
105
|
id: number;
|
107
106
|
nickname: string;
|
108
107
|
};
|
109
|
-
export declare const Provider:
|
110
|
-
state: FormState;
|
111
|
-
} & {
|
112
|
-
dispatch: (params: {
|
113
|
-
type: string;
|
114
|
-
payload: any;
|
115
|
-
}) => void;
|
116
|
-
}>;
|
108
|
+
export declare const Provider: any, Context: any;
|
@@ -1,10 +1 @@
|
|
1
|
-
|
2
|
-
import { FormState } from "../model";
|
3
|
-
export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
|
4
|
-
state: FormState;
|
5
|
-
} & {
|
6
|
-
dispatch: (params: {
|
7
|
-
type: string;
|
8
|
-
payload: any;
|
9
|
-
}) => void;
|
10
|
-
}>;
|
1
|
+
export declare const Provider: any, Context: any;
|
@@ -1,10 +1 @@
|
|
1
|
-
|
2
|
-
import { FormState } from "../model";
|
3
|
-
export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
|
4
|
-
state: FormState;
|
5
|
-
} & {
|
6
|
-
dispatch: (params: {
|
7
|
-
type: string;
|
8
|
-
payload: any;
|
9
|
-
}) => void;
|
10
|
-
}>;
|
1
|
+
export declare const Provider: any, Context: any;
|
@@ -165,10 +165,10 @@ export declare const getProductTotalPrice: (item: any) => number;
|
|
165
165
|
export declare const getDuration: (duration: number | {
|
166
166
|
type: string;
|
167
167
|
value: number;
|
168
|
-
}) => number |
|
168
|
+
}) => number | {
|
169
169
|
type: string;
|
170
170
|
value: number;
|
171
|
-
};
|
171
|
+
} | "flexible";
|
172
172
|
export declare const isWalkIn: (customer_id?: number | string) => boolean;
|
173
173
|
export declare const getIsEdit: (state: any) => boolean;
|
174
174
|
export {};
|
@@ -8,7 +8,7 @@ import { PosProps } from './const';
|
|
8
8
|
*/
|
9
9
|
declare const _default: ({ className, onChange, onClose, formatAmount, isMobile, net, client }: {
|
10
10
|
className?: string | undefined;
|
11
|
-
onChange?: ((status: "success" | "page" | "
|
11
|
+
onChange?: ((status: "success" | "page" | "fail" | "print" | "mark_tx_processed", params?: string | {
|
12
12
|
[keys: string]: unknown;
|
13
13
|
} | undefined, other?: any) => void) | undefined;
|
14
14
|
onClose: () => void;
|
@@ -10,7 +10,7 @@ import './device.less';
|
|
10
10
|
declare const _default: ({ api, onChange, onClose, className, device_number, isMobile, net, client, formatAmount, }: {
|
11
11
|
api: PayProps['api'];
|
12
12
|
className?: string | undefined;
|
13
|
-
onChange?: ((status: "success" | "page" | "
|
13
|
+
onChange?: ((status: "success" | "page" | "fail" | "print" | "mark_tx_processed", params?: string | {
|
14
14
|
[keys: string]: unknown;
|
15
15
|
} | undefined, other?: any) => void) | undefined;
|
16
16
|
onClose: () => void;
|
@@ -15,11 +15,11 @@ export declare const useStoreRef: <T extends {
|
|
15
15
|
readonly numRef: React.MutableRefObject<string | number | undefined>;
|
16
16
|
readonly orderIdRef: React.MutableRefObject<string | number>;
|
17
17
|
readonly modeRef: React.MutableRefObject<ModeEnum>;
|
18
|
-
readonly statusRef: React.MutableRefObject<"success" | "
|
18
|
+
readonly statusRef: React.MutableRefObject<"success" | "warn" | "loading" | "fail" | "pedding" | "resove" | "reject" | "question">;
|
19
19
|
readonly netRef: React.MutableRefObject<boolean | undefined>;
|
20
20
|
readonly symbolRef: React.MutableRefObject<string>;
|
21
21
|
readonly amountRef: React.MutableRefObject<string | number>;
|
22
|
-
readonly eftposRef: React.MutableRefObject<"
|
22
|
+
readonly eftposRef: React.MutableRefObject<"payo" | "tyro" | "windcave" | "stripe" | "linkly">;
|
23
23
|
readonly clientRef: React.MutableRefObject<ClientEnum>;
|
24
24
|
readonly dataRef: React.MutableRefObject<import("./store").State>;
|
25
25
|
};
|
@@ -174,7 +174,7 @@ export declare const updateCustom: (payload: {
|
|
174
174
|
export declare const updateStatus: (status: 'loading' | 'warn' | 'fail' | 'success' | 'question') => {
|
175
175
|
type: EActionTypes;
|
176
176
|
payload: {
|
177
|
-
status: "success" | "
|
177
|
+
status: "success" | "warn" | "loading" | "fail" | "question";
|
178
178
|
};
|
179
179
|
};
|
180
180
|
/**
|
@@ -295,9 +295,9 @@ export declare const backUpFree: (payload: Partial<State>) => {
|
|
295
295
|
name?: string | undefined;
|
296
296
|
symbol?: string | undefined;
|
297
297
|
amount?: string | number | undefined;
|
298
|
-
mode?: "
|
298
|
+
mode?: "pay" | "fullPay" | "refund" | "query" | undefined;
|
299
299
|
order_id?: string | number | undefined;
|
300
|
-
eftpos?: "
|
300
|
+
eftpos?: "payo" | "tyro" | "windcave" | "stripe" | "linkly" | undefined;
|
301
301
|
action?: "amount" | "pay" | "deviceList" | undefined;
|
302
302
|
key?: number | undefined;
|
303
303
|
step?: number | undefined;
|
@@ -308,7 +308,7 @@ export declare const backUpFree: (payload: Partial<State>) => {
|
|
308
308
|
net?: boolean | undefined;
|
309
309
|
component?: string | undefined;
|
310
310
|
form?: string | undefined;
|
311
|
-
status?: "success" | "
|
311
|
+
status?: "success" | "warn" | "loading" | "fail" | "pedding" | "resove" | "reject" | "question" | undefined;
|
312
312
|
warn?: string | undefined;
|
313
313
|
steps?: {
|
314
314
|
/** 用于重置当前步骤 */
|
@@ -86,6 +86,15 @@ var PaymentMethods = (props, ref) => {
|
|
86
86
|
var _a2, _b2;
|
87
87
|
const waitAmount = (payGroup == null ? void 0 : payGroup.wait_amount) || 0;
|
88
88
|
const cards = (_b2 = (_a2 = payGroup == null ? void 0 : payGroup.walletPass) == null ? void 0 : _a2.cards) == null ? void 0 : _b2.length;
|
89
|
+
(0, import_utils2.sendWarningLog)({
|
90
|
+
title: "支付初始化",
|
91
|
+
content: [
|
92
|
+
{ key: "type", value: type },
|
93
|
+
{ key: "payGroup", value: JSON.stringify(payGroup) },
|
94
|
+
{ key: "waitAmount", value: waitAmount },
|
95
|
+
{ key: "cards", value: cards }
|
96
|
+
]
|
97
|
+
});
|
89
98
|
if (cards && (waitAmount <= 0 || isOfflinePayment(type))) {
|
90
99
|
try {
|
91
100
|
await (0, import_serve.walletPassPay)((0, import_utils.formatWalletPassParams)(payGroup));
|
@@ -98,6 +107,14 @@ var PaymentMethods = (props, ref) => {
|
|
98
107
|
}
|
99
108
|
});
|
100
109
|
} catch (err) {
|
110
|
+
(0, import_utils2.sendWarningLog)({
|
111
|
+
title: "钱包支付失败 catch",
|
112
|
+
content: [
|
113
|
+
{ key: "错误信息", value: (err == null ? void 0 : err.message) || "未知错误" },
|
114
|
+
{ key: "错误堆栈", value: (err == null ? void 0 : err.stack) || "无堆栈信息" },
|
115
|
+
{ key: "错误类型", value: (err == null ? void 0 : err.name) || "未知错误类型" }
|
116
|
+
]
|
117
|
+
});
|
101
118
|
return props.payCallback({
|
102
119
|
key: "fail",
|
103
120
|
data: {
|
@@ -109,8 +126,19 @@ var PaymentMethods = (props, ref) => {
|
|
109
126
|
}
|
110
127
|
}
|
111
128
|
if (waitAmount <= 0) {
|
112
|
-
|
113
|
-
|
129
|
+
try {
|
130
|
+
(0, import_payGroup.removePayGroupFromStorage)(payGroup.order_id);
|
131
|
+
props.payCallback({ key: "success" });
|
132
|
+
} catch (err) {
|
133
|
+
(0, import_utils2.sendWarningLog)({
|
134
|
+
title: "跳转成功页面 catch",
|
135
|
+
content: [
|
136
|
+
{ key: "错误信息", value: (err == null ? void 0 : err.message) || "未知错误" },
|
137
|
+
{ key: "错误堆栈", value: (err == null ? void 0 : err.stack) || "无堆栈信息" },
|
138
|
+
{ key: "错误类型", value: (err == null ? void 0 : err.name) || "未知错误类型" }
|
139
|
+
]
|
140
|
+
});
|
141
|
+
}
|
114
142
|
return;
|
115
143
|
}
|
116
144
|
await onPayByType({ type, payGroup });
|
@@ -208,6 +208,14 @@ var ToCPay = (props, ref) => {
|
|
208
208
|
payment_priority: data.payment_priority
|
209
209
|
};
|
210
210
|
} catch (err) {
|
211
|
+
(0, import_utils.sendWarningLog)({
|
212
|
+
title: "创建交易组失败 paymentInit catch",
|
213
|
+
content: [
|
214
|
+
{ key: "错误信息", value: (err == null ? void 0 : err.message) || "未知错误" },
|
215
|
+
{ key: "错误堆栈", value: (err == null ? void 0 : err.stack) || "无堆栈信息" },
|
216
|
+
{ key: "错误类型", value: (err == null ? void 0 : err.name) || "未知错误类型" }
|
217
|
+
]
|
218
|
+
});
|
211
219
|
setSubmitLoading(false);
|
212
220
|
payCallback({
|
213
221
|
key: "fail",
|
@@ -243,16 +251,28 @@ var ToCPay = (props, ref) => {
|
|
243
251
|
};
|
244
252
|
const onSubmit = async (newOrderId) => {
|
245
253
|
var _a2;
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
+
try {
|
255
|
+
let newPayGroup = state.payGroup;
|
256
|
+
const result = await getIsShowDetectIncognitoConfirm(newPayGroup);
|
257
|
+
if (result) {
|
258
|
+
setShowDetectIncognitoConfirm(true);
|
259
|
+
return;
|
260
|
+
}
|
261
|
+
if (!((_a2 = state.payGroup) == null ? void 0 : _a2.payment_group_id)) {
|
262
|
+
newPayGroup = await paymentInit(newOrderId);
|
263
|
+
}
|
264
|
+
handlePaymentByType(void 0, newPayGroup);
|
265
|
+
} catch (err) {
|
266
|
+
console.log("err", err);
|
267
|
+
(0, import_utils.sendWarningLog)({
|
268
|
+
title: "提交支付失败 onSubmit catch",
|
269
|
+
content: [
|
270
|
+
{ key: "错误信息", value: (err == null ? void 0 : err.message) || "未知错误" },
|
271
|
+
{ key: "错误堆栈", value: (err == null ? void 0 : err.stack) || "无堆栈信息" },
|
272
|
+
{ key: "错误类型", value: (err == null ? void 0 : err.name) || "未知错误类型" }
|
273
|
+
]
|
274
|
+
});
|
254
275
|
}
|
255
|
-
handlePaymentByType(void 0, newPayGroup);
|
256
276
|
};
|
257
277
|
const paymentTypeChange = (payload) => {
|
258
278
|
dispatch({
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
export interface FormState {
|
3
2
|
platform: 'pc' | 'h5' | '' | undefined;
|
4
3
|
order: any;
|
@@ -29,11 +28,4 @@ export interface PayGroup {
|
|
29
28
|
pay_number?: string;
|
30
29
|
_order: any;
|
31
30
|
}
|
32
|
-
export declare const Provider:
|
33
|
-
state: FormState;
|
34
|
-
} & {
|
35
|
-
dispatch: (params: {
|
36
|
-
type: string;
|
37
|
-
payload: any;
|
38
|
-
}) => void;
|
39
|
-
}>;
|
31
|
+
export declare const Provider: any, Context: any;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import { CalendarDataItem, ScheduleItem } from "./type";
|
3
2
|
import dayjs from "dayjs";
|
4
3
|
export interface FormState {
|
@@ -69,11 +68,4 @@ export interface FormState {
|
|
69
68
|
};
|
70
69
|
setGlobalState: Function | null;
|
71
70
|
}
|
72
|
-
export declare const Provider:
|
73
|
-
state: FormState;
|
74
|
-
} & {
|
75
|
-
dispatch: (params: {
|
76
|
-
type: string;
|
77
|
-
payload: any;
|
78
|
-
}) => void;
|
79
|
-
}>;
|
71
|
+
export declare const Provider: any, Context: any;
|
@@ -188,7 +188,7 @@ var _formatBookingDetail = (data, modalState) => {
|
|
188
188
|
};
|
189
189
|
};
|
190
190
|
var TicketBooking = () => {
|
191
|
-
var _a;
|
191
|
+
var _a, _b, _c;
|
192
192
|
const [state, setState] = (0, import_miniRedux.useStore)();
|
193
193
|
const engineContext = (0, import_useEngineContext.default)();
|
194
194
|
const { props: engineProps } = engineContext.engine;
|
@@ -209,7 +209,7 @@ var TicketBooking = () => {
|
|
209
209
|
const _timerRef = (0, import_react.useRef)();
|
210
210
|
const _callbackFnRef = (0, import_react.useRef)();
|
211
211
|
(0, import_react.useEffect)(() => {
|
212
|
-
var _a2,
|
212
|
+
var _a2, _b2, _c2, _d, _e, _f;
|
213
213
|
_persistentRef.current = storage.get(`drawer-booking`) === "true" ? true : isTerminal();
|
214
214
|
if (lowcodeRef) {
|
215
215
|
lowcodeRef.onReady(void 0);
|
@@ -234,7 +234,7 @@ var TicketBooking = () => {
|
|
234
234
|
});
|
235
235
|
setState(
|
236
236
|
{
|
237
|
-
amountSymbol: ((_d = (
|
237
|
+
amountSymbol: ((_d = (_c2 = (_b2 = store == null ? void 0 : store.getState) == null ? void 0 : _b2.call(store)) == null ? void 0 : _c2.global) == null ? void 0 : _d.symbol) || "$"
|
238
238
|
},
|
239
239
|
() => {
|
240
240
|
_initStateRef.current = JSON.parse(JSON.stringify(state));
|
@@ -290,10 +290,10 @@ var TicketBooking = () => {
|
|
290
290
|
});
|
291
291
|
};
|
292
292
|
(0, import_react.useEffect)(() => {
|
293
|
-
var _a2,
|
294
|
-
const cartItems = (
|
293
|
+
var _a2, _b2, _c2, _d, _e, _f, _g, _h, _i, _j;
|
294
|
+
const cartItems = (_b2 = (_a2 = state == null ? void 0 : state.modalState) == null ? void 0 : _a2.service) == null ? void 0 : _b2.value;
|
295
295
|
if (!Array.isArray(cartItems) || cartItems.length === 0) {
|
296
|
-
(_d = (
|
296
|
+
(_d = (_c2 = interaction == null ? void 0 : interaction.utils) == null ? void 0 : _c2.postMessageToApp) == null ? void 0 : _d.call(_c2, {
|
297
297
|
module: "cds",
|
298
298
|
key: "cartUpdate",
|
299
299
|
data: {
|
@@ -394,15 +394,15 @@ var TicketBooking = () => {
|
|
394
394
|
fees
|
395
395
|
}
|
396
396
|
});
|
397
|
-
}, [state.modalState]);
|
397
|
+
}, [(_c = (_b = state == null ? void 0 : state.modalState) == null ? void 0 : _b.service) == null ? void 0 : _c.value]);
|
398
398
|
const _setModalState = (props) => {
|
399
|
-
var _a2,
|
399
|
+
var _a2, _b2;
|
400
400
|
console.log("同步state到外层", props);
|
401
401
|
let newVal = { ...props };
|
402
402
|
if (newVal.service) {
|
403
403
|
newVal.service.value = ((_a2 = newVal == null ? void 0 : newVal.service) == null ? void 0 : _a2.value) || [];
|
404
404
|
}
|
405
|
-
console.log((
|
405
|
+
console.log((_b2 = newVal == null ? void 0 : newVal.service) == null ? void 0 : _b2.value, "newVal.service.value");
|
406
406
|
setState({
|
407
407
|
modalState: {
|
408
408
|
...state.modalState,
|
@@ -429,10 +429,10 @@ var TicketBooking = () => {
|
|
429
429
|
}
|
430
430
|
});
|
431
431
|
setTimeout(() => {
|
432
|
-
var _a2,
|
433
|
-
if ((
|
434
|
-
let _list = (_e = (
|
435
|
-
|
432
|
+
var _a2, _b2, _c2, _d, _e;
|
433
|
+
if ((_b2 = (_a2 = state.modalState.service) == null ? void 0 : _a2.value) == null ? void 0 : _b2.length) {
|
434
|
+
let _list = (_e = (_c2 = state.bookingFunctions) == null ? void 0 : _c2.updateServiceDate) == null ? void 0 : _e.call(
|
435
|
+
_c2,
|
436
436
|
(_d = state.modalState.service) == null ? void 0 : _d.value,
|
437
437
|
date,
|
438
438
|
false
|
@@ -448,8 +448,8 @@ var TicketBooking = () => {
|
|
448
448
|
}, 100);
|
449
449
|
};
|
450
450
|
const _setShopOpeningHours = () => {
|
451
|
-
var _a2,
|
452
|
-
let time = (_e = (_d = (
|
451
|
+
var _a2, _b2, _c2, _d, _e;
|
452
|
+
let time = (_e = (_d = (_c2 = (_b2 = (_a2 = store == null ? void 0 : store.getState) == null ? void 0 : _a2.call(store)) == null ? void 0 : _b2.global) == null ? void 0 : _c2.shopDetail) == null ? void 0 : _d.operating_day_boundary) == null ? void 0 : _e.time;
|
453
453
|
if (time) {
|
454
454
|
localStorage.setItem("shopOpeningHours", time);
|
455
455
|
}
|
@@ -466,12 +466,12 @@ var TicketBooking = () => {
|
|
466
466
|
});
|
467
467
|
};
|
468
468
|
const _getBoardConfig = async () => {
|
469
|
-
var _a2,
|
469
|
+
var _a2, _b2, _c2;
|
470
470
|
const { bookingConfigParams } = state;
|
471
471
|
const data = await (0, import_serve.getBookingConfig)({
|
472
472
|
...bookingConfigParams
|
473
473
|
});
|
474
|
-
if ((
|
474
|
+
if ((_c2 = (_b2 = (_a2 = data == null ? void 0 : data.config) == null ? void 0 : _a2.information_tab) == null ? void 0 : _b2.appointment_card) == null ? void 0 : _c2.quick_time) {
|
475
475
|
_getAddTimeProducts();
|
476
476
|
}
|
477
477
|
setState({
|
@@ -565,7 +565,7 @@ var TicketBooking = () => {
|
|
565
565
|
}
|
566
566
|
};
|
567
567
|
const _initBookingData = (type, data) => {
|
568
|
-
var _a2,
|
568
|
+
var _a2, _b2, _c2, _d, _e, _f, _g;
|
569
569
|
let initState = _getInitState({
|
570
570
|
bookingDetail: null,
|
571
571
|
bookingConfig: state.bookingConfig,
|
@@ -587,14 +587,14 @@ var TicketBooking = () => {
|
|
587
587
|
if (type === "create") {
|
588
588
|
if ((_a2 = data == null ? void 0 : data.serviceParams) == null ? void 0 : _a2.start_date) {
|
589
589
|
initState.modalState.date.value = (0, import_dayjs.default)(
|
590
|
-
(
|
590
|
+
(_b2 = data == null ? void 0 : data.serviceParams) == null ? void 0 : _b2.start_date
|
591
591
|
);
|
592
592
|
sessionStorage.setItem(
|
593
593
|
"pisell2.booking.serviceParams",
|
594
594
|
JSON.stringify(data)
|
595
595
|
);
|
596
596
|
} else {
|
597
|
-
let timezone = (_f = (_e = (_d = (
|
597
|
+
let timezone = (_f = (_e = (_d = (_c2 = store == null ? void 0 : store.getState) == null ? void 0 : _c2.call(store)) == null ? void 0 : _d.global) == null ? void 0 : _e.globalConfig) == null ? void 0 : _f.timezone;
|
598
598
|
initState.modalState.date.value = import_dayjs.default.tz(/* @__PURE__ */ new Date(), timezone);
|
599
599
|
sessionStorage.removeItem("pisell2.booking.serviceParams");
|
600
600
|
}
|
@@ -612,9 +612,9 @@ var TicketBooking = () => {
|
|
612
612
|
});
|
613
613
|
};
|
614
614
|
const _rebook = () => {
|
615
|
-
var _a2,
|
615
|
+
var _a2, _b2, _c2;
|
616
616
|
let date = (0, import_utils2.getNextTimeSlice)(
|
617
|
-
((
|
617
|
+
((_c2 = (_b2 = (_a2 = state.bookingConfig) == null ? void 0 : _a2.config) == null ? void 0 : _b2.basic) == null ? void 0 : _c2.service_time.value) || 10
|
618
618
|
);
|
619
619
|
setState({
|
620
620
|
rebookState: {
|
@@ -702,7 +702,7 @@ var TicketBooking = () => {
|
|
702
702
|
);
|
703
703
|
};
|
704
704
|
const _scanBookingDetailResult = async (detail) => {
|
705
|
-
var _a2,
|
705
|
+
var _a2, _b2, _c2;
|
706
706
|
(_a2 = Toast == null ? void 0 : Toast.loading) == null ? void 0 : _a2.call(Toast, import_utils.locales.getText("pisell2.ticket-booking.loading"), 6e4);
|
707
707
|
let result = {};
|
708
708
|
try {
|
@@ -710,7 +710,7 @@ var TicketBooking = () => {
|
|
710
710
|
} catch (err) {
|
711
711
|
}
|
712
712
|
if (!(result == null ? void 0 : result.value)) {
|
713
|
-
(
|
713
|
+
(_b2 = import_antd.message) == null ? void 0 : _b2.error(
|
714
714
|
import_utils.locales.getText("pisell2.ticket-booking.appointment-not-found")
|
715
715
|
);
|
716
716
|
Toast == null ? void 0 : Toast.hide();
|
@@ -719,7 +719,7 @@ var TicketBooking = () => {
|
|
719
719
|
const objDetail = await (0, import_serve.getOrderInfoByCode)({ code: result.value });
|
720
720
|
Toast == null ? void 0 : Toast.hide();
|
721
721
|
if (!(objDetail == null ? void 0 : objDetail.order_id) || (objDetail == null ? void 0 : objDetail.event_id) === 0) {
|
722
|
-
(
|
722
|
+
(_c2 = import_antd.message) == null ? void 0 : _c2.error(
|
723
723
|
import_utils.locales.getText("pisell2.ticket-booking.appointment-not-found")
|
724
724
|
);
|
725
725
|
return;
|
@@ -1,13 +1 @@
|
|
1
|
-
|
2
|
-
interface RechargeState {
|
3
|
-
addWalletCard: any;
|
4
|
-
}
|
5
|
-
export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
|
6
|
-
walletDetailState: RechargeState;
|
7
|
-
} & {
|
8
|
-
dispatch: (params: {
|
9
|
-
type: string;
|
10
|
-
payload: any;
|
11
|
-
}) => void;
|
12
|
-
}>;
|
13
|
-
export {};
|
1
|
+
export declare const Provider: any, Context: any;
|
@@ -1,14 +1 @@
|
|
1
|
-
|
2
|
-
interface RechargeState {
|
3
|
-
total: number;
|
4
|
-
setup?: 'menu' | 'list' | 'detail' | string;
|
5
|
-
}
|
6
|
-
export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
|
7
|
-
state: RechargeState;
|
8
|
-
} & {
|
9
|
-
dispatch: (params: {
|
10
|
-
type: string;
|
11
|
-
payload: any;
|
12
|
-
}) => void;
|
13
|
-
}>;
|
14
|
-
export {};
|
1
|
+
export declare const Provider: any, Context: any;
|
@@ -1,13 +1 @@
|
|
1
|
-
|
2
|
-
interface RechargeState {
|
3
|
-
total: number;
|
4
|
-
}
|
5
|
-
export declare const Provider: (ComponentUi: any) => any, Context: import("react").Context<{
|
6
|
-
state: RechargeState;
|
7
|
-
} & {
|
8
|
-
dispatch: (params: {
|
9
|
-
type: string;
|
10
|
-
payload: any;
|
11
|
-
}) => void;
|
12
|
-
}>;
|
13
|
-
export {};
|
1
|
+
export declare const Provider: any, Context: any;
|