@pisell/private-materials 6.6.50 → 6.6.51
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/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 +7 -22
- package/es/components/booking/addons/index.js +2 -3
- package/es/components/booking/components/footer/amount.js +1 -1
- package/es/components/booking/components/footer/index.js +0 -7
- package/es/components/booking/components/footer/utils.d.ts +1 -1
- package/es/components/booking/components/footer/utils.js +5 -7
- package/es/components/booking/components/voucher/index.js +0 -6
- package/es/components/booking/components/voucher/index.less +1 -4
- package/es/components/booking/components/voucherModal/index.less +0 -1
- package/es/components/booking/info2/service/editService/index.js +2 -8
- package/es/components/checkout/components/WalletPassModule/index.js +0 -1
- package/es/components/checkout/components/WalletPassModule/utils.d.ts +0 -1
- package/es/components/checkout/components/WalletPassModule/utils.js +3 -17
- package/es/components/checkout/hooks/useWalletPass.d.ts +1 -1
- package/es/components/checkout/hooks/useWalletPass.js +192 -316
- package/es/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +0 -5
- package/es/components/pay/toC/PaymentMethods/WalletPass/index.js +145 -166
- package/es/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +0 -6
- package/es/components/pay/toC/PaymentMethods/WalletPass/utils.js +3 -3
- package/es/components/pay/toC/WalletPassBlock/index.js +1 -3
- package/es/components/pay/toC/index.js +27 -66
- package/es/components/pay/toC/model.d.ts +0 -1
- package/es/components/pay/toC/serve.d.ts +0 -18
- package/es/components/pay/toC/serve.js +1 -29
- package/es/components/pay/toC/utils.d.ts +2 -2
- package/es/components/pay/toC/utils.js +0 -4
- package/es/components/ticketBooking/components/addServiceVariant/addService.js +4 -7
- package/lib/components/appointmentBooking/components/Voucher/index.js +2 -10
- package/lib/components/booking/addons/index.js +2 -3
- package/lib/components/booking/components/footer/amount.js +1 -1
- package/lib/components/booking/components/footer/index.js +0 -9
- package/lib/components/booking/components/footer/utils.d.ts +1 -1
- package/lib/components/booking/components/footer/utils.js +3 -5
- package/lib/components/booking/components/voucher/index.js +0 -6
- package/lib/components/booking/components/voucher/index.less +1 -4
- package/lib/components/booking/components/voucherModal/index.less +0 -1
- package/lib/components/booking/info2/service/editService/index.js +18 -24
- package/lib/components/checkout/components/WalletPassModule/index.js +0 -1
- package/lib/components/checkout/components/WalletPassModule/utils.d.ts +0 -1
- package/lib/components/checkout/components/WalletPassModule/utils.js +2 -18
- package/lib/components/checkout/hooks/useWalletPass.d.ts +1 -1
- package/lib/components/checkout/hooks/useWalletPass.js +108 -157
- package/lib/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +0 -5
- package/lib/components/pay/toC/PaymentMethods/WalletPass/index.js +103 -90
- package/lib/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +0 -6
- package/lib/components/pay/toC/PaymentMethods/WalletPass/utils.js +2 -2
- package/lib/components/pay/toC/WalletPassBlock/index.js +1 -3
- package/lib/components/pay/toC/index.js +11 -52
- package/lib/components/pay/toC/model.d.ts +0 -1
- package/lib/components/pay/toC/serve.d.ts +0 -18
- package/lib/components/pay/toC/serve.js +0 -6
- package/lib/components/pay/toC/utils.d.ts +2 -2
- package/lib/components/pay/toC/utils.js +0 -4
- package/lib/components/ticketBooking/components/addServiceVariant/addService.js +7 -11
- package/package.json +1 -1
|
@@ -23,14 +23,13 @@ import PayAmount from "./PayAmount";
|
|
|
23
23
|
import WalletPassBlock from "./WalletPassBlock";
|
|
24
24
|
import PaymentList from "./PaymentList";
|
|
25
25
|
import PaymentMethods from "./PaymentMethods";
|
|
26
|
-
import { getPaymentsAndWalletPass, getPaymentInit, getWalletNameAndPopupStatus
|
|
26
|
+
import { getPaymentsAndWalletPass, getPaymentInit, getWalletNameAndPopupStatus } from "./serve";
|
|
27
27
|
import { Provider, Context } from "./model";
|
|
28
28
|
import useEngineContext from "../../../hooks/useEngineContext";
|
|
29
29
|
import usePaymentLogger from "../../../hooks/usePaymentLogger";
|
|
30
30
|
import { request } from "../../../utils";
|
|
31
31
|
import { removePayGroupFromStorage } from "./payGroup";
|
|
32
32
|
import localeTexts from "./locales";
|
|
33
|
-
import { getMachineCodeList } from "./PaymentMethods/WalletPass/serve";
|
|
34
33
|
import { getIsWalletPassAndTripartitePayment } from "./utils";
|
|
35
34
|
import { saleChannelMap } from "./status";
|
|
36
35
|
import "./index.less";
|
|
@@ -264,7 +263,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
264
263
|
*/
|
|
265
264
|
var _getPaymentsAndWalletPass = /*#__PURE__*/function () {
|
|
266
265
|
var _ref3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(order) {
|
|
267
|
-
var
|
|
266
|
+
var _state$payGroup2, _paymentListRef$curre, data, _ref4, _ref4$remain_amount, remain_amount, wallet_pass_recommend_list, wallet_pass_amount, payment_list, walletPass, withCustomerIdList;
|
|
268
267
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
269
268
|
while (1) switch (_context3.prev = _context3.next) {
|
|
270
269
|
case 0:
|
|
@@ -277,42 +276,14 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
277
276
|
});
|
|
278
277
|
_context3.prev = 1;
|
|
279
278
|
_context3.next = 4;
|
|
280
|
-
return
|
|
279
|
+
return getPaymentsAndWalletPass({
|
|
281
280
|
order_id: order.order_id,
|
|
282
281
|
total_amount: order.amount,
|
|
283
282
|
sale_channel: order.sale_channel || 'online-store'
|
|
284
|
-
}), getMachineCodeList({
|
|
285
|
-
order_id: order.order_id,
|
|
286
|
-
available: 2,
|
|
287
|
-
prepare_payments: [],
|
|
288
|
-
filter_prepare_wallet_pass: 1,
|
|
289
|
-
sale_channel: ((_order$_order = order._order) === null || _order$_order === void 0 ? void 0 : _order$_order.sale_channel) || 'online-store',
|
|
290
|
-
other_exact_codes: []
|
|
291
|
-
}), getOrderBasicDetail(order.order_id)]);
|
|
292
|
-
case 4:
|
|
293
|
-
_yield$Promise$all = _context3.sent;
|
|
294
|
-
_yield$Promise$all2 = _slicedToArray(_yield$Promise$all, 3);
|
|
295
|
-
data = _yield$Promise$all2[0];
|
|
296
|
-
allList = _yield$Promise$all2[1];
|
|
297
|
-
orderBasicDetail = _yield$Promise$all2[2];
|
|
298
|
-
_ref4 = data || {}, _ref4$remain_amount = _ref4.remain_amount, remain_amount = _ref4$remain_amount === void 0 ? 0 : _ref4$remain_amount, wallet_pass_recommend_list = _ref4.wallet_pass_recommend_list, wallet_pass_amount = _ref4.wallet_pass_amount, payment_list = _ref4.payment_list, walletPass = _ref4.walletPass;
|
|
299
|
-
products = (orderBasicDetail.detail || []).map(function (item) {
|
|
300
|
-
var _ref5;
|
|
301
|
-
return _objectSpread(_objectSpread({}, item), {}, {
|
|
302
|
-
is_price_include_tax: orderBasicDetail.is_price_include_tax,
|
|
303
|
-
product_bundle: (_ref5 = item.product_bundle || []) === null || _ref5 === void 0 ? void 0 : _ref5.map(function (bundle) {
|
|
304
|
-
return _objectSpread(_objectSpread({}, bundle), {}, {
|
|
305
|
-
is_price_include_tax: orderBasicDetail.is_price_include_tax
|
|
306
|
-
});
|
|
307
|
-
})
|
|
308
|
-
});
|
|
309
|
-
});
|
|
310
|
-
_res = utils.walletPassEvaluator.getRecommendedVouchers({
|
|
311
|
-
orderTotalAmount: Math.min(orderBasicDetail.product_unpaid_total_pay_amount, order.amount),
|
|
312
|
-
products: products,
|
|
313
|
-
vouchers: allList || []
|
|
314
283
|
});
|
|
315
|
-
|
|
284
|
+
case 4:
|
|
285
|
+
data = _context3.sent;
|
|
286
|
+
_ref4 = data || {}, _ref4$remain_amount = _ref4.remain_amount, remain_amount = _ref4$remain_amount === void 0 ? 0 : _ref4$remain_amount, wallet_pass_recommend_list = _ref4.wallet_pass_recommend_list, wallet_pass_amount = _ref4.wallet_pass_amount, payment_list = _ref4.payment_list, walletPass = _ref4.walletPass; // 记录获取到的数据
|
|
316
287
|
paymentLogger.addLog({
|
|
317
288
|
key: '支付数据获取',
|
|
318
289
|
value: ''
|
|
@@ -321,40 +292,30 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
321
292
|
return _objectSpread(_objectSpread({}, item), {}, {
|
|
322
293
|
customer_id: customer_id || item.customer_id
|
|
323
294
|
});
|
|
324
|
-
});
|
|
325
|
-
_waitAmount2 = new Decimal((order === null || order === void 0 ? void 0 : order.amount) || 0).minus(new Decimal(recommendedAmount)).toNumber(); // 设置交易组
|
|
295
|
+
}); // 设置交易组
|
|
326
296
|
dispatch({
|
|
327
297
|
type: 'setPayGroup',
|
|
328
298
|
payload: {
|
|
329
299
|
// ...state.payGroup,
|
|
330
300
|
order_id: order === null || order === void 0 ? void 0 : order.order_id,
|
|
331
301
|
// total_amount: order?.amount,
|
|
332
|
-
orderDetail: orderBasicDetail,
|
|
333
302
|
// 原订单信息
|
|
334
303
|
_order: order,
|
|
335
304
|
payment_group_id: order === null || order === void 0 ? void 0 : order.payment_group_id,
|
|
336
305
|
// 支付方式没有walletPass时walletPass设置null
|
|
337
306
|
walletPass: walletPass ? _objectSpread(_objectSpread(_objectSpread({}, (_state$payGroup2 = state.payGroup) === null || _state$payGroup2 === void 0 ? void 0 : _state$payGroup2.walletPass), walletPass), {}, {
|
|
338
|
-
|
|
339
|
-
cards:
|
|
340
|
-
// 推荐金额
|
|
341
|
-
amount: recommendedAmount,
|
|
342
|
-
// 不可用钱包
|
|
343
|
-
noApplicableVoucher: noApplicableVoucher,
|
|
344
|
-
// 转换列表
|
|
345
|
-
transformList: transformList
|
|
346
|
-
// amount: wallet_pass_amount,
|
|
347
|
-
// cards: wallet_pass_recommend_list,
|
|
307
|
+
amount: wallet_pass_amount,
|
|
308
|
+
cards: withCustomerIdList
|
|
348
309
|
}) : null,
|
|
349
310
|
total_amount: order === null || order === void 0 ? void 0 : order.amount,
|
|
350
|
-
wait_amount:
|
|
311
|
+
wait_amount: remain_amount
|
|
351
312
|
}
|
|
352
313
|
});
|
|
353
314
|
|
|
354
315
|
// 初始化支付列表
|
|
355
|
-
_context3.next =
|
|
316
|
+
_context3.next = 11;
|
|
356
317
|
return (_paymentListRef$curre = paymentListRef.current) === null || _paymentListRef$curre === void 0 ? void 0 : _paymentListRef$curre.init(payment_list, remain_amount || 0);
|
|
357
|
-
case
|
|
318
|
+
case 11:
|
|
358
319
|
// 解除loading
|
|
359
320
|
setTimeout(function () {
|
|
360
321
|
setLoading(false);
|
|
@@ -365,10 +326,10 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
365
326
|
key: '获取支付列表成功',
|
|
366
327
|
value: ''
|
|
367
328
|
});
|
|
368
|
-
_context3.next =
|
|
329
|
+
_context3.next = 21;
|
|
369
330
|
break;
|
|
370
|
-
case
|
|
371
|
-
_context3.prev =
|
|
331
|
+
case 15:
|
|
332
|
+
_context3.prev = 15;
|
|
372
333
|
_context3.t0 = _context3["catch"](1);
|
|
373
334
|
console.log('err', _context3.t0);
|
|
374
335
|
|
|
@@ -391,11 +352,11 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
391
352
|
fn: '_getPaymentsAndWalletPass'
|
|
392
353
|
}
|
|
393
354
|
});
|
|
394
|
-
case
|
|
355
|
+
case 21:
|
|
395
356
|
case "end":
|
|
396
357
|
return _context3.stop();
|
|
397
358
|
}
|
|
398
|
-
}, _callee3, null, [[1,
|
|
359
|
+
}, _callee3, null, [[1, 15]]);
|
|
399
360
|
}));
|
|
400
361
|
return function _getPaymentsAndWalletPass(_x3) {
|
|
401
362
|
return _ref3.apply(this, arguments);
|
|
@@ -412,7 +373,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
412
373
|
* @Date: 2024-08-16 10:46
|
|
413
374
|
*/
|
|
414
375
|
var handlePaymentByType = /*#__PURE__*/function () {
|
|
415
|
-
var
|
|
376
|
+
var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(type, payGroup) {
|
|
416
377
|
var _state$payGroup3;
|
|
417
378
|
var paymentType, currentPayGroup, _paymentMethodsRef$cu;
|
|
418
379
|
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
@@ -472,7 +433,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
472
433
|
}, _callee4, null, [[3, 12]]);
|
|
473
434
|
}));
|
|
474
435
|
return function handlePaymentByType(_x4, _x5) {
|
|
475
|
-
return
|
|
436
|
+
return _ref5.apply(this, arguments);
|
|
476
437
|
};
|
|
477
438
|
}();
|
|
478
439
|
|
|
@@ -484,7 +445,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
484
445
|
* @Date: 2024-08-15 13:41
|
|
485
446
|
*/
|
|
486
447
|
var paymentInit = /*#__PURE__*/function () {
|
|
487
|
-
var
|
|
448
|
+
var _ref6 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(newOrderId) {
|
|
488
449
|
var _state$payGroup4;
|
|
489
450
|
var orderId, _state$payGroup5, data;
|
|
490
451
|
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
@@ -558,7 +519,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
558
519
|
}, _callee5, null, [[3, 12]]);
|
|
559
520
|
}));
|
|
560
521
|
return function paymentInit(_x6) {
|
|
561
|
-
return
|
|
522
|
+
return _ref6.apply(this, arguments);
|
|
562
523
|
};
|
|
563
524
|
}();
|
|
564
525
|
|
|
@@ -617,7 +578,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
617
578
|
* @Date: 2024-08-30 10:23:48
|
|
618
579
|
*/
|
|
619
580
|
var getIsShowDetectIncognitoConfirm = /*#__PURE__*/function () {
|
|
620
|
-
var
|
|
581
|
+
var _ref7 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(payGroup) {
|
|
621
582
|
var _yield$detectIncognit, isPrivate;
|
|
622
583
|
return _regeneratorRuntime().wrap(function _callee6$(_context6) {
|
|
623
584
|
while (1) switch (_context6.prev = _context6.next) {
|
|
@@ -635,7 +596,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
635
596
|
}, _callee6);
|
|
636
597
|
}));
|
|
637
598
|
return function getIsShowDetectIncognitoConfirm(_x7) {
|
|
638
|
-
return
|
|
599
|
+
return _ref7.apply(this, arguments);
|
|
639
600
|
};
|
|
640
601
|
}();
|
|
641
602
|
|
|
@@ -647,7 +608,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
647
608
|
* @Date: 2024-08-15 13:25
|
|
648
609
|
*/
|
|
649
610
|
var onSubmit = /*#__PURE__*/function () {
|
|
650
|
-
var
|
|
611
|
+
var _ref8 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(newOrderId) {
|
|
651
612
|
var _state$payGroup10, _state$payGroup11, _state$payGroup12;
|
|
652
613
|
var newPayGroup, _state$payGroup13, _newPayGroup, _newPayGroup2, _state$payGroup14, result, _state$payGroup15;
|
|
653
614
|
return _regeneratorRuntime().wrap(function _callee7$(_context7) {
|
|
@@ -725,7 +686,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
725
686
|
}, _callee7, null, [[2, 20]]);
|
|
726
687
|
}));
|
|
727
688
|
return function onSubmit(_x8) {
|
|
728
|
-
return
|
|
689
|
+
return _ref8.apply(this, arguments);
|
|
729
690
|
};
|
|
730
691
|
}();
|
|
731
692
|
|
|
@@ -782,7 +743,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
782
743
|
* @Date: 2024-08-09 14:25
|
|
783
744
|
*/
|
|
784
745
|
var payCallback = /*#__PURE__*/function () {
|
|
785
|
-
var
|
|
746
|
+
var _ref9 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(res) {
|
|
786
747
|
var _res$data, _state$payGroup20, _props$callback;
|
|
787
748
|
var orderId, _res$data2;
|
|
788
749
|
return _regeneratorRuntime().wrap(function _callee8$(_context8) {
|
|
@@ -822,7 +783,7 @@ var ToCPay = function ToCPay(props, ref) {
|
|
|
822
783
|
}, _callee8);
|
|
823
784
|
}));
|
|
824
785
|
return function payCallback(_x9) {
|
|
825
|
-
return
|
|
786
|
+
return _ref9.apply(this, arguments);
|
|
826
787
|
};
|
|
827
788
|
}();
|
|
828
789
|
|
|
@@ -62,21 +62,3 @@ export declare const getWalletNameAndPopupStatus: (values: {
|
|
|
62
62
|
* @description: 获取支付结果
|
|
63
63
|
*/
|
|
64
64
|
export declare const getPaymentResult: (values: any) => Promise<any>;
|
|
65
|
-
declare type OrderBasicDetail = {
|
|
66
|
-
id: number;
|
|
67
|
-
status: string;
|
|
68
|
-
payment_status: string;
|
|
69
|
-
order_time: string;
|
|
70
|
-
detail: any[];
|
|
71
|
-
product_unpaid_total_pay_amount: number;
|
|
72
|
-
product_paid_total_pay_amount: number;
|
|
73
|
-
is_price_include_tax: 1 | 0;
|
|
74
|
-
};
|
|
75
|
-
/**
|
|
76
|
-
* @title: 查询订单基础信息和订单商品信息
|
|
77
|
-
* @description: 查询订单基础信息和订单商品信息
|
|
78
|
-
* @param {string} order_id
|
|
79
|
-
* @return {*}
|
|
80
|
-
*/
|
|
81
|
-
export declare const getOrderBasicDetail: (order_id: string) => Promise<OrderBasicDetail>;
|
|
82
|
-
export {};
|
|
@@ -185,32 +185,4 @@ export var getWalletNameAndPopupStatus = /*#__PURE__*/function () {
|
|
|
185
185
|
*/
|
|
186
186
|
export var getPaymentResult = function getPaymentResult(values) {
|
|
187
187
|
return request.getRequest().get("/h5/pay/order/payment/result", values);
|
|
188
|
-
};
|
|
189
|
-
/**
|
|
190
|
-
* @title: 查询订单基础信息和订单商品信息
|
|
191
|
-
* @description: 查询订单基础信息和订单商品信息
|
|
192
|
-
* @param {string} order_id
|
|
193
|
-
* @return {*}
|
|
194
|
-
*/
|
|
195
|
-
export var getOrderBasicDetail = /*#__PURE__*/function () {
|
|
196
|
-
var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(order_id) {
|
|
197
|
-
var _yield$request$getReq5, data;
|
|
198
|
-
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
199
|
-
while (1) switch (_context5.prev = _context5.next) {
|
|
200
|
-
case 0:
|
|
201
|
-
_context5.next = 2;
|
|
202
|
-
return request.getRequest().get("/h5/order/order/".concat(order_id, "/basic-detail"), {});
|
|
203
|
-
case 2:
|
|
204
|
-
_yield$request$getReq5 = _context5.sent;
|
|
205
|
-
data = _yield$request$getReq5.data;
|
|
206
|
-
return _context5.abrupt("return", data);
|
|
207
|
-
case 5:
|
|
208
|
-
case "end":
|
|
209
|
-
return _context5.stop();
|
|
210
|
-
}
|
|
211
|
-
}, _callee5);
|
|
212
|
-
}));
|
|
213
|
-
return function getOrderBasicDetail(_x5) {
|
|
214
|
-
return _ref5.apply(this, arguments);
|
|
215
|
-
};
|
|
216
|
-
}();
|
|
188
|
+
};
|
|
@@ -22,7 +22,7 @@ export declare const formatWalletPassParams: (payGroup: PayGroup) => {
|
|
|
22
22
|
order_id: string;
|
|
23
23
|
payment_group_id: number;
|
|
24
24
|
payments: {
|
|
25
|
-
amount: string
|
|
25
|
+
amount: string;
|
|
26
26
|
wallet_pass_use_value: any;
|
|
27
27
|
voucher_id: any;
|
|
28
28
|
tag: any;
|
|
@@ -48,7 +48,7 @@ export declare const isFranchiseeShop: (path?: any, history?: any) => any;
|
|
|
48
48
|
*/
|
|
49
49
|
export declare const getFranchiseeShopId: (path?: any, history?: any) => number;
|
|
50
50
|
export declare const formatFranchiseeRoute: (url: string, history?: any) => string;
|
|
51
|
-
export declare const getAvailableMaxAmount: (data: WalletPassDataType) => string
|
|
51
|
+
export declare const getAvailableMaxAmount: (data: WalletPassDataType) => string;
|
|
52
52
|
export declare const clientPayment: (params: {
|
|
53
53
|
order_id: number;
|
|
54
54
|
type: "aliPay" | "wxPay" | 'google_pay';
|
|
@@ -6,7 +6,6 @@ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol"
|
|
|
6
6
|
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); }
|
|
7
7
|
import { Decimal } from 'decimal.js';
|
|
8
8
|
import { isTripartitePayment } from "./status";
|
|
9
|
-
import { isNumber } from "@pisell/utils";
|
|
10
9
|
/**
|
|
11
10
|
* 计算walletPass列表数据的总金额
|
|
12
11
|
* @param list
|
|
@@ -96,9 +95,6 @@ export var formatFranchiseeRoute = function formatFranchiseeRoute(url, history)
|
|
|
96
95
|
|
|
97
96
|
// 获取walletPass可用最大金额
|
|
98
97
|
export var getAvailableMaxAmount = function getAvailableMaxAmount(data) {
|
|
99
|
-
if (isNumber(data._available_max_amount)) {
|
|
100
|
-
return data._available_max_amount;
|
|
101
|
-
}
|
|
102
98
|
return data.tag !== 'point_card' ? data.available_max_amount : data === null || data === void 0 ? void 0 : data.recommended_usage_amount;
|
|
103
99
|
};
|
|
104
100
|
export var clientPayment = function clientPayment(params) {
|
|
@@ -51,7 +51,7 @@ var productListSetting = {
|
|
|
51
51
|
isStock: 0
|
|
52
52
|
};
|
|
53
53
|
var AddSerivce = function AddSerivce(props) {
|
|
54
|
-
var _context$appHelper, _context$
|
|
54
|
+
var _context$appHelper, _context$appHelper$ge, _context$appHelper$ut, _context$appHelper$ut2, _context$appHelper$ut3, _state$bookingConfig2, _state$client2;
|
|
55
55
|
var onEdit = props.onEdit,
|
|
56
56
|
state = props.state,
|
|
57
57
|
dispatch = props.dispatch,
|
|
@@ -59,8 +59,6 @@ var AddSerivce = function AddSerivce(props) {
|
|
|
59
59
|
renderMode = _props$renderMode === void 0 ? 'current' : _props$renderMode,
|
|
60
60
|
productDisplayConfig = props.productDisplayConfig;
|
|
61
61
|
var context = useEngineContext();
|
|
62
|
-
var _context$appHelper$ut = (_context$appHelper = context.appHelper) === null || _context$appHelper === void 0 ? void 0 : _context$appHelper.utils,
|
|
63
|
-
getData = _context$appHelper$ut.getData;
|
|
64
62
|
var notAvailableRef = useRef(null);
|
|
65
63
|
request.setRequest(context.appHelper.utils.request);
|
|
66
64
|
var isActive = useIsActive();
|
|
@@ -73,7 +71,7 @@ var AddSerivce = function AddSerivce(props) {
|
|
|
73
71
|
}),
|
|
74
72
|
createBookingData = _useService.createBookingData,
|
|
75
73
|
createBooking = _useService.createBooking;
|
|
76
|
-
var isBooking4 = isBooking4Shop(((_context$
|
|
74
|
+
var isBooking4 = isBooking4Shop(((_context$appHelper = context.appHelper) === null || _context$appHelper === void 0 || (_context$appHelper = _context$appHelper.utils) === null || _context$appHelper === void 0 || (_context$appHelper$ge = _context$appHelper.getData) === null || _context$appHelper$ge === void 0 ? void 0 : _context$appHelper$ge.call(_context$appHelper, 'shop_id')) || ((_context$appHelper$ut = context.appHelper.utils.store) === null || _context$appHelper$ut === void 0 || (_context$appHelper$ut2 = _context$appHelper$ut.getState) === null || _context$appHelper$ut2 === void 0 || (_context$appHelper$ut2 = _context$appHelper$ut2.call(_context$appHelper$ut)) === null || _context$appHelper$ut2 === void 0 || (_context$appHelper$ut2 = _context$appHelper$ut2.global) === null || _context$appHelper$ut2 === void 0 || (_context$appHelper$ut2 = _context$appHelper$ut2.globalConfig) === null || _context$appHelper$ut2 === void 0 ? void 0 : _context$appHelper$ut2.id), state === null || state === void 0 ? void 0 : state.renderType, (_context$appHelper$ut3 = context.appHelper.utils) === null || _context$appHelper$ut3 === void 0 ? void 0 : _context$appHelper$ut3.businessUtils);
|
|
77
75
|
var _useState = useState(null),
|
|
78
76
|
_useState2 = _slicedToArray(_useState, 2),
|
|
79
77
|
currentProduct = _useState2[0],
|
|
@@ -221,7 +219,7 @@ var AddSerivce = function AddSerivce(props) {
|
|
|
221
219
|
var processAddService = useMemoizedFn( /*#__PURE__*/function () {
|
|
222
220
|
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(item, _detail, e, notShowToast, startDate, endDate) {
|
|
223
221
|
var _state$client3, _state$bookingConfig3, _state$bookingConfig4;
|
|
224
|
-
var other, cacheItem, _total, _isEdit, _stateRef$current$ser, isMultiDay, getMultiDayCacheItem, res, _state$bookingConfig5, _addService2, _list, quantity, _context$appHelper$
|
|
222
|
+
var other, cacheItem, _total, _isEdit, _stateRef$current$ser, isMultiDay, getMultiDayCacheItem, res, _state$bookingConfig5, _addService2, _list, quantity, _context$appHelper$ut4, _context$appHelper$ut5, val, sendData, _window$openBookingEd, _window;
|
|
225
223
|
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
226
224
|
while (1) switch (_context2.prev = _context2.next) {
|
|
227
225
|
case 0:
|
|
@@ -231,7 +229,6 @@ var AddSerivce = function AddSerivce(props) {
|
|
|
231
229
|
product_id: item.id,
|
|
232
230
|
_id: getUniqueId(),
|
|
233
231
|
_key: e.key,
|
|
234
|
-
is_price_include_tax: getData('is_price_include_tax'),
|
|
235
232
|
_extend: {
|
|
236
233
|
start_date: startDate,
|
|
237
234
|
quantity: (e === null || e === void 0 ? void 0 : e.quantity) || 1,
|
|
@@ -341,7 +338,7 @@ var AddSerivce = function AddSerivce(props) {
|
|
|
341
338
|
}
|
|
342
339
|
}));
|
|
343
340
|
try {
|
|
344
|
-
if (((_context$appHelper$
|
|
341
|
+
if (((_context$appHelper$ut4 = context.appHelper.utils.store) === null || _context$appHelper$ut4 === void 0 || (_context$appHelper$ut5 = _context$appHelper$ut4.getState) === null || _context$appHelper$ut5 === void 0 || (_context$appHelper$ut5 = _context$appHelper$ut5.call(_context$appHelper$ut4)) === null || _context$appHelper$ut5 === void 0 || (_context$appHelper$ut5 = _context$appHelper$ut5.global) === null || _context$appHelper$ut5 === void 0 || (_context$appHelper$ut5 = _context$appHelper$ut5.globalConfig) === null || _context$appHelper$ut5 === void 0 ? void 0 : _context$appHelper$ut5.id) === 2155) {
|
|
345
342
|
val = _list === null || _list === void 0 ? void 0 : _list.map(function (s) {
|
|
346
343
|
return {
|
|
347
344
|
product_id: s === null || s === void 0 ? void 0 : s.product_id,
|
|
@@ -43,8 +43,6 @@ var import_materials = require("@pisell/materials");
|
|
|
43
43
|
var import_hooks = require("../../hooks");
|
|
44
44
|
var import_voucher = require("../../../booking/components/voucher/index.less");
|
|
45
45
|
var import_index = require("./index.less");
|
|
46
|
-
var import_context = require("../../context");
|
|
47
|
-
var import_ahooks = require("ahooks");
|
|
48
46
|
var ShopDiscountHooks = {
|
|
49
47
|
onInited: "shopDiscount:onInited",
|
|
50
48
|
onDestroy: "shopDiscount:onDestroy",
|
|
@@ -68,17 +66,11 @@ var VoucherCard = (props) => {
|
|
|
68
66
|
const productRef = (0, import_react.useRef)(products);
|
|
69
67
|
const { openLoginModal } = (0, import_hooks.useAppointmentBookingLogin)();
|
|
70
68
|
const { accountLists } = (0, import_hooks.useAppointmentBookingAccount)();
|
|
71
|
-
const { summary } = (0, import_context.useAppointmentBookingContext)();
|
|
72
|
-
const { originTotal, total } = summary;
|
|
73
69
|
const cart = (_b = appointmentBooking == null ? void 0 : appointmentBooking.store) == null ? void 0 : _b.cart;
|
|
74
70
|
const isUserLoggedIn = (0, import_react.useMemo)(() => {
|
|
75
71
|
var _a2, _b2;
|
|
76
72
|
return !!((_b2 = (_a2 = utils == null ? void 0 : utils.token) == null ? void 0 : _a2.get) == null ? void 0 : _b2.call(_a2)) || false;
|
|
77
73
|
}, [store]);
|
|
78
|
-
(0, import_react.useEffect)(() => {
|
|
79
|
-
const shopDiscount2 = pisellos.getModule("shopDiscount");
|
|
80
|
-
shopDiscount2.setOriginTotalAmount(originTotal);
|
|
81
|
-
}, [originTotal]);
|
|
82
74
|
const availableData = (0, import_react.useMemo)(() => {
|
|
83
75
|
return discountList.filter((item) => !!item.isAvailable).map((discount) => {
|
|
84
76
|
return {
|
|
@@ -114,7 +106,7 @@ var VoucherCard = (props) => {
|
|
|
114
106
|
});
|
|
115
107
|
(_a2 = appointmentBooking == null ? void 0 : appointmentBooking.batchUpdateCart) == null ? void 0 : _a2.call(appointmentBooking, items);
|
|
116
108
|
};
|
|
117
|
-
const
|
|
109
|
+
const onCartChange = () => {
|
|
118
110
|
var _a2, _b2, _c;
|
|
119
111
|
const products2 = cart == null ? void 0 : cart.getItems();
|
|
120
112
|
(_c = shopDiscount == null ? void 0 : shopDiscount.setBookingSubject) == null ? void 0 : _c.call(
|
|
@@ -123,7 +115,7 @@ var VoucherCard = (props) => {
|
|
|
123
115
|
);
|
|
124
116
|
const val = shopDiscount.calcDiscount(products2);
|
|
125
117
|
batchUpdateCart(val.productList);
|
|
126
|
-
}
|
|
118
|
+
};
|
|
127
119
|
const stringifiedHolders = (0, import_react.useMemo)(() => {
|
|
128
120
|
let _ret;
|
|
129
121
|
try {
|
|
@@ -68,15 +68,14 @@ var formatProducts = (values) => {
|
|
|
68
68
|
discountway: "num",
|
|
69
69
|
discount_type: "discount",
|
|
70
70
|
bundle_edit: (_c = item._extend) == null ? void 0 : _c.bundle_edit,
|
|
71
|
-
product_bundle: (0, import_utils.formatProductBundle)((_e = (_d = item._extend) == null ? void 0 : _d.other) == null ? void 0 : _e.bundle
|
|
71
|
+
product_bundle: (0, import_utils.formatProductBundle)((_e = (_d = item._extend) == null ? void 0 : _d.other) == null ? void 0 : _e.bundle),
|
|
72
72
|
"product_option_item": (0, import_utils.formatProductOption)((_g = (_f = item._extend) == null ? void 0 : _f.other) == null ? void 0 : _g.option),
|
|
73
73
|
"product_variant_id": ((_i = (_h = item._extend) == null ? void 0 : _h.other) == null ? void 0 : _i.product_variant_id) || 0,
|
|
74
74
|
"source_product_price": (0, import_utils.getSourceProductPrice)(item),
|
|
75
75
|
"main_product_selling_price": (0, import_utils.getMainProductSellingPrice)(item) ?? (0, import_utils.formatProductPrice)(item),
|
|
76
76
|
"calculated_original_price": (0, import_utils.formatOriginalPrice)(item),
|
|
77
77
|
"calculated_selling_price": (0, import_utils.formatSellingPrice)(item),
|
|
78
|
-
"tax_fee": item._extend.tax_fee
|
|
79
|
-
is_price_include_tax: item.is_price_include_tax
|
|
78
|
+
"tax_fee": item._extend.tax_fee
|
|
80
79
|
};
|
|
81
80
|
});
|
|
82
81
|
return arr;
|
|
@@ -498,7 +498,7 @@ var getMainProductTotal = (item) => {
|
|
|
498
498
|
if (getBundleItemIsMarkupOrDiscountPrice(bundleItem)) {
|
|
499
499
|
const discountAmount = getDiscountAmount(bundleItem.discount_list);
|
|
500
500
|
const bundleItemPrice = new import_decimal.default(bundleItem.bundle_selling_price ?? bundleItem.price ?? 0);
|
|
501
|
-
const bundleItemTotal = bundleItemPrice;
|
|
501
|
+
const bundleItemTotal = bundleItemPrice.minus(discountAmount);
|
|
502
502
|
total = total.add(bundleItemTotal);
|
|
503
503
|
}
|
|
504
504
|
}
|
|
@@ -269,15 +269,6 @@ var Footer = (props) => {
|
|
|
269
269
|
...getDataFromHost()
|
|
270
270
|
});
|
|
271
271
|
}, [state, isEdit]);
|
|
272
|
-
(0, import_react.useEffect)(() => {
|
|
273
|
-
window.dispatchEvent(
|
|
274
|
-
new CustomEvent("onOriginExpectAmountWithoutDiscountChange", {
|
|
275
|
-
detail: {
|
|
276
|
-
originExpectAmountWithoutDiscount: total == null ? void 0 : total.originExpectAmountWithoutDiscount
|
|
277
|
-
}
|
|
278
|
-
})
|
|
279
|
-
);
|
|
280
|
-
}, [total == null ? void 0 : total.originExpectAmountWithoutDiscount]);
|
|
281
272
|
(0, import_ahooks.useDebounceEffect)(() => {
|
|
282
273
|
var _a2;
|
|
283
274
|
if ((_a2 = state == null ? void 0 : state.service) == null ? void 0 : _a2.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
|
|
18
|
+
export declare const formatProductBundle: (bundle: any) => any;
|
|
19
19
|
/**
|
|
20
20
|
* 获取子商品折扣信息
|
|
21
21
|
* @param item
|
|
@@ -96,7 +96,7 @@ var log = (data) => {
|
|
|
96
96
|
]
|
|
97
97
|
});
|
|
98
98
|
};
|
|
99
|
-
var formatProductBundle = (bundle
|
|
99
|
+
var formatProductBundle = (bundle) => {
|
|
100
100
|
if (!bundle) {
|
|
101
101
|
return;
|
|
102
102
|
}
|
|
@@ -136,7 +136,6 @@ var formatProductBundle = (bundle, is_price_include_tax) => {
|
|
|
136
136
|
"option": option,
|
|
137
137
|
"bundle_selling_price": Math.abs(d == null ? void 0 : d.price),
|
|
138
138
|
// "bundle_sum_price": d?.original_price || d?.original_total,
|
|
139
|
-
is_price_include_tax,
|
|
140
139
|
"metadata": {
|
|
141
140
|
custom_product_bundle_map_id: d._id,
|
|
142
141
|
// 子商品单数量附加费
|
|
@@ -403,7 +402,7 @@ var formatProducts = (item, quantity) => {
|
|
|
403
402
|
"discount_per": item._extend.discount_per,
|
|
404
403
|
"discount_type": item._extend.discount_type || discount_type,
|
|
405
404
|
"order_detail_id": item._extend.order_detail_id || 0,
|
|
406
|
-
"product_bundle": formatProductBundle((_e = (_d = item._extend) == null ? void 0 : _d.other) == null ? void 0 : _e.bundle
|
|
405
|
+
"product_bundle": formatProductBundle((_e = (_d = item._extend) == null ? void 0 : _d.other) == null ? void 0 : _e.bundle),
|
|
407
406
|
"bundle_edit": item._extend.bundle_edit || bundleDiscountList.length ? 1 : 0,
|
|
408
407
|
"product_option_item": formatProductOption((_g = (_f = item._extend) == null ? void 0 : _f.other) == null ? void 0 : _g.option),
|
|
409
408
|
"product_variant_id": ((_i = (_h = item._extend) == null ? void 0 : _h.other) == null ? void 0 : _i.product_variant_id) || 0,
|
|
@@ -413,8 +412,7 @@ var formatProducts = (item, quantity) => {
|
|
|
413
412
|
"calculated_original_price": formatOriginalPrice(item),
|
|
414
413
|
"calculated_selling_price": formatSellingPrice(item),
|
|
415
414
|
"tax_fee": item._extend.tax_fee,
|
|
416
|
-
"custom_deposit_data": item.custom_deposit_data
|
|
417
|
-
is_price_include_tax: item.is_price_include_tax
|
|
415
|
+
"custom_deposit_data": item.custom_deposit_data
|
|
418
416
|
};
|
|
419
417
|
};
|
|
420
418
|
var formatAppointmentProductLists = (data) => {
|
|
@@ -135,17 +135,11 @@ var VoucherCard = (props) => {
|
|
|
135
135
|
}
|
|
136
136
|
onScanCode(e.detail.code);
|
|
137
137
|
});
|
|
138
|
-
const onOriginExpectAmountWithoutDiscountChange = (0, import_ahooks.useMemoizedFn)((e) => {
|
|
139
|
-
var _a2;
|
|
140
|
-
(_a2 = shopDiscount == null ? void 0 : shopDiscount.setOriginTotalAmount) == null ? void 0 : _a2.call(shopDiscount, e.detail.originExpectAmountWithoutDiscount);
|
|
141
|
-
});
|
|
142
138
|
(0, import_react.useEffect)(() => {
|
|
143
139
|
const wrappedOnScanWallPassCode = executeIfActive(onScanWallPassCode);
|
|
144
140
|
window.addEventListener("onScanWallPassCode", wrappedOnScanWallPassCode);
|
|
145
|
-
window.addEventListener("onOriginExpectAmountWithoutDiscountChange", onOriginExpectAmountWithoutDiscountChange);
|
|
146
141
|
return () => {
|
|
147
142
|
window.removeEventListener("onScanWallPassCode", wrappedOnScanWallPassCode);
|
|
148
|
-
window.removeEventListener("onOriginExpectAmountWithoutDiscountChange", onOriginExpectAmountWithoutDiscountChange);
|
|
149
143
|
};
|
|
150
144
|
}, []);
|
|
151
145
|
const addonsMemo = (0, import_react.useMemo)(() => {
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
.pisell-lowcode__booking-footer-voucher-container {
|
|
2
2
|
margin-bottom: 8px;
|
|
3
|
-
width: 100%;
|
|
4
|
-
display: flex;
|
|
5
|
-
flex-direction: column;
|
|
6
3
|
.voucher-title {
|
|
7
4
|
display: flex;
|
|
8
5
|
align-items: center;
|
|
@@ -50,9 +47,9 @@
|
|
|
50
47
|
width: 100%;
|
|
51
48
|
transition: 0.2s;
|
|
52
49
|
max-height: 0;
|
|
50
|
+
overflow: hidden;
|
|
53
51
|
display: flex;
|
|
54
52
|
flex-direction: column;
|
|
55
|
-
overflow: auto;
|
|
56
53
|
|
|
57
54
|
&.show {
|
|
58
55
|
max-height: unset;
|