@pisell/private-materials 6.4.79 → 6.4.80
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/booking/components/footer/amount.js +14 -6
- package/es/components/booking/forms/sendModal/useSendModal.d.ts +1 -1
- package/es/components/booking/info/clientVariant/hooks/useClientFn.d.ts +0 -1
- package/es/components/booking/info/date/index.d.ts +0 -1
- package/es/components/booking/info/service/actions/index.d.ts +0 -1
- package/es/components/booking/info/service/addTimeModal/index.d.ts +0 -1
- package/es/components/booking/info/service2/utils.d.ts +1 -1
- package/es/components/booking/info2/service/actions/index.d.ts +0 -1
- package/es/components/booking/info2/service/addService/index.js +1 -1
- package/es/components/booking/materiels/duration/index.d.ts +0 -1
- package/es/components/booking/materiels/holder/index.d.ts +0 -1
- package/es/components/booking/materiels/startTime/index.d.ts +0 -1
- package/es/components/ticketBooking/components/addServiceVariant/addService.js +1 -1
- package/es/components/ticketBooking/utils/index.d.ts +1 -1
- package/es/plus/productSelect/ProductCard/SkuCard/components/MemberPrice/index.d.ts +1 -1
- package/lib/components/booking/components/footer/amount.js +7 -2
- package/lib/components/booking/forms/sendModal/useSendModal.d.ts +1 -1
- package/lib/components/booking/info/clientVariant/hooks/useClientFn.d.ts +0 -1
- package/lib/components/booking/info/date/index.d.ts +0 -1
- package/lib/components/booking/info/service/actions/index.d.ts +0 -1
- package/lib/components/booking/info/service/addTimeModal/index.d.ts +0 -1
- package/lib/components/booking/info/service2/utils.d.ts +1 -1
- package/lib/components/booking/info2/service/actions/index.d.ts +0 -1
- package/lib/components/booking/info2/service/addService/index.js +1 -1
- package/lib/components/booking/materiels/duration/index.d.ts +0 -1
- package/lib/components/booking/materiels/holder/index.d.ts +0 -1
- package/lib/components/booking/materiels/startTime/index.d.ts +0 -1
- package/lib/components/ticketBooking/components/addServiceVariant/addService.js +1 -1
- package/lib/components/ticketBooking/utils/index.d.ts +1 -1
- package/lib/plus/productSelect/ProductCard/SkuCard/components/MemberPrice/index.d.ts +1 -1
- package/package.json +3 -3
- package/es/components/index.d.ts +0 -24
- package/es/components/pay/toC/locales.d.ts +0 -301
- package/es/components/systemSettings/registry/components/ModuleList.d.ts +0 -4
- package/es/components/systemSettings/registry/components/SectionList.d.ts +0 -4
- package/es/components/systemSettings/registry/components/index.d.ts +0 -4
- package/es/components/systemSettings/registry/locales.d.ts +0 -272
- package/es/components/systemSettings/registry/services.d.ts +0 -77
- package/es/components/systemSettings/registry/types.d.ts +0 -126
- package/es/components/systemSettings/registry/utils/typeValidation.d.ts +0 -16
- package/es/components/systemSettings/registry/utils/validators.d.ts +0 -8
- package/lib/components/index.d.ts +0 -24
- package/lib/components/pay/toC/locales.d.ts +0 -301
- package/lib/components/systemSettings/registry/components/ModuleList.d.ts +0 -4
- package/lib/components/systemSettings/registry/components/SectionList.d.ts +0 -4
- package/lib/components/systemSettings/registry/components/index.d.ts +0 -4
- package/lib/components/systemSettings/registry/locales.d.ts +0 -272
- package/lib/components/systemSettings/registry/services.d.ts +0 -77
- package/lib/components/systemSettings/registry/types.d.ts +0 -126
- package/lib/components/systemSettings/registry/utils/typeValidation.d.ts +0 -16
- package/lib/components/systemSettings/registry/utils/validators.d.ts +0 -8
|
@@ -605,7 +605,7 @@ var getDiscountAmount = function getDiscountAmount(discounts) {
|
|
|
605
605
|
* 获取主商品加价减价后的总价 (主商品价格 + 子商品加价减价)
|
|
606
606
|
*/
|
|
607
607
|
var getMainProductTotal = function getMainProductTotal(item) {
|
|
608
|
-
var _item$_extend$other2;
|
|
608
|
+
var _item$_extend$other2, _item$_extend$other3, _item$_extend$other5;
|
|
609
609
|
var total = new Decimal(item._extend.main_product_selling_price || item._extend.price || 0);
|
|
610
610
|
|
|
611
611
|
// 如果主商品没有main_product_selling_price 则通过discount_list计算
|
|
@@ -615,7 +615,15 @@ var getMainProductTotal = function getMainProductTotal(item) {
|
|
|
615
615
|
// 主商品总价 - 主商品折扣金额
|
|
616
616
|
total = total.minus(discountAmount);
|
|
617
617
|
}
|
|
618
|
-
|
|
618
|
+
|
|
619
|
+
// 单规格
|
|
620
|
+
if ((_item$_extend$other2 = item._extend.other) !== null && _item$_extend$other2 !== void 0 && _item$_extend$other2.option && Array.isArray((_item$_extend$other3 = item._extend.other) === null || _item$_extend$other3 === void 0 ? void 0 : _item$_extend$other3.option)) {
|
|
621
|
+
var _item$_extend$other4;
|
|
622
|
+
total = total.add((_item$_extend$other4 = item._extend.other) === null || _item$_extend$other4 === void 0 ? void 0 : _item$_extend$other4.option.reduce(function (t, option) {
|
|
623
|
+
return t.add(new Decimal(option.price || 0).mul(option.num || 1));
|
|
624
|
+
}, new Decimal(0)));
|
|
625
|
+
}
|
|
626
|
+
var _iterator8 = _createForOfIteratorHelper(((_item$_extend$other5 = item._extend.other) === null || _item$_extend$other5 === void 0 ? void 0 : _item$_extend$other5.bundle) || []),
|
|
619
627
|
_step8;
|
|
620
628
|
try {
|
|
621
629
|
for (_iterator8.s(); !(_step8 = _iterator8.n()).done;) {
|
|
@@ -650,11 +658,11 @@ var clearSurchargeFee = function clearSurchargeFee(state) {
|
|
|
650
658
|
_step9;
|
|
651
659
|
try {
|
|
652
660
|
for (_iterator9.s(); !(_step9 = _iterator9.n()).done;) {
|
|
653
|
-
var _item$_extend$
|
|
661
|
+
var _item$_extend$other6;
|
|
654
662
|
var item = _step9.value;
|
|
655
663
|
item._extend.surcharge_fee = 0;
|
|
656
664
|
item._extend.relation_surcharge_ids = [];
|
|
657
|
-
var _iterator10 = _createForOfIteratorHelper(((_item$_extend$
|
|
665
|
+
var _iterator10 = _createForOfIteratorHelper(((_item$_extend$other6 = item._extend.other) === null || _item$_extend$other6 === void 0 ? void 0 : _item$_extend$other6.bundle) || []),
|
|
658
666
|
_step10;
|
|
659
667
|
try {
|
|
660
668
|
for (_iterator10.s(); !(_step10 = _iterator10.n()).done;) {
|
|
@@ -787,7 +795,7 @@ var getSurcharge = function getSurcharge(state, options) {
|
|
|
787
795
|
_step14;
|
|
788
796
|
try {
|
|
789
797
|
for (_iterator14.s(); !(_step14 = _iterator14.n()).done;) {
|
|
790
|
-
var _item$_extend$
|
|
798
|
+
var _item$_extend$other7;
|
|
791
799
|
var item = _step14.value;
|
|
792
800
|
// 主商品符合附加费条件
|
|
793
801
|
if (isProductMatchSurchargeCondition({
|
|
@@ -814,7 +822,7 @@ var getSurcharge = function getSurcharge(state, options) {
|
|
|
814
822
|
});
|
|
815
823
|
}
|
|
816
824
|
// 遍历子商品 原价商品符合附加费条件
|
|
817
|
-
var _iterator15 = _createForOfIteratorHelper(((_item$_extend$
|
|
825
|
+
var _iterator15 = _createForOfIteratorHelper(((_item$_extend$other7 = item._extend.other) === null || _item$_extend$other7 === void 0 ? void 0 : _item$_extend$other7.bundle) || []),
|
|
818
826
|
_step15;
|
|
819
827
|
try {
|
|
820
828
|
for (_iterator15.s(); !(_step15 = _iterator15.n()).done;) {
|
|
@@ -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;
|
|
@@ -248,4 +248,4 @@ export declare const updateAppointmentServicePrice: (state: any, { start_date, e
|
|
|
248
248
|
* @Author: WangHan
|
|
249
249
|
* @Date: 2024-12-24 11:32
|
|
250
250
|
*/
|
|
251
|
-
export declare const updateServicePrice: (state: any) => never[]
|
|
251
|
+
export declare const updateServicePrice: (state: any) => Promise<any> | never[];
|
|
@@ -302,7 +302,7 @@ var Info = function Info(props) {
|
|
|
302
302
|
},
|
|
303
303
|
new: 1
|
|
304
304
|
});
|
|
305
|
-
cacheItem._extend.price = getMainPrice(
|
|
305
|
+
cacheItem._extend.price = getMainPrice(cacheItem, _detail.price);
|
|
306
306
|
var _total = getProductTotalPrice(cacheItem);
|
|
307
307
|
// 用于折扣 可修改
|
|
308
308
|
cacheItem._extend.total = _total;
|
|
@@ -293,7 +293,7 @@ var AddSerivce = function AddSerivce(props) {
|
|
|
293
293
|
},
|
|
294
294
|
new: 1
|
|
295
295
|
});
|
|
296
|
-
cacheItem._extend.price = getMainPrice(
|
|
296
|
+
cacheItem._extend.price = getMainPrice(cacheItem, _detail.price);
|
|
297
297
|
_total = getProductTotalPrice(cacheItem); // 用于折扣 可修改
|
|
298
298
|
cacheItem._extend.total = _total;
|
|
299
299
|
// 用于储存原价
|
|
@@ -41,7 +41,7 @@ declare type ScanData = {
|
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
43
|
export declare const formatScanCustomer: (data: ScanData) => {
|
|
44
|
-
searchType: "
|
|
44
|
+
searchType: "customer" | "product" | "wallet" | "walletPass" | "local_product";
|
|
45
45
|
data: any;
|
|
46
46
|
scanCode: string;
|
|
47
47
|
} | null;
|
|
@@ -3,5 +3,5 @@ import { ProductCardConfig } from '../../type';
|
|
|
3
3
|
import './index.less';
|
|
4
4
|
declare const MemberPrice: ({ props }: {
|
|
5
5
|
props: ProductCardConfig;
|
|
6
|
-
}) => string | number | true |
|
|
6
|
+
}) => string | number | true | React.ReactFragment | JSX.Element | null;
|
|
7
7
|
export default MemberPrice;
|
|
@@ -374,13 +374,18 @@ var getDiscountAmount = (discounts) => {
|
|
|
374
374
|
}, new import_decimal.default(0)).toNumber();
|
|
375
375
|
};
|
|
376
376
|
var getMainProductTotal = (item) => {
|
|
377
|
-
var _a;
|
|
377
|
+
var _a, _b, _c, _d;
|
|
378
378
|
let total = new import_decimal.default(item._extend.main_product_selling_price || item._extend.price || 0);
|
|
379
379
|
if (!item._extend.main_product_selling_price) {
|
|
380
380
|
const discountAmount = getDiscountAmount(item.discount_list);
|
|
381
381
|
total = total.minus(discountAmount);
|
|
382
382
|
}
|
|
383
|
-
|
|
383
|
+
if (((_a = item._extend.other) == null ? void 0 : _a.option) && Array.isArray((_b = item._extend.other) == null ? void 0 : _b.option)) {
|
|
384
|
+
total = total.add((_c = item._extend.other) == null ? void 0 : _c.option.reduce((t, option) => {
|
|
385
|
+
return t.add(new import_decimal.default(option.price || 0).mul(option.num || 1));
|
|
386
|
+
}, new import_decimal.default(0)));
|
|
387
|
+
}
|
|
388
|
+
for (let bundleItem of ((_d = item._extend.other) == null ? void 0 : _d.bundle) || []) {
|
|
384
389
|
if (getBundleItemIsMarkupOrDiscountPrice(bundleItem)) {
|
|
385
390
|
const discountAmount = getDiscountAmount(bundleItem.discount_list);
|
|
386
391
|
const bundleItemPrice = new import_decimal.default(bundleItem.bundle_selling_price ?? bundleItem.price ?? 0);
|
|
@@ -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;
|
|
@@ -248,4 +248,4 @@ export declare const updateAppointmentServicePrice: (state: any, { start_date, e
|
|
|
248
248
|
* @Author: WangHan
|
|
249
249
|
* @Date: 2024-12-24 11:32
|
|
250
250
|
*/
|
|
251
|
-
export declare const updateServicePrice: (state: any) => never[]
|
|
251
|
+
export declare const updateServicePrice: (state: any) => Promise<any> | never[];
|
|
@@ -248,7 +248,7 @@ var Info = (props) => {
|
|
|
248
248
|
},
|
|
249
249
|
new: 1
|
|
250
250
|
};
|
|
251
|
-
cacheItem._extend.price = (0, import_utils3.getMainPrice)(
|
|
251
|
+
cacheItem._extend.price = (0, import_utils3.getMainPrice)(cacheItem, _detail.price);
|
|
252
252
|
let _total = (0, import_utils3.getProductTotalPrice)(cacheItem);
|
|
253
253
|
cacheItem._extend.total = _total;
|
|
254
254
|
cacheItem._extend.origin_total = _total;
|
|
@@ -268,7 +268,7 @@ var AddSerivce = (props) => {
|
|
|
268
268
|
},
|
|
269
269
|
new: 1
|
|
270
270
|
};
|
|
271
|
-
cacheItem._extend.price = (0, import_utils2.getMainPrice)(
|
|
271
|
+
cacheItem._extend.price = (0, import_utils2.getMainPrice)(cacheItem, _detail.price);
|
|
272
272
|
let _total = (0, import_utils2.getProductTotalPrice)(cacheItem);
|
|
273
273
|
cacheItem._extend.total = _total;
|
|
274
274
|
cacheItem._extend.origin_total = _total;
|
|
@@ -41,7 +41,7 @@ declare type ScanData = {
|
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
43
|
export declare const formatScanCustomer: (data: ScanData) => {
|
|
44
|
-
searchType: "
|
|
44
|
+
searchType: "customer" | "product" | "wallet" | "walletPass" | "local_product";
|
|
45
45
|
data: any;
|
|
46
46
|
scanCode: string;
|
|
47
47
|
} | null;
|
|
@@ -3,5 +3,5 @@ import { ProductCardConfig } from '../../type';
|
|
|
3
3
|
import './index.less';
|
|
4
4
|
declare const MemberPrice: ({ props }: {
|
|
5
5
|
props: ProductCardConfig;
|
|
6
|
-
}) => string | number | true |
|
|
6
|
+
}) => string | number | true | React.ReactFragment | JSX.Element | null;
|
|
7
7
|
export default MemberPrice;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/private-materials",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.80",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"@react-spring/web": "^9.6.1",
|
|
63
63
|
"@use-gesture/react": "^10.3.1",
|
|
64
64
|
"@pisell/utils": "3.0.2",
|
|
65
|
-
"@pisell/
|
|
65
|
+
"@pisell/materials": "6.4.21",
|
|
66
66
|
"@pisell/date-picker": "3.0.7",
|
|
67
|
-
"@pisell/
|
|
67
|
+
"@pisell/icon": "0.0.11"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"react": "^18.0.0",
|
package/es/components/index.d.ts
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import Login from './login';
|
|
2
|
-
import BookingInfo from './booking/info/index';
|
|
3
|
-
import Booking from './booking';
|
|
4
|
-
import BookingNotes from './booking/notes';
|
|
5
|
-
import BookingAddons from './booking/addons';
|
|
6
|
-
import BookingForms from './booking/forms';
|
|
7
|
-
import Schedules from './schedules';
|
|
8
|
-
import ProductExtension from './productExtension';
|
|
9
|
-
import RuleSetting from './ruleSetting';
|
|
10
|
-
import TaxSelect from './taxSelect';
|
|
11
|
-
import ToCPay from './pay/toC';
|
|
12
|
-
import WalletList from './walletList';
|
|
13
|
-
import Wallet from './wallet';
|
|
14
|
-
import WorkspaceListDetail from './workSpaceListDetail/';
|
|
15
|
-
import WorkspaceList from './workSpaceList';
|
|
16
|
-
import PisellSelectCustomerModal from './pisellSelectCustomerModal';
|
|
17
|
-
import SubTotal from './subTotal';
|
|
18
|
-
import EditBookingModal from './booking/editBookingModal';
|
|
19
|
-
import StepController from './stepController';
|
|
20
|
-
import PinModal from './pinModal';
|
|
21
|
-
import PinVerifyModal from './pinVerifyModal';
|
|
22
|
-
import { OAuthConfig, SaaSAdminAuth, OrgAdminAuth, CustomerAuth, CustomerOAuthConfig, DeviceAuth, POSOperatorAuth, OnlineShopAuth, SaaSManagermentAuth } from './authentication/admin';
|
|
23
|
-
import Registry from './systemSettings/registry';
|
|
24
|
-
export { Login, BookingInfo, Booking, BookingNotes, BookingAddons, BookingForms, Schedules, ProductExtension, RuleSetting, TaxSelect, ToCPay, PisellSelectCustomerModal, Wallet, WalletList, WorkspaceList, WorkspaceListDetail, SubTotal, EditBookingModal, StepController, PinModal, PinVerifyModal, OAuthConfig, SaaSAdminAuth, OrgAdminAuth, CustomerAuth, CustomerOAuthConfig, DeviceAuth, POSOperatorAuth, OnlineShopAuth, SaaSManagermentAuth, Registry, };
|
|
@@ -1,301 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
en: {
|
|
3
|
-
'tocPay.text.checkout': string;
|
|
4
|
-
'tocPay.text.total': string;
|
|
5
|
-
'tocPay.text.completePaymentIn': string;
|
|
6
|
-
'tocPay.text.paymentInstruction': string;
|
|
7
|
-
'tocPay.text.serviceCharge': string;
|
|
8
|
-
'tocPay.text.noAvailablePaymentMethods': string;
|
|
9
|
-
'tocPay.text.paymentMethod': string;
|
|
10
|
-
'tocPay.text.connectingApplePay': string;
|
|
11
|
-
'tocPay.text.connectingGooglePay': string;
|
|
12
|
-
'tocPay.text.enterName': string;
|
|
13
|
-
'tocPay.text.enterValidName': string;
|
|
14
|
-
'tocPay.text.enterCardNumber': string;
|
|
15
|
-
'tocPay.text.enterValidCardNumber': string;
|
|
16
|
-
'tocPay.text.enterExpirationDate': string;
|
|
17
|
-
'tocPay.text.enterCVV': string;
|
|
18
|
-
'tocPay.text.enterValidCVV': string;
|
|
19
|
-
'tocPay.text.addCard': string;
|
|
20
|
-
'tocPay.text.creditorDebitCard': string;
|
|
21
|
-
'tocPay.text.addCreditOrDebitCard': string;
|
|
22
|
-
'tocPay.text.cardNumber': string;
|
|
23
|
-
'tocPay.text.incorrectCardNumber': string;
|
|
24
|
-
'tocPay.text.expiration': string;
|
|
25
|
-
'tocPay.text.incorrectExpiryDate': string;
|
|
26
|
-
'tocPay.text.securityCode': string;
|
|
27
|
-
'tocPay.text.incorrectSecurityCode': string;
|
|
28
|
-
'tocPay.text.cardholderName': string;
|
|
29
|
-
'tocPay.text.enterEnglishName': string;
|
|
30
|
-
'tocPay.text.incorrectName': string;
|
|
31
|
-
'tocPay.text.saveCardForNextTime': string;
|
|
32
|
-
'tocPay.text.secureBankInfo': string;
|
|
33
|
-
'tocPay.text.pay': string;
|
|
34
|
-
'tocPay.text.surcharge': string;
|
|
35
|
-
'tocPay.text.done': string;
|
|
36
|
-
'tocPay.text.manageCard': string;
|
|
37
|
-
'tocPay.text.waitingForBankVerification': string;
|
|
38
|
-
'tocPay.text.successBack': string;
|
|
39
|
-
'tocPay.text.redirectingToAlipay': string;
|
|
40
|
-
'tocPay.text.redirectingToPaypal': string;
|
|
41
|
-
'tocPay.text.redirectingToWeChatPay': string;
|
|
42
|
-
'tocPay.text.submit': string;
|
|
43
|
-
'tocPay.text.clickSubmitToComplete': string;
|
|
44
|
-
'tocPay.text.noExtraPayNeeded': string;
|
|
45
|
-
'tocPay.text.continuePayment': string;
|
|
46
|
-
'tocPay.text.prompt': string;
|
|
47
|
-
'tocPay.text.confirmLeave': string;
|
|
48
|
-
'tocPay.text.continuePay': string;
|
|
49
|
-
'tocPay.text.leave': string;
|
|
50
|
-
'tocPay.text.getParamsFail': string;
|
|
51
|
-
'tocPay.text.walletPass': string;
|
|
52
|
-
'tocPay.text.toUse': string;
|
|
53
|
-
'tocPay.text.searchResult': string;
|
|
54
|
-
'tocPay.text.select': string;
|
|
55
|
-
'tocPay.text.couponCodesAdded': string;
|
|
56
|
-
'tocPay.text.redeem': string;
|
|
57
|
-
'tocPay.text.howToPay': string;
|
|
58
|
-
'tocPay.text.congrats': string;
|
|
59
|
-
'tocPay.text.creditHaveBeen': string;
|
|
60
|
-
'tocPay.text.walletPassCodesTitle': string;
|
|
61
|
-
'tocPay.text.scanBarQrCode': string;
|
|
62
|
-
'tocPay.text.enterCodes': string;
|
|
63
|
-
'tocPay.text.searchDescribe': string;
|
|
64
|
-
'tocPay.text.walletPassEmpty': (walletName: string) => string;
|
|
65
|
-
'tocPay.text.walletPassDisabled': string;
|
|
66
|
-
'tocPay.text.walletPassPermanent': string;
|
|
67
|
-
'tocPay.text.walletPassCompleteTitle': string;
|
|
68
|
-
'tocPay.text.walletPassNoExtraPay': string;
|
|
69
|
-
'tocPay.text.walletCanPay': string;
|
|
70
|
-
'tocPay.text.paymentInstructions': string;
|
|
71
|
-
'tocPay.text.walletSearchEmpty': string;
|
|
72
|
-
'tocPay.text.detectIncognitoConfirm': string;
|
|
73
|
-
'tocPay.text.copyLink': string;
|
|
74
|
-
'tocPay.text.copySuccess': string;
|
|
75
|
-
'tocPay.text.walletName': (shopName: string) => string;
|
|
76
|
-
'tocPay.text.bestValueFound': string;
|
|
77
|
-
'tocPay.text.welcomeToUseWalletPass': (walletName: string) => string;
|
|
78
|
-
'tocPay.text.totalSavings': string;
|
|
79
|
-
'tocPay.text.bestCombination': (walletName: string) => string;
|
|
80
|
-
'tocPay.text.recommended': string;
|
|
81
|
-
'tocPay.text.edit': string;
|
|
82
|
-
'tocPay.text.confirm': string;
|
|
83
|
-
'tocPay.text.unusedAndContinueToPayment': string;
|
|
84
|
-
'tocPay.text.walletPassAvailable': (walletName: string) => string;
|
|
85
|
-
'tocPay.text.useWalletPass': (walletName: string) => string;
|
|
86
|
-
'tocPay.text.useWalletPassAdd': (walletName: string) => string;
|
|
87
|
-
'tocPay.text.editWalletPass': (walletName: string) => string;
|
|
88
|
-
'tocPay.text.skipAndContinueToPayment': string;
|
|
89
|
-
'tocPay.text.youMightHaveAnEligibleWalletPass': (walletName: string) => string;
|
|
90
|
-
'tocPay.text.checkIfYouHaveAnyPointsCardRechargableCardOrVouchersToUse': string;
|
|
91
|
-
'tocPay.text.addPointsCard': string;
|
|
92
|
-
'tocPay.text.hasNoWalletPassAmount': string;
|
|
93
|
-
'tocPay.text.multipleSelectionAvailable': string;
|
|
94
|
-
'tocPay.text.youCanSelectMultipleWalletPassesToCombineForPayment': (walletName: string) => string;
|
|
95
|
-
'tocPay.text.bestValueCombination': string;
|
|
96
|
-
'tocPay.text.viewDetail': string;
|
|
97
|
-
'tocPay.text.returnAndSelectOtherPaymentMethod': string;
|
|
98
|
-
'tocPay.text.paymentCompletedAndViewOrder': string;
|
|
99
|
-
'tocPay.text.paymentFailed': string;
|
|
100
|
-
'tocPay.text.weAreVerifyingYourPaymentPleaseCheckYourOrderStatusLater': string;
|
|
101
|
-
};
|
|
102
|
-
'zh-CN': {
|
|
103
|
-
'tocPay.text.checkout': string;
|
|
104
|
-
'tocPay.text.total': string;
|
|
105
|
-
'tocPay.text.completePaymentIn': string;
|
|
106
|
-
'tocPay.text.paymentInstructions': string;
|
|
107
|
-
'tocPay.text.serviceCharge': string;
|
|
108
|
-
'tocPay.text.noAvailablePaymentMethods': string;
|
|
109
|
-
'tocPay.text.paymentMethod': string;
|
|
110
|
-
'tocPay.text.connectingApplePay': string;
|
|
111
|
-
'tocPay.text.connectingGooglePay': string;
|
|
112
|
-
'tocPay.text.enterName': string;
|
|
113
|
-
'tocPay.text.enterValidName': string;
|
|
114
|
-
'tocPay.text.enterCardNumber': string;
|
|
115
|
-
'tocPay.text.enterValidCardNumber': string;
|
|
116
|
-
'tocPay.text.enterExpirationDate': string;
|
|
117
|
-
'tocPay.text.enterCVV': string;
|
|
118
|
-
'tocPay.text.enterValidCVV': string;
|
|
119
|
-
'tocPay.text.addCard': string;
|
|
120
|
-
'tocPay.text.creditorDebitCard': string;
|
|
121
|
-
'tocPay.text.addCreditOrDebitCard': string;
|
|
122
|
-
'tocPay.text.cardNumber': string;
|
|
123
|
-
'tocPay.text.incorrectCardNumber': string;
|
|
124
|
-
'tocPay.text.expiration': string;
|
|
125
|
-
'tocPay.text.incorrectExpiryDate': string;
|
|
126
|
-
'tocPay.text.securityCode': string;
|
|
127
|
-
'tocPay.text.incorrectSecurityCode': string;
|
|
128
|
-
'tocPay.text.cardholderName': string;
|
|
129
|
-
'tocPay.text.enterEnglishName': string;
|
|
130
|
-
'tocPay.text.incorrectName': string;
|
|
131
|
-
'tocPay.text.saveCardForNextTime': string;
|
|
132
|
-
'tocPay.text.secureBankInfo': string;
|
|
133
|
-
'tocPay.text.pay': string;
|
|
134
|
-
'tocPay.text.surcharge': string;
|
|
135
|
-
'tocPay.text.done': string;
|
|
136
|
-
'tocPay.text.manageCard': string;
|
|
137
|
-
'tocPay.text.waitingForBankVerification': string;
|
|
138
|
-
'tocPay.text.successBack': string;
|
|
139
|
-
'tocPay.text.redirectingToAlipay': string;
|
|
140
|
-
'tocPay.text.redirectingToPaypal': string;
|
|
141
|
-
'tocPay.text.redirectingToWeChatPay': string;
|
|
142
|
-
'tocPay.text.submit': string;
|
|
143
|
-
'tocPay.text.clickSubmitToComplete': string;
|
|
144
|
-
'tocPay.text.noExtraPayNeeded': string;
|
|
145
|
-
'tocPay.text.continuePayment': string;
|
|
146
|
-
'tocPay.text.prompt': string;
|
|
147
|
-
'tocPay.text.confirmLeave': string;
|
|
148
|
-
'tocPay.text.continuePay': string;
|
|
149
|
-
'tocPay.text.leave': string;
|
|
150
|
-
'tocPay.text.getParamsFail': string;
|
|
151
|
-
'tocPay.text.walletPass': string;
|
|
152
|
-
'tocPay.text.toUse': string;
|
|
153
|
-
'tocPay.text.searchResult': string;
|
|
154
|
-
'tocPay.text.select': string;
|
|
155
|
-
'tocPay.text.couponCodesAdded': string;
|
|
156
|
-
'tocPay.text.redeem': string;
|
|
157
|
-
'tocPay.text.howToPay': string;
|
|
158
|
-
'tocPay.text.congrats': string;
|
|
159
|
-
'tocPay.text.creditHaveBeen': string;
|
|
160
|
-
'tocPay.text.walletPassCodesTitle': string;
|
|
161
|
-
'tocPay.text.scanBarQrCode': string;
|
|
162
|
-
'tocPay.text.enterCodes': string;
|
|
163
|
-
'tocPay.text.searchDescribe': string;
|
|
164
|
-
'tocPay.text.walletPassEmpty': (walletName: string) => string;
|
|
165
|
-
'tocPay.text.walletPassDisabled': string;
|
|
166
|
-
'tocPay.text.walletPassPermanent': string;
|
|
167
|
-
'tocPay.text.walletPassCompleteTitle': string;
|
|
168
|
-
'tocPay.text.walletPassNoExtraPay': string;
|
|
169
|
-
'tocPay.text.walletCanPay': string;
|
|
170
|
-
'tocPay.text.walletSearchEmpty': string;
|
|
171
|
-
'tocPay.text.detectIncognitoConfirm': string;
|
|
172
|
-
'tocPay.text.copyLink': string;
|
|
173
|
-
'tocPay.text.copySuccess': string;
|
|
174
|
-
'tocPay.text.walletName': (shopName: string) => string;
|
|
175
|
-
'tocPay.text.bestValueFound': string;
|
|
176
|
-
'tocPay.text.welcomeToUseWalletPass': (walletName: string) => string;
|
|
177
|
-
'tocPay.text.totalSavings': string;
|
|
178
|
-
'tocPay.text.bestCombination': (walletName: string) => string;
|
|
179
|
-
'tocPay.text.recommended': string;
|
|
180
|
-
'tocPay.text.edit': string;
|
|
181
|
-
'tocPay.text.confirm': string;
|
|
182
|
-
'tocPay.text.unusedAndContinueToPayment': string;
|
|
183
|
-
'tocPay.text.walletPassAvailable': (walletName: string) => string;
|
|
184
|
-
'tocPay.text.useWalletPass': (walletName: string) => string;
|
|
185
|
-
'tocPay.text.useWalletPassAdd': (walletName: string) => string;
|
|
186
|
-
'tocPay.text.editWalletPass': (walletName: string) => string;
|
|
187
|
-
'tocPay.text.skipAndContinueToPayment': string;
|
|
188
|
-
'tocPay.text.youMightHaveAnEligibleWalletPass': (walletName: string) => string;
|
|
189
|
-
'tocPay.text.checkIfYouHaveAnyPointsCardRechargableCardOrVouchersToUse': string;
|
|
190
|
-
'tocPay.text.addPointsCard': string;
|
|
191
|
-
'tocPay.text.hasNoWalletPassAmount': string;
|
|
192
|
-
'tocPay.text.multipleSelectionAvailable': string;
|
|
193
|
-
'tocPay.text.youCanSelectMultipleWalletPassesToCombineForPayment': (walletName: string) => string;
|
|
194
|
-
'tocPay.text.bestValueCombination': string;
|
|
195
|
-
'tocPay.text.viewDetail': string;
|
|
196
|
-
'tocPay.text.returnAndSelectOtherPaymentMethod': string;
|
|
197
|
-
'tocPay.text.paymentCompletedAndViewOrder': string;
|
|
198
|
-
'tocPay.text.paymentFailed': string;
|
|
199
|
-
'tocPay.text.weAreVerifyingYourPaymentPleaseCheckYourOrderStatusLater': string;
|
|
200
|
-
};
|
|
201
|
-
'zh-HK': {
|
|
202
|
-
'tocPay.text.checkout': string;
|
|
203
|
-
'tocPay.text.total': string;
|
|
204
|
-
'tocPay.text.completePaymentIn': string;
|
|
205
|
-
'tocPay.text.paymentInstructions': string;
|
|
206
|
-
'tocPay.text.serviceCharge': string;
|
|
207
|
-
'tocPay.text.noAvailablePaymentMethods': string;
|
|
208
|
-
'tocPay.text.paymentMethod': string;
|
|
209
|
-
'tocPay.text.connectingApplePay': string;
|
|
210
|
-
'tocPay.text.connectingGooglePay': string;
|
|
211
|
-
'tocPay.text.enterName': string;
|
|
212
|
-
'tocPay.text.enterValidName': string;
|
|
213
|
-
'tocPay.text.enterCardNumber': string;
|
|
214
|
-
'tocPay.text.enterValidCardNumber': string;
|
|
215
|
-
'tocPay.text.enterExpirationDate': string;
|
|
216
|
-
'tocPay.text.enterCVV': string;
|
|
217
|
-
'tocPay.text.enterValidCVV': string;
|
|
218
|
-
'tocPay.text.addCard': string;
|
|
219
|
-
'tocPay.text.creditorDebitCard': string;
|
|
220
|
-
'tocPay.text.addCreditOrDebitCard': string;
|
|
221
|
-
'tocPay.text.cardNumber': string;
|
|
222
|
-
'tocPay.text.incorrectCardNumber': string;
|
|
223
|
-
'tocPay.text.expiration': string;
|
|
224
|
-
'tocPay.text.incorrectExpiryDate': string;
|
|
225
|
-
'tocPay.text.securityCode': string;
|
|
226
|
-
'tocPay.text.incorrectSecurityCode': string;
|
|
227
|
-
'tocPay.text.cardholderName': string;
|
|
228
|
-
'tocPay.text.enterEnglishName': string;
|
|
229
|
-
'tocPay.text.incorrectName': string;
|
|
230
|
-
'tocPay.text.saveCardForNextTime': string;
|
|
231
|
-
'tocPay.text.secureBankInfo': string;
|
|
232
|
-
'tocPay.text.pay': string;
|
|
233
|
-
'tocPay.text.surcharge': string;
|
|
234
|
-
'tocPay.text.done': string;
|
|
235
|
-
'tocPay.text.manageCard': string;
|
|
236
|
-
'tocPay.text.waitingForBankVerification': string;
|
|
237
|
-
'tocPay.text.successBack': string;
|
|
238
|
-
'tocPay.text.redirectingToAlipay': string;
|
|
239
|
-
'tocPay.text.redirectingToPaypal': string;
|
|
240
|
-
'tocPay.text.redirectingToWeChatPay': string;
|
|
241
|
-
'tocPay.text.submit': string;
|
|
242
|
-
'tocPay.text.clickSubmitToComplete': string;
|
|
243
|
-
'tocPay.text.noExtraPayNeeded': string;
|
|
244
|
-
'tocPay.text.continuePayment': string;
|
|
245
|
-
'tocPay.text.prompt': string;
|
|
246
|
-
'tocPay.text.confirmLeave': string;
|
|
247
|
-
'tocPay.text.continuePay': string;
|
|
248
|
-
'tocPay.text.leave': string;
|
|
249
|
-
'tocPay.text.getParamsFail': string;
|
|
250
|
-
'tocPay.text.walletPass': string;
|
|
251
|
-
'tocPay.text.toUse': string;
|
|
252
|
-
'tocPay.text.searchResult': string;
|
|
253
|
-
'tocPay.text.select': string;
|
|
254
|
-
'tocPay.text.couponCodesAdded': string;
|
|
255
|
-
'tocPay.text.redeem': string;
|
|
256
|
-
'tocPay.text.howToPay': string;
|
|
257
|
-
'tocPay.text.congrats': string;
|
|
258
|
-
'tocPay.text.creditHaveBeen': string;
|
|
259
|
-
'tocPay.text.walletPassCodesTitle': string;
|
|
260
|
-
'tocPay.text.scanBarQrCode': string;
|
|
261
|
-
'tocPay.text.enterCodes': string;
|
|
262
|
-
'tocPay.text.searchDescribe': string;
|
|
263
|
-
'tocPay.text.walletPassEmpty': (walletName: string) => string;
|
|
264
|
-
'tocPay.text.walletPassDisabled': string;
|
|
265
|
-
'tocPay.text.walletPassPermanent': string;
|
|
266
|
-
'tocPay.text.walletPassCompleteTitle': string;
|
|
267
|
-
'tocPay.text.walletPassNoExtraPay': string;
|
|
268
|
-
'tocPay.text.walletCanPay': string;
|
|
269
|
-
'tocPay.text.walletSearchEmpty': string;
|
|
270
|
-
'tocPay.text.detectIncognitoConfirm': string;
|
|
271
|
-
'tocPay.text.copyLink': string;
|
|
272
|
-
'tocPay.text.copySuccess': string;
|
|
273
|
-
'tocPay.text.walletName': (shopName: string) => string;
|
|
274
|
-
'tocPay.text.bestValueFound': string;
|
|
275
|
-
'tocPay.text.welcomeToUseWalletPass': (walletName: string) => string;
|
|
276
|
-
'tocPay.text.totalSavings': string;
|
|
277
|
-
'tocPay.text.bestCombination': (walletName: string) => string;
|
|
278
|
-
'tocPay.text.recommended': string;
|
|
279
|
-
'tocPay.text.edit': string;
|
|
280
|
-
'tocPay.text.confirm': string;
|
|
281
|
-
'tocPay.text.unusedAndContinueToPayment': string;
|
|
282
|
-
'tocPay.text.walletPassAvailable': (walletName: string) => string;
|
|
283
|
-
'tocPay.text.useWalletPass': (walletName: string) => string;
|
|
284
|
-
'tocPay.text.useWalletPassAdd': (walletName: string) => string;
|
|
285
|
-
'tocPay.text.editWalletPass': (walletName: string) => string;
|
|
286
|
-
'tocPay.text.skipAndContinueToPayment': string;
|
|
287
|
-
'tocPay.text.youMightHaveAnEligibleWalletPass': (walletName: string) => string;
|
|
288
|
-
'tocPay.text.checkIfYouHaveAnyPointsCardRechargableCardOrVouchersToUse': string;
|
|
289
|
-
'tocPay.text.addPointsCard': string;
|
|
290
|
-
'tocPay.text.hasNoWalletPassAmount': string;
|
|
291
|
-
'tocPay.text.multipleSelectionAvailable': string;
|
|
292
|
-
'tocPay.text.youCanSelectMultipleWalletPassesToCombineForPayment': (walletName: string) => string;
|
|
293
|
-
'tocPay.text.bestValueCombination': string;
|
|
294
|
-
'tocPay.text.viewDetail': string;
|
|
295
|
-
'tocPay.text.returnAndSelectOtherPaymentMethod': string;
|
|
296
|
-
'tocPay.text.paymentCompletedAndViewOrder': string;
|
|
297
|
-
'tocPay.text.paymentFailed': string;
|
|
298
|
-
'tocPay.text.weAreVerifyingYourPaymentPleaseCheckYourOrderStatusLater': string;
|
|
299
|
-
};
|
|
300
|
-
};
|
|
301
|
-
export default _default;
|