@pisell/private-materials 6.6.49 → 6.6.50
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.css +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +1 -1
- package/es/components/appointmentBooking/components/Voucher/index.js +22 -7
- package/es/components/booking/addons/index.js +3 -2
- package/es/components/booking/components/footer/amount.js +1 -1
- package/es/components/booking/components/footer/index.js +7 -0
- package/es/components/booking/components/footer/utils.d.ts +1 -1
- package/es/components/booking/components/footer/utils.js +7 -5
- package/es/components/booking/components/voucher/index.js +6 -0
- package/es/components/booking/components/voucher/index.less +4 -1
- package/es/components/booking/components/voucherModal/index.less +1 -0
- package/es/components/booking/info2/service/editService/index.js +9 -3
- package/es/components/checkout/components/WalletPassModule/index.js +1 -0
- package/es/components/checkout/components/WalletPassModule/utils.d.ts +1 -0
- package/es/components/checkout/components/WalletPassModule/utils.js +17 -3
- package/es/components/checkout/hooks/useWalletPass.d.ts +1 -1
- package/es/components/checkout/hooks/useWalletPass.js +316 -192
- package/es/components/eftposPay/hooks.d.ts +1 -1
- package/es/components/eftposPay/store/index.d.ts +2 -2
- package/es/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +5 -0
- package/es/components/pay/toC/PaymentMethods/WalletPass/index.js +166 -145
- package/es/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +6 -0
- package/es/components/pay/toC/PaymentMethods/WalletPass/utils.js +3 -3
- package/es/components/pay/toC/WalletPassBlock/index.js +3 -1
- package/es/components/pay/toC/index.js +66 -27
- package/es/components/pay/toC/model.d.ts +1 -0
- package/es/components/pay/toC/serve.d.ts +18 -0
- package/es/components/pay/toC/serve.js +29 -1
- package/es/components/pay/toC/utils.d.ts +2 -2
- package/es/components/pay/toC/utils.js +4 -0
- package/es/components/ticketBooking/components/addServiceVariant/addService.js +7 -4
- package/lib/components/appointmentBooking/components/Voucher/index.js +10 -2
- package/lib/components/booking/addons/index.js +3 -2
- package/lib/components/booking/components/footer/amount.js +1 -1
- package/lib/components/booking/components/footer/index.js +9 -0
- package/lib/components/booking/components/footer/utils.d.ts +1 -1
- package/lib/components/booking/components/footer/utils.js +5 -3
- package/lib/components/booking/components/voucher/index.js +6 -0
- package/lib/components/booking/components/voucher/index.less +4 -1
- package/lib/components/booking/components/voucherModal/index.less +1 -0
- package/lib/components/booking/info2/service/editService/index.js +25 -19
- package/lib/components/checkout/components/WalletPassModule/index.js +1 -0
- package/lib/components/checkout/components/WalletPassModule/utils.d.ts +1 -0
- package/lib/components/checkout/components/WalletPassModule/utils.js +18 -2
- package/lib/components/checkout/hooks/useWalletPass.d.ts +1 -1
- package/lib/components/checkout/hooks/useWalletPass.js +157 -108
- package/lib/components/eftposPay/hooks.d.ts +1 -1
- package/lib/components/eftposPay/store/index.d.ts +2 -2
- package/lib/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +5 -0
- package/lib/components/pay/toC/PaymentMethods/WalletPass/index.js +90 -103
- package/lib/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +6 -0
- package/lib/components/pay/toC/PaymentMethods/WalletPass/utils.js +2 -2
- package/lib/components/pay/toC/WalletPassBlock/index.js +3 -1
- package/lib/components/pay/toC/index.js +52 -11
- package/lib/components/pay/toC/model.d.ts +1 -0
- package/lib/components/pay/toC/serve.d.ts +18 -0
- package/lib/components/pay/toC/serve.js +6 -0
- package/lib/components/pay/toC/utils.d.ts +2 -2
- package/lib/components/pay/toC/utils.js +4 -0
- package/lib/components/ticketBooking/components/addServiceVariant/addService.js +11 -7
- package/package.json +1 -1
|
@@ -28,6 +28,8 @@ import { PisellInput, PisellGoodPassCard, PisellText, PisellToast } from '@pisel
|
|
|
28
28
|
import { useAppointmentBooking, useShopDiscount, useAppointmentBookingLogin, useAppointmentBookingAccount } from "../../hooks";
|
|
29
29
|
import "../../../booking/components/voucher/index.less";
|
|
30
30
|
import "./index.less";
|
|
31
|
+
import { useAppointmentBookingContext } from "../../context";
|
|
32
|
+
import { useDebounceFn } from 'ahooks';
|
|
31
33
|
var ShopDiscountHooks = {
|
|
32
34
|
onInited: 'shopDiscount:onInited',
|
|
33
35
|
onDestroy: 'shopDiscount:onDestroy',
|
|
@@ -69,11 +71,19 @@ var VoucherCard = function VoucherCard(props) {
|
|
|
69
71
|
openLoginModal = _useAppointmentBookin.openLoginModal;
|
|
70
72
|
var _useAppointmentBookin2 = useAppointmentBookingAccount(),
|
|
71
73
|
accountLists = _useAppointmentBookin2.accountLists;
|
|
74
|
+
var _useAppointmentBookin3 = useAppointmentBookingContext(),
|
|
75
|
+
summary = _useAppointmentBookin3.summary;
|
|
76
|
+
var originTotal = summary.originTotal,
|
|
77
|
+
total = summary.total;
|
|
72
78
|
var cart = appointmentBooking === null || appointmentBooking === void 0 || (_appointmentBooking$s = appointmentBooking.store) === null || _appointmentBooking$s === void 0 ? void 0 : _appointmentBooking$s.cart;
|
|
73
79
|
var isUserLoggedIn = useMemo(function () {
|
|
74
80
|
var _utils$token, _utils$token$get;
|
|
75
81
|
return !!(utils !== null && utils !== void 0 && (_utils$token = utils.token) !== null && _utils$token !== void 0 && (_utils$token$get = _utils$token.get) !== null && _utils$token$get !== void 0 && _utils$token$get.call(_utils$token)) || false;
|
|
76
82
|
}, [store]);
|
|
83
|
+
useEffect(function () {
|
|
84
|
+
var shopDiscount = pisellos.getModule('shopDiscount');
|
|
85
|
+
shopDiscount.setOriginTotalAmount(originTotal);
|
|
86
|
+
}, [originTotal]);
|
|
77
87
|
var availableData = useMemo(function () {
|
|
78
88
|
return discountList.filter(function (item) {
|
|
79
89
|
return !!item.isAvailable;
|
|
@@ -110,13 +120,18 @@ var VoucherCard = function VoucherCard(props) {
|
|
|
110
120
|
});
|
|
111
121
|
appointmentBooking === null || appointmentBooking === void 0 || (_appointmentBooking$b = appointmentBooking.batchUpdateCart) === null || _appointmentBooking$b === void 0 || _appointmentBooking$b.call(appointmentBooking, items);
|
|
112
122
|
};
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
123
|
+
|
|
124
|
+
// 防抖处理
|
|
125
|
+
var _useDebounceFn = useDebounceFn(function () {
|
|
126
|
+
var _shopDiscount$setBook, _appointmentBooking$o;
|
|
127
|
+
var products = cart === null || cart === void 0 ? void 0 : cart.getItems();
|
|
128
|
+
shopDiscount === null || shopDiscount === void 0 || (_shopDiscount$setBook = shopDiscount.setBookingSubject) === null || _shopDiscount$setBook === void 0 || _shopDiscount$setBook.call(shopDiscount, appointmentBooking === null || appointmentBooking === void 0 || (_appointmentBooking$o = appointmentBooking.otherParams) === null || _appointmentBooking$o === void 0 || (_appointmentBooking$o = _appointmentBooking$o.bookingSetting) === null || _appointmentBooking$o === void 0 ? void 0 : _appointmentBooking$o.bookingSubject);
|
|
129
|
+
var val = shopDiscount.calcDiscount(products);
|
|
130
|
+
batchUpdateCart(val.productList);
|
|
131
|
+
}, {
|
|
132
|
+
wait: 200
|
|
133
|
+
}),
|
|
134
|
+
onCartChange = _useDebounceFn.run;
|
|
120
135
|
var stringifiedHolders = useMemo(function () {
|
|
121
136
|
var _ret;
|
|
122
137
|
try {
|
|
@@ -60,14 +60,15 @@ export var formatProducts = function formatProducts(values) {
|
|
|
60
60
|
discountway: 'num',
|
|
61
61
|
discount_type: 'discount',
|
|
62
62
|
bundle_edit: (_item$_extend2 = item._extend) === null || _item$_extend2 === void 0 ? void 0 : _item$_extend2.bundle_edit,
|
|
63
|
-
product_bundle: formatProductBundle((_item$_extend3 = item._extend) === null || _item$_extend3 === void 0 || (_item$_extend3 = _item$_extend3.other) === null || _item$_extend3 === void 0 ? void 0 : _item$_extend3.bundle),
|
|
63
|
+
product_bundle: formatProductBundle((_item$_extend3 = item._extend) === null || _item$_extend3 === void 0 || (_item$_extend3 = _item$_extend3.other) === null || _item$_extend3 === void 0 ? void 0 : _item$_extend3.bundle, item.is_price_include_tax),
|
|
64
64
|
"product_option_item": formatProductOption((_item$_extend4 = item._extend) === null || _item$_extend4 === void 0 || (_item$_extend4 = _item$_extend4.other) === null || _item$_extend4 === void 0 ? void 0 : _item$_extend4.option),
|
|
65
65
|
"product_variant_id": ((_item$_extend5 = item._extend) === null || _item$_extend5 === void 0 || (_item$_extend5 = _item$_extend5.other) === null || _item$_extend5 === void 0 ? void 0 : _item$_extend5.product_variant_id) || 0,
|
|
66
66
|
"source_product_price": getSourceProductPrice(item),
|
|
67
67
|
"main_product_selling_price": (_getMainProductSellin = getMainProductSellingPrice(item)) !== null && _getMainProductSellin !== void 0 ? _getMainProductSellin : formatProductPrice(item),
|
|
68
68
|
"calculated_original_price": formatOriginalPrice(item),
|
|
69
69
|
"calculated_selling_price": formatSellingPrice(item),
|
|
70
|
-
"tax_fee": item._extend.tax_fee
|
|
70
|
+
"tax_fee": item._extend.tax_fee,
|
|
71
|
+
is_price_include_tax: item.is_price_include_tax
|
|
71
72
|
};
|
|
72
73
|
});
|
|
73
74
|
return arr;
|
|
@@ -834,7 +834,7 @@ var getMainProductTotal = function getMainProductTotal(item) {
|
|
|
834
834
|
// 子商品价格
|
|
835
835
|
var bundleItemPrice = new Decimal((_ref5 = (_bundleItem$bundle_se2 = bundleItem.bundle_selling_price) !== null && _bundleItem$bundle_se2 !== void 0 ? _bundleItem$bundle_se2 : bundleItem.price) !== null && _ref5 !== void 0 ? _ref5 : 0);
|
|
836
836
|
// todo: 套餐子商品后不需要处理 子商品价格 - 子商品折扣金额
|
|
837
|
-
var bundleItemTotal = bundleItemPrice
|
|
837
|
+
var bundleItemTotal = bundleItemPrice;
|
|
838
838
|
total = total.add(bundleItemTotal);
|
|
839
839
|
}
|
|
840
840
|
}
|
|
@@ -338,6 +338,13 @@ var Footer = function Footer(props) {
|
|
|
338
338
|
ScheduleModule: ScheduleModule
|
|
339
339
|
}, getDataFromHost()));
|
|
340
340
|
}, [state, isEdit]);
|
|
341
|
+
useEffect(function () {
|
|
342
|
+
window.dispatchEvent(new CustomEvent('onOriginExpectAmountWithoutDiscountChange', {
|
|
343
|
+
detail: {
|
|
344
|
+
originExpectAmountWithoutDiscount: total === null || total === void 0 ? void 0 : total.originExpectAmountWithoutDiscount
|
|
345
|
+
}
|
|
346
|
+
}));
|
|
347
|
+
}, [total === null || total === void 0 ? void 0 : total.originExpectAmountWithoutDiscount]);
|
|
341
348
|
useDebounceEffect(function () {
|
|
342
349
|
var _state$service4;
|
|
343
350
|
if (state !== null && state !== void 0 && (_state$service4 = state.service) !== null && _state$service4 !== void 0 && _state$service4.addTimeModal) {
|
|
@@ -15,7 +15,7 @@ export declare const formatProductOption: (option: any) => any;
|
|
|
15
15
|
* @Author: zhiwei.Wang
|
|
16
16
|
* @Date: 2024-02-19 09:26
|
|
17
17
|
*/
|
|
18
|
-
export declare const formatProductBundle: (bundle: any) => any;
|
|
18
|
+
export declare const formatProductBundle: (bundle: any, is_price_include_tax: number) => any;
|
|
19
19
|
/**
|
|
20
20
|
* 获取子商品折扣信息
|
|
21
21
|
* @param item
|
|
@@ -92,7 +92,7 @@ var log = function log(data) {
|
|
|
92
92
|
* @Author: zhiwei.Wang
|
|
93
93
|
* @Date: 2024-02-19 09:26
|
|
94
94
|
*/
|
|
95
|
-
export var formatProductBundle = function formatProductBundle(bundle) {
|
|
95
|
+
export var formatProductBundle = function formatProductBundle(bundle, is_price_include_tax) {
|
|
96
96
|
if (!bundle) {
|
|
97
97
|
return;
|
|
98
98
|
}
|
|
@@ -133,6 +133,7 @@ export var formatProductBundle = function formatProductBundle(bundle) {
|
|
|
133
133
|
"option": option,
|
|
134
134
|
"bundle_selling_price": Math.abs(d === null || d === void 0 ? void 0 : d.price),
|
|
135
135
|
// "bundle_sum_price": d?.original_price || d?.original_total,
|
|
136
|
+
is_price_include_tax: is_price_include_tax,
|
|
136
137
|
"metadata": {
|
|
137
138
|
custom_product_bundle_map_id: d._id,
|
|
138
139
|
// 子商品单数量附加费
|
|
@@ -322,8 +323,8 @@ export var formatOriginalPrice = function formatOriginalPrice(item) {
|
|
|
322
323
|
|
|
323
324
|
/**
|
|
324
325
|
* 获取套餐子商品折扣差价
|
|
325
|
-
* @param item
|
|
326
|
-
* @returns
|
|
326
|
+
* @param item
|
|
327
|
+
* @returns
|
|
327
328
|
*/
|
|
328
329
|
var getBundleProductDiscountDifference = function getBundleProductDiscountDifference(item) {
|
|
329
330
|
var _item$_extend9, _item$_extend10, _item$_extend11;
|
|
@@ -512,7 +513,7 @@ var formatProducts = function formatProducts(item, quantity) {
|
|
|
512
513
|
"discount_per": item._extend.discount_per,
|
|
513
514
|
"discount_type": item._extend.discount_type || discount_type,
|
|
514
515
|
"order_detail_id": item._extend.order_detail_id || 0,
|
|
515
|
-
"product_bundle": formatProductBundle((_item$_extend38 = item._extend) === null || _item$_extend38 === void 0 || (_item$_extend38 = _item$_extend38.other) === null || _item$_extend38 === void 0 ? void 0 : _item$_extend38.bundle),
|
|
516
|
+
"product_bundle": formatProductBundle((_item$_extend38 = item._extend) === null || _item$_extend38 === void 0 || (_item$_extend38 = _item$_extend38.other) === null || _item$_extend38 === void 0 ? void 0 : _item$_extend38.bundle, item.is_price_include_tax),
|
|
516
517
|
"bundle_edit": item._extend.bundle_edit || bundleDiscountList.length ? 1 : 0,
|
|
517
518
|
"product_option_item": formatProductOption((_item$_extend39 = item._extend) === null || _item$_extend39 === void 0 || (_item$_extend39 = _item$_extend39.other) === null || _item$_extend39 === void 0 ? void 0 : _item$_extend39.option),
|
|
518
519
|
"product_variant_id": ((_item$_extend40 = item._extend) === null || _item$_extend40 === void 0 || (_item$_extend40 = _item$_extend40.other) === null || _item$_extend40 === void 0 ? void 0 : _item$_extend40.product_variant_id) || 0,
|
|
@@ -522,7 +523,8 @@ var formatProducts = function formatProducts(item, quantity) {
|
|
|
522
523
|
"calculated_original_price": formatOriginalPrice(item),
|
|
523
524
|
"calculated_selling_price": formatSellingPrice(item),
|
|
524
525
|
"tax_fee": item._extend.tax_fee,
|
|
525
|
-
"custom_deposit_data": item.custom_deposit_data
|
|
526
|
+
"custom_deposit_data": item.custom_deposit_data,
|
|
527
|
+
is_price_include_tax: item.is_price_include_tax
|
|
526
528
|
};
|
|
527
529
|
};
|
|
528
530
|
|
|
@@ -152,11 +152,17 @@ var VoucherCard = function VoucherCard(props) {
|
|
|
152
152
|
}
|
|
153
153
|
onScanCode(e.detail.code);
|
|
154
154
|
});
|
|
155
|
+
var onOriginExpectAmountWithoutDiscountChange = useMemoizedFn(function (e) {
|
|
156
|
+
var _shopDiscount$setOrig;
|
|
157
|
+
shopDiscount === null || shopDiscount === void 0 || (_shopDiscount$setOrig = shopDiscount.setOriginTotalAmount) === null || _shopDiscount$setOrig === void 0 || _shopDiscount$setOrig.call(shopDiscount, e.detail.originExpectAmountWithoutDiscount);
|
|
158
|
+
});
|
|
155
159
|
useEffect(function () {
|
|
156
160
|
var wrappedOnScanWallPassCode = executeIfActive(onScanWallPassCode);
|
|
157
161
|
window.addEventListener('onScanWallPassCode', wrappedOnScanWallPassCode);
|
|
162
|
+
window.addEventListener('onOriginExpectAmountWithoutDiscountChange', onOriginExpectAmountWithoutDiscountChange);
|
|
158
163
|
return function () {
|
|
159
164
|
window.removeEventListener('onScanWallPassCode', wrappedOnScanWallPassCode);
|
|
165
|
+
window.removeEventListener('onOriginExpectAmountWithoutDiscountChange', onOriginExpectAmountWithoutDiscountChange);
|
|
160
166
|
};
|
|
161
167
|
}, []);
|
|
162
168
|
var addonsMemo = useMemo(function () {
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
.pisell-lowcode__booking-footer-voucher-container {
|
|
2
2
|
margin-bottom: 8px;
|
|
3
|
+
width: 100%;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
3
6
|
.voucher-title {
|
|
4
7
|
display: flex;
|
|
5
8
|
align-items: center;
|
|
@@ -47,9 +50,9 @@
|
|
|
47
50
|
width: 100%;
|
|
48
51
|
transition: 0.2s;
|
|
49
52
|
max-height: 0;
|
|
50
|
-
overflow: hidden;
|
|
51
53
|
display: flex;
|
|
52
54
|
flex-direction: column;
|
|
55
|
+
overflow: auto;
|
|
53
56
|
|
|
54
57
|
&.show {
|
|
55
58
|
max-height: unset;
|
|
@@ -48,12 +48,13 @@ import EditTabs from "../../../info/service/editService/EditTabs";
|
|
|
48
48
|
import BookingList from "../../../info/service/editService/BookingList";
|
|
49
49
|
import dayjs from "dayjs";
|
|
50
50
|
import { createBookingItemsByGroup, getGroupTotalPrice } from "../../../info/service2/Group/utils";
|
|
51
|
+
import useEngineContext from "../../../../../hooks/useEngineContext";
|
|
51
52
|
import { useShopDiscountModule } from "../../../../ticketBooking/hooks/pisellos/useShopDiscountModule";
|
|
52
53
|
import DiscountChangeModal from "./DiscountChangeModal";
|
|
53
54
|
import Decimal from "decimal.js";
|
|
54
55
|
var submitLock = false;
|
|
55
56
|
var Info = function Info(_, ref) {
|
|
56
|
-
var _state$service4, _state$bookingConfig2, _state$bookingConfig3, _state$service$cacheI5, _state$service$cacheI7, _state$service6, _window$BaseMaterials, _state$service8, _state$service$cacheI12, _state$bookingConfig5, _state$service$cacheI13, _state$service$cacheI14, _state$service9, _state$service$resour2, _state$service$cacheI16, _state$service$cacheI17, _state$client2;
|
|
57
|
+
var _context$appHelper, _state$service4, _state$bookingConfig2, _state$bookingConfig3, _state$service$cacheI5, _state$service$cacheI7, _state$service6, _window$BaseMaterials, _state$service8, _state$service$cacheI12, _state$bookingConfig5, _state$service$cacheI13, _state$service$cacheI14, _state$service9, _state$service$resour2, _state$service$cacheI16, _state$service$cacheI17, _state$client2;
|
|
57
58
|
var _Form$useForm = Form.useForm(),
|
|
58
59
|
_Form$useForm2 = _slicedToArray(_Form$useForm, 1),
|
|
59
60
|
form = _Form$useForm2[0];
|
|
@@ -89,6 +90,9 @@ var Info = function Info(_, ref) {
|
|
|
89
90
|
_useState8 = _slicedToArray(_useState7, 2),
|
|
90
91
|
currentTab = _useState8[0],
|
|
91
92
|
setCurrentTab = _useState8[1];
|
|
93
|
+
var context = useEngineContext();
|
|
94
|
+
var _context$appHelper$ut = (_context$appHelper = context.appHelper) === null || _context$appHelper === void 0 ? void 0 : _context$appHelper.utils,
|
|
95
|
+
getData = _context$appHelper$ut.getData;
|
|
92
96
|
var valuesRef = useRef({});
|
|
93
97
|
var noInOriginalDiscountIdsRef = useRef([]);
|
|
94
98
|
|
|
@@ -323,7 +327,9 @@ var Info = function Info(_, ref) {
|
|
|
323
327
|
submitLock = false;
|
|
324
328
|
}, 1500);
|
|
325
329
|
var _list = _toConsumableArray(state.service.value);
|
|
326
|
-
var _item = _objectSpread(_objectSpread({
|
|
330
|
+
var _item = _objectSpread(_objectSpread({
|
|
331
|
+
is_price_include_tax: getData('is_price_include_tax')
|
|
332
|
+
}, cacheItem !== null && cacheItem !== void 0 ? cacheItem : state.service.cacheItem), {}, {
|
|
327
333
|
autoClose: false
|
|
328
334
|
});
|
|
329
335
|
var _extend = _objectSpread(_objectSpread({}, _item._extend), {}, {
|
|
@@ -371,7 +377,7 @@ var Info = function Info(_, ref) {
|
|
|
371
377
|
var mainProductQuantity = ((_extend$other2 = _extend.other) === null || _extend$other2 === void 0 ? void 0 : _extend$other2.quantity) || _extend.quantity || 1;
|
|
372
378
|
_extend.main_product_selling_price = mainProductTotal.div(mainProductQuantity).toNumber();
|
|
373
379
|
}
|
|
374
|
-
if (
|
|
380
|
+
if (_extend.bundle_edit !== undefined || cacheItem !== null && cacheItem !== void 0 && cacheItem.edit) {
|
|
375
381
|
_extend.bundle_edit = 1;
|
|
376
382
|
}
|
|
377
383
|
_item._extend = _extend;
|
|
@@ -25,6 +25,7 @@ var WalletPassModule = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
25
25
|
var _useWalletPass = useWalletPass({
|
|
26
26
|
onSelectChange: onSelectChange,
|
|
27
27
|
customAmount: customAmount,
|
|
28
|
+
totalAmount: Number(orderInfo === null || orderInfo === void 0 ? void 0 : orderInfo.totalAmount) || 0,
|
|
28
29
|
clientId: clientId
|
|
29
30
|
}),
|
|
30
31
|
handleSelectWallet = _useWalletPass.handleSelectWallet,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare type WalletPassDataType = Record<string, any>;
|
|
2
2
|
export declare const getAvailableMaxAmount: (data: WalletPassDataType) => any;
|
|
3
3
|
export declare const voucherTime: (data: WalletPassDataType, key?: string) => any;
|
|
4
|
+
export declare const getVoucherAvailableStatus: (item: any) => boolean;
|
|
4
5
|
export declare const formatMachineCodeServer2CardList: (data: WalletPassDataType[], selectId?: number[], otherProps?: Record<string, any>) => any;
|
|
5
6
|
export declare const formatDiscountWalletData: (data: any, selectId?: number[]) => any;
|
|
6
7
|
export interface WalletPassUsageUnit {
|
|
@@ -11,12 +11,15 @@ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key i
|
|
|
11
11
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
12
12
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
13
13
|
import React from 'react';
|
|
14
|
-
import { formatDate, locales } from '@pisell/utils';
|
|
14
|
+
import { formatDate, isNumber, locales } from '@pisell/utils';
|
|
15
15
|
import { globalConfig, PisellText } from "@pisell/materials";
|
|
16
16
|
import Decimal from 'decimal.js';
|
|
17
17
|
var Amount = PisellText.Amount;
|
|
18
18
|
// 获取walletPass可用最大金额
|
|
19
19
|
export var getAvailableMaxAmount = function getAvailableMaxAmount(data) {
|
|
20
|
+
if (isNumber(data._available_max_amount)) {
|
|
21
|
+
return data._available_max_amount;
|
|
22
|
+
}
|
|
20
23
|
return data.tag !== 'point_card' ? data.available_max_amount : data === null || data === void 0 ? void 0 : data.recommended_usage_amount;
|
|
21
24
|
};
|
|
22
25
|
export var voucherTime = function voucherTime(data) {
|
|
@@ -27,11 +30,22 @@ export var voucherTime = function voucherTime(data) {
|
|
|
27
30
|
}
|
|
28
31
|
return locales.getText('pisell2.text.walletPassPermanent');
|
|
29
32
|
};
|
|
33
|
+
export var getVoucherAvailableStatus = function getVoucherAvailableStatus(item) {
|
|
34
|
+
return item.unified_available_status === 1 && (isNumber(item._unified_available_status) ? !!item._unified_available_status : true);
|
|
35
|
+
};
|
|
30
36
|
export var formatMachineCodeServer2CardList = function formatMachineCodeServer2CardList(data) {
|
|
31
37
|
var selectId = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
|
|
32
38
|
var otherProps = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
33
39
|
return (data || []).map(function (item) {
|
|
34
40
|
var _item$unified_message, _item$product;
|
|
41
|
+
var disabled = false;
|
|
42
|
+
if (item.unified_available_status === 0) {
|
|
43
|
+
disabled = true;
|
|
44
|
+
} else {
|
|
45
|
+
if (isNumber(item._unified_available_status)) {
|
|
46
|
+
disabled = !item._unified_available_status;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
35
49
|
return _objectSpread({
|
|
36
50
|
id: item.id,
|
|
37
51
|
name: item.product_name,
|
|
@@ -48,8 +62,8 @@ export var formatMachineCodeServer2CardList = function formatMachineCodeServer2C
|
|
|
48
62
|
showQrCode: false,
|
|
49
63
|
showStatus: true,
|
|
50
64
|
code: item.code,
|
|
51
|
-
disabled:
|
|
52
|
-
disabledReason: (_item$unified_message = item.unified_messages) === null || _item$unified_message === void 0 ? void 0 : _item$unified_message.title,
|
|
65
|
+
disabled: disabled,
|
|
66
|
+
disabledReason: isNumber(item._unified_available_status) && item._unified_available_status !== 1 ? item.reason : (_item$unified_message = item.unified_messages) === null || _item$unified_message === void 0 ? void 0 : _item$unified_message.title,
|
|
53
67
|
cover: (_item$product = item.product) === null || _item$product === void 0 ? void 0 : _item$product.cover,
|
|
54
68
|
qrCode: item.code,
|
|
55
69
|
validDate: voucherTime(item),
|
|
@@ -9,6 +9,7 @@ export declare const useWalletPass: (props: {
|
|
|
9
9
|
}[]) => void) | undefined;
|
|
10
10
|
customAmount?: string | undefined;
|
|
11
11
|
clientId?: number | undefined;
|
|
12
|
+
totalAmount?: number | undefined;
|
|
12
13
|
}) => {
|
|
13
14
|
walletRecommendList: any[];
|
|
14
15
|
userIdentificationCodes: any[];
|
|
@@ -29,7 +30,6 @@ export declare const useWalletPass: (props: {
|
|
|
29
30
|
selectedDiscountList: any;
|
|
30
31
|
handleSelectDiscount: (this: unknown, value: number[], option: any) => void;
|
|
31
32
|
customerName: any;
|
|
32
|
-
fetchWalletRecommendList: (this: unknown, params: any) => Promise<any>;
|
|
33
33
|
fetchUserIdentificationCodes: (this: unknown, params: any) => Promise<any>;
|
|
34
34
|
getCachedWalletRecommendList: (this: unknown) => any;
|
|
35
35
|
getCachedUserIdentificationCodes: (this: unknown) => any;
|