@pisell/private-materials 6.1.7 → 6.1.8
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/index.js +1 -1
- package/build/lowcode/meta.js +9 -1
- package/build/lowcode/preview.js +8 -8
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +12 -12
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +12 -12
- package/es/components/Sales/Cart/index.js +14 -4
- package/es/components/Sales/Cart/utils.d.ts +40 -0
- package/es/components/Sales/Cart/utils.js +187 -0
- package/es/components/Sales/Checkout/index.d.ts +4 -0
- package/es/components/Sales/Checkout/index.js +52 -8
- package/es/components/Sales/Checkout/serve.d.ts +13 -0
- package/es/components/Sales/Checkout/serve.js +16 -2
- package/es/components/Sales/Checkout/utils.d.ts +7 -1
- package/es/components/Sales/Checkout/utils.js +17 -5
- package/es/components/Sales/Customer/index.d.ts +1 -0
- package/es/components/Sales/Customer/index.js +1 -0
- package/es/components/Sales/Event/Detail.d.ts +1 -0
- package/es/components/Sales/Event/Detail.js +45 -11
- package/es/components/Sales/Event/serve.d.ts +10 -0
- package/es/components/Sales/Event/serve.js +25 -0
- package/es/components/Sales/Summary/index.d.ts +10 -0
- package/es/components/Sales/Summary/index.js +17 -2
- package/es/components/Sales/Summary/serve.d.ts +1 -0
- package/es/components/Sales/Summary/serve.js +6 -0
- package/es/components/Sales/Summary/utils.d.ts +16 -1
- package/es/components/Sales/Summary/utils.js +43 -1
- package/es/components/appointmentBooking/components/Cart/Item/index.js +1 -0
- package/es/components/appointmentBooking/components/Cart/utils.js +8 -13
- package/es/components/appointmentBooking/components/Content/index.js +120 -20
- package/es/components/appointmentBooking/components/Deposit/index.d.ts +6 -0
- package/es/components/appointmentBooking/components/Deposit/index.js +27 -7
- package/es/components/appointmentBooking/components/Form/index.js +1 -1
- package/es/components/appointmentBooking/components/Form/utils.d.ts +1 -1
- package/es/components/appointmentBooking/components/Form/utils.js +17 -15
- package/es/components/appointmentBooking/components/Header/index.js +2 -1
- package/es/components/appointmentBooking/components/Resource/index.js +1 -0
- package/es/components/appointmentBooking/components/Services/index.js +7 -2
- package/es/components/appointmentBooking/components/TimeSlicing/index.js +7 -3
- package/es/components/appointmentBooking/components/Voucher/index.js +10 -10
- package/es/components/appointmentBooking/deposit/components/PolicyModal/index.js +25 -20
- package/es/components/appointmentBooking/deposit/index.js +4 -2
- package/es/components/appointmentBooking/hooks.js +28 -30
- package/es/components/booking/addons/index.js +4 -1
- package/es/components/booking/components/TabProduct/tabs/index.js +5 -1
- package/es/components/booking/components/actionButtons/index.d.ts +29 -0
- package/es/components/booking/components/actionButtons/index.js +395 -0
- package/es/components/booking/components/actionButtons/index.less +148 -0
- package/es/components/booking/components/browserSelect/index.js +1 -1
- package/es/components/booking/components/clearCartModal/index.d.ts +10 -0
- package/es/components/booking/components/clearCartModal/index.js +50 -0
- package/es/components/booking/components/clearCartModal/index.less +109 -0
- package/es/components/booking/components/customiseItemModal/index.d.ts +28 -0
- package/es/components/booking/components/customiseItemModal/index.js +287 -0
- package/es/components/booking/components/customiseItemModal/index.less +593 -0
- package/es/components/booking/components/drawer/index.d.ts +19 -0
- package/es/components/booking/components/footer/amount.d.ts +1 -0
- package/es/components/booking/components/footer/amount.js +15 -3
- package/es/components/booking/components/footer/index.js +137 -62
- package/es/components/booking/components/footer/utils.js +52 -24
- package/es/components/booking/components/reloadResourceModal/index.d.ts +8 -0
- package/es/components/booking/components/reloadResourceModal/index.js +73 -0
- package/es/components/booking/components/reloadResourceModal/index.less +6 -0
- package/es/components/booking/components/tabPane/index.js +86 -5
- package/es/components/booking/components/tabPane/index.less +75 -1
- package/es/components/booking/components/voucher/index.js +21 -10
- package/es/components/booking/components/voucher/index.less +1 -1
- package/es/components/booking/dashboard/index.d.ts +1 -1
- package/es/components/booking/dashboard/index.js +10 -3
- package/es/components/booking/editBookingModal/index.js +58 -29
- package/es/components/booking/editBookingModal/serve.d.ts +1 -0
- package/es/components/booking/editBookingModal/serve.js +19 -11
- package/es/components/booking/forms/model.js +5 -5
- package/es/components/booking/hooks/useIsBooking4Shop.d.ts +1 -1
- package/es/components/booking/hooks/useIsBooking4Shop.js +4 -3
- package/es/components/booking/hooks/useQuotation.js +17 -7
- package/es/components/booking/info/addServiceVariant/index.js +2 -2
- package/es/components/booking/info/hooks/useInfoHolder.d.ts +1 -0
- package/es/components/booking/info/hooks/useInfoHolder.js +15 -14
- package/es/components/booking/info/index.js +3 -4
- package/es/components/booking/info/index.less +18 -2
- package/es/components/booking/info/main.js +14 -15
- package/es/components/booking/info/service/Lists.js +5 -2
- package/es/components/booking/info/service/editService/index.js +1 -1
- package/es/components/booking/info/service/like/index.js +1 -1
- package/es/components/booking/info/service/serviceItem/index.js +2 -2
- package/es/components/booking/info/service/serviceManager/index.js +4 -4
- package/es/components/booking/info/service2/utils.d.ts +4 -0
- package/es/components/booking/info/service2/utils.js +12 -2
- package/es/components/booking/info/utils.d.ts +1 -1
- package/es/components/booking/info/utils.js +5 -3
- package/es/components/booking/info2/cartClientCard/index.d.ts +6 -0
- package/es/components/booking/info2/cartClientCard/index.js +343 -0
- package/es/components/booking/info2/cartClientCard/index.less +6 -0
- package/es/components/booking/info2/cartClientCard/locales.d.ts +21 -0
- package/es/components/booking/info2/cartClientCard/locales.js +26 -0
- package/es/components/booking/info2/cartClientCard/types.d.ts +13 -0
- package/es/components/booking/info2/cartClientCard/types.js +1 -0
- package/es/components/booking/info2/cartClientCard/utils.d.ts +3 -0
- package/es/components/booking/info2/cartClientCard/utils.js +7 -0
- package/es/components/booking/info2/index.js +104 -32
- package/es/components/booking/info2/service/addService/index.js +21 -8
- package/es/components/booking/info2/service/addService/utils.d.ts +98 -0
- package/es/components/booking/info2/service/addService/utils.js +38 -9
- package/es/components/booking/info2/service/addTimeModal/index.js +33 -9
- package/es/components/booking/info2/service/editNormalService/index.d.ts +3 -0
- package/es/components/booking/info2/service/editNormalService/index.js +67 -0
- package/es/components/booking/info2/service/editService/Resources/index.d.ts +4 -0
- package/es/components/booking/info2/service/editService/ResourcesV2/index.js +1 -1
- package/es/components/booking/info2/service/editService/index.js +6 -7
- package/es/components/booking/info2/service/index.js +12 -6
- package/es/components/booking/info2/service/serviceItem/index.js +2 -2
- package/es/components/booking/info2/utils.js +13 -16
- package/es/components/booking/info2/utilsByBooking.d.ts +1 -0
- package/es/components/booking/info2/utilsByBooking.js +36 -7
- package/es/components/booking/locales.d.ts +84 -0
- package/es/components/booking/locales.js +108 -3
- package/es/components/booking/materiels/duration/index.d.ts +13 -0
- package/es/components/booking/materiels/startTime/index.js +1 -1
- package/es/components/booking/model.d.ts +1 -0
- package/es/components/booking/notes/NoteBlock/NoteItem/index.js +1 -1
- package/es/components/booking/notes/NoteBlock/index.js +11 -11
- package/es/components/booking/notes/addNote/index.d.ts +1 -1
- package/es/components/booking/notes/addNote/index.js +52 -32
- package/es/components/booking/notes/addNote/index.less +53 -0
- package/es/components/booking/notes/model.js +5 -5
- package/es/components/booking/payments/model.js +5 -5
- package/es/components/eftposPay/const.d.ts +4 -1
- package/es/components/eftposPay/const.js +3 -1
- package/es/components/eftposPay/hooks.d.ts +1 -1
- package/es/components/eftposPay/hooks.js +3 -1
- package/es/components/eftposPay/index.js +1 -1
- package/es/components/eftposPay/linkly/const.d.ts +23 -0
- package/es/components/eftposPay/linkly/const.js +82 -0
- package/es/components/eftposPay/linkly/hooks/index.d.ts +2 -0
- package/es/components/eftposPay/linkly/hooks/index.js +2 -0
- package/es/components/eftposPay/linkly/hooks/normal.d.ts +30 -0
- package/es/components/eftposPay/linkly/hooks/normal.js +321 -0
- package/es/components/eftposPay/linkly/hooks/useTimeQuery.d.ts +4 -0
- package/es/components/eftposPay/linkly/hooks/useTimeQuery.js +273 -0
- package/es/components/eftposPay/linkly/index.d.ts +2 -0
- package/es/components/eftposPay/linkly/index.js +197 -0
- package/es/components/eftposPay/linkly/service.d.ts +32 -0
- package/es/components/eftposPay/linkly/service.js +81 -0
- package/es/components/eftposPay/manufacturer.d.ts +1 -0
- package/es/components/eftposPay/manufacturer.js +4 -0
- package/es/components/eftposPay/pay.d.ts +1 -1
- package/es/components/eftposPay/pay.js +6 -2
- package/es/components/eftposPay/store/index.d.ts +1 -1
- package/es/components/eventBooking/components/Provider/Cart/ContinueButton/index.js +40 -19
- package/es/components/eventBooking/components/Provider/Cart/Deposit/index.d.ts +2 -0
- package/es/components/eventBooking/components/Provider/Cart/Deposit/index.js +17 -0
- package/es/components/eventBooking/components/Provider/Cart/Item/Total.js +10 -6
- package/es/components/eventBooking/components/Provider/Cart/Item/index.js +4 -2
- package/es/components/eventBooking/components/bookingDetailModal/index.js +6 -3
- package/es/components/eventBooking/index.js +14 -0
- package/es/components/eventBooking/index.less +1 -1
- package/es/components/eventBooking/locales.d.ts +24 -0
- package/es/components/eventBooking/locales.js +27 -3
- package/es/components/listComponent/index.js +5 -5
- package/es/components/pay/toC/PaymentMethods/GlobePayAliPayH5/index.js +18 -3
- package/es/components/pay/toC/PaymentMethods/MWCreditCard/TDSPay/ThreedsLoading/index.d.ts +1 -1
- package/es/components/pay/toC/PaymentMethods/MWCreditCard/TDSPay/ThreedsLoading/index.js +7 -2
- package/es/components/pay/toC/PaymentMethods/MWCreditCard/TDSPay/ThreedsLoading/index.less +8 -0
- package/es/components/pay/toC/PaymentMethods/MWCreditCard/tds2.js +44 -18
- package/es/components/pay/toC/PaymentMethods/SuperPayAliPayH5/index.js +18 -3
- package/es/components/pay/toC/PaymentMethods/index.js +70 -21
- package/es/components/pay/toC/index.js +46 -14
- package/es/components/pay/toC/locales.d.ts +3 -0
- package/es/components/pay/toC/locales.js +3 -0
- package/es/components/productExtension/card/index.js +3 -3
- package/es/components/productExtension/fields/Actor/CutOffTime/index.js +1 -1
- package/es/components/productExtension/fields/Forms/index.js +12 -12
- package/es/components/productExtension/fields/SelectProducts/ProductItemPreview/index.js +1 -1
- package/es/components/productExtension/fields/SelectProducts/server.js +2 -2
- package/es/components/productExtension/fields/SelectResourcesTable/server.js +2 -2
- package/es/components/productExtension/server.js +2 -2
- package/es/components/productSelect/components/TabProduct/index.js +103 -39
- package/es/components/productSelect/components/TabProduct/tabs/index.less +1 -0
- package/es/components/productSelect/index.d.ts +2 -0
- package/es/components/ruleSetting/ruleBorder/index.js +1 -1
- package/es/components/schedules/calendar/index.js +4 -4
- package/es/components/schedules/calendar/serve.js +2 -2
- package/es/components/schedules/components/CurrentDay/index.js +5 -5
- package/es/components/schedules/components/CurrentDay/serve.js +2 -2
- package/es/components/schedules/components/DropdownSort/index.js +1 -1
- package/es/components/schedules/components/ResourceList/index.js +1 -1
- package/es/components/schedules/components/Search/index.js +5 -5
- package/es/components/schedules/model.js +5 -5
- package/es/components/schedules/openHours/index.js +1 -1
- package/es/components/schedules/openHours/serve.js +2 -2
- package/es/components/schedules/products/ProductDetailDrawer/ProductDetail/MaxParticipantsModule/index.js +1 -1
- package/es/components/schedules/products/ProductDetailDrawer/ProductDetail/ResourcesModule/index.js +5 -5
- package/es/components/schedules/products/ProductDetailDrawer/ProductDetail/SchedulesModule/index.js +4 -4
- package/es/components/schedules/products/ProductDetailDrawer/index.js +3 -3
- package/es/components/schedules/products/serve.js +2 -2
- package/es/components/schedules/products/utils.js +5 -5
- package/es/components/schedules/resources/detail/detailContent.js +2 -2
- package/es/components/schedules/resources/detail/index.js +10 -10
- package/es/components/schedules/resources/list/index.js +2 -2
- package/es/components/schedules/resources/relationProduct/index.js +1 -1
- package/es/components/schedules/resources/serve.js +2 -2
- package/es/components/schedules/schedules/ScheduleDetailDrawer/index.js +9 -9
- package/es/components/schedules/utils.js +4 -4
- package/es/components/selectModal/index.js +2 -2
- package/es/components/shoppingCart/components/Cart/Product.js +21 -4
- package/es/components/shoppingCart/type.d.ts +1 -0
- package/es/components/subTotal/index.less +1 -1
- package/es/components/ticketBooking/components/addServiceVariant/addService.js +157 -212
- package/es/components/ticketBooking/components/addServiceVariant/utils.d.ts +8 -0
- package/es/components/ticketBooking/components/addServiceVariant/utils.js +190 -0
- package/es/components/ticketBooking/components/bookingDataPanel/bookingDashboard/index.d.ts +7 -0
- package/es/components/ticketBooking/components/bookingDataPanel/bookingDashboard/index.js +33 -0
- package/es/components/ticketBooking/components/bookingDataPanel/bookingDashboard/index.less +5 -0
- package/es/components/ticketBooking/components/bookingDataPanel/bookingList/index.d.ts +12 -0
- package/es/components/ticketBooking/components/bookingDataPanel/bookingList/index.js +213 -0
- package/es/components/ticketBooking/components/bookingDataPanel/bookingList/index.less +69 -0
- package/es/components/ticketBooking/components/bookingDataPanel/bookingList/utils.d.ts +6 -0
- package/es/components/ticketBooking/components/bookingDataPanel/bookingList/utils.js +79 -0
- package/es/components/ticketBooking/components/bookingDataPanel/constants.d.ts +22 -0
- package/es/components/ticketBooking/components/bookingDataPanel/constants.js +25 -0
- package/es/components/ticketBooking/components/bookingDataPanel/index.d.ts +9 -0
- package/es/components/ticketBooking/components/bookingDataPanel/index.js +74 -0
- package/es/components/ticketBooking/components/bookingDataPanel/index.less +61 -0
- package/es/components/ticketBooking/components/bookingDataPanel/pisellFloatingPanel/index.d.ts +14 -0
- package/es/components/ticketBooking/components/bookingDataPanel/pisellFloatingPanel/index.js +71 -0
- package/es/components/ticketBooking/components/bookingDataPanel/serve.d.ts +0 -0
- package/es/components/ticketBooking/components/bookingDataPanel/serve.js +0 -0
- package/es/components/ticketBooking/components/floatButtons/index.d.ts +11 -0
- package/es/components/ticketBooking/components/floatButtons/index.js +19 -0
- package/es/components/ticketBooking/components/floatButtons/index.less +17 -0
- package/es/components/ticketBooking/components/menuBar/index.js +50 -1
- package/es/components/ticketBooking/components/menuBar/index.less +8 -0
- package/es/components/ticketBooking/components/ticketBooking/index.js +195 -26
- package/es/components/ticketBooking/components/ticketBooking/index.less +28 -0
- package/es/components/ticketBooking/components/timeBar/index.d.ts +1 -0
- package/es/components/ticketBooking/components/timeBar/index.js +20 -16
- package/es/components/ticketBooking/hooks/pisellos/bookingTicket.d.ts +1 -0
- package/es/components/ticketBooking/hooks/pisellos/bookingTicket.js +5 -0
- package/es/components/ticketBooking/hooks/pisellos/index.d.ts +3 -0
- package/es/components/ticketBooking/hooks/pisellos/index.js +3 -0
- package/es/components/ticketBooking/hooks/pisellos/useCustomer.d.ts +25 -0
- package/es/components/ticketBooking/hooks/pisellos/useCustomer.js +244 -0
- package/es/components/ticketBooking/hooks/pisellos/useProducts.d.ts +12 -0
- package/es/components/ticketBooking/hooks/pisellos/useProducts.js +52 -0
- package/es/components/ticketBooking/hooks/pisellos/useScanCustomer.d.ts +5 -0
- package/es/components/ticketBooking/hooks/pisellos/useScanCustomer.js +30 -0
- package/es/components/ticketBooking/hooks/pisellos/useScanGlobal.d.ts +5 -0
- package/es/components/ticketBooking/hooks/pisellos/useScanGlobal.js +29 -0
- package/es/components/ticketBooking/hooks/pisellos/useScanGlobalHandle.d.ts +2 -0
- package/es/components/ticketBooking/hooks/pisellos/useScanGlobalHandle.js +49 -0
- package/es/components/ticketBooking/index.js +22 -3
- package/es/components/ticketBooking/locales.d.ts +6 -0
- package/es/components/ticketBooking/locales.js +9 -3
- package/es/components/ticketBooking/serve.js +11 -11
- package/es/components/ticketBooking/utils/index.d.ts +39 -2
- package/es/components/ticketBooking/utils/index.js +104 -11
- package/es/components/walletList/index.js +4 -4
- package/es/hooks/useComponents.js +1 -1
- package/es/hooks/useToast.d.ts +2 -0
- package/es/hooks/useToast.js +9 -0
- package/es/hooks/useTranslationOriginal.d.ts +1 -0
- package/es/hooks/useTranslationOriginal.js +10 -0
- package/es/index.d.ts +4 -0
- package/es/index.js +5 -1
- package/es/plus/clientCard/index.d.ts +7 -0
- package/es/plus/clientCard/index.js +452 -0
- package/es/plus/clientCard/index.less +539 -0
- package/es/plus/clientCard/line/index.d.ts +9 -0
- package/es/plus/clientCard/line/index.js +157 -0
- package/es/plus/clientCard/line/index.less +142 -0
- package/es/plus/clientCard/locales.d.ts +18 -0
- package/es/plus/clientCard/locales.js +17 -0
- package/es/plus/clientCard/types.d.ts +126 -0
- package/es/plus/clientCard/types.js +1 -0
- package/es/plus/clientCard/utils.d.ts +8 -0
- package/es/plus/clientCard/utils.js +59 -0
- package/es/plus/clientName/index.d.ts +4 -0
- package/es/plus/clientName/index.js +18 -0
- package/es/plus/clientName/index.less +10 -0
- package/es/plus/clientName/type.d.ts +13 -0
- package/es/plus/clientName/type.js +1 -0
- package/es/plus/clientName/utils.d.ts +2 -0
- package/es/plus/clientName/utils.js +18 -0
- package/es/plus/clinetSearch/Add/BirthdayField/index.d.ts +2 -0
- package/es/plus/clinetSearch/Add/BirthdayField/index.js +277 -0
- package/es/plus/clinetSearch/Add/GenderField/index.d.ts +2 -0
- package/es/plus/clinetSearch/Add/GenderField/index.js +18 -0
- package/es/plus/clinetSearch/Add/PhoneField/index.d.ts +2 -0
- package/es/plus/clinetSearch/Add/PhoneField/index.js +52 -0
- package/es/plus/clinetSearch/Add/PhoneField/serve.d.ts +2 -0
- package/es/plus/clinetSearch/Add/PhoneField/serve.js +166 -0
- package/es/plus/clinetSearch/Add/index.d.ts +18 -0
- package/es/plus/clinetSearch/Add/index.js +212 -0
- package/es/plus/clinetSearch/Add/index.less +30 -0
- package/es/plus/clinetSearch/InfiniteScroll/InfiniteScroll.d.ts +5 -0
- package/es/plus/clinetSearch/InfiniteScroll/InfiniteScroll.js +265 -0
- package/es/plus/clinetSearch/InfiniteScroll/index.d.ts +2 -0
- package/es/plus/clinetSearch/InfiniteScroll/index.js +1 -0
- package/es/plus/clinetSearch/InfiniteScroll/types.d.ts +46 -0
- package/es/plus/clinetSearch/InfiniteScroll/types.js +1 -0
- package/es/plus/clinetSearch/index.d.ts +18 -0
- package/es/plus/clinetSearch/index.js +214 -0
- package/es/plus/clinetSearch/index.less +91 -0
- package/es/plus/clinetSearch/locales.d.ts +102 -0
- package/es/plus/clinetSearch/locales.js +101 -0
- package/es/plus/clinetSearch/serve.d.ts +1 -0
- package/es/plus/clinetSearch/serve.js +31 -0
- package/es/plus/clinetSearch/types.d.ts +49 -0
- package/es/plus/clinetSearch/types.js +1 -0
- package/es/plus/noteModal/AddTempModal.d.ts +7 -0
- package/es/plus/noteModal/AddTempModal.js +64 -0
- package/es/plus/noteModal/index.d.ts +4 -0
- package/es/plus/noteModal/index.js +199 -0
- package/es/plus/noteModal/index.less +168 -0
- package/es/plus/noteModal/locales.d.ts +33 -0
- package/es/plus/noteModal/locales.js +32 -0
- package/es/plus/noteModal/types.d.ts +17 -0
- package/es/plus/noteModal/types.js +1 -0
- package/es/pro/comprehensiveSearch/camera.svg +4 -0
- package/es/pro/comprehensiveSearch/hooks/useNativeScanner.d.ts +5 -0
- package/es/pro/comprehensiveSearch/hooks/useNativeScanner.js +24 -0
- package/es/pro/comprehensiveSearch/hooks/useTerminalPeripherals.d.ts +9 -0
- package/es/pro/comprehensiveSearch/hooks/useTerminalPeripherals.js +44 -0
- package/es/pro/comprehensiveSearch/index.d.ts +9 -0
- package/es/pro/comprehensiveSearch/index.js +342 -0
- package/es/pro/comprehensiveSearch/index.less +323 -0
- package/es/pro/comprehensiveSearch/locales.d.ts +18 -0
- package/es/pro/comprehensiveSearch/locales.js +17 -0
- package/es/pro/comprehensiveSearch/types.d.ts +31 -0
- package/es/pro/comprehensiveSearch/types.js +1 -0
- package/es/pro/numberKeyboard/index.d.ts +28 -0
- package/es/pro/numberKeyboard/index.js +155 -0
- package/es/pro/numberKeyboard/index.less +25 -0
- package/es/pro/numberKeyboard/locales.d.ts +12 -0
- package/es/pro/numberKeyboard/locales.js +11 -0
- package/es/pro/pisellNumberSelector/example.d.ts +3 -0
- package/es/pro/pisellNumberSelector/example.js +68 -0
- package/es/pro/pisellNumberSelector/index.d.ts +26 -0
- package/es/pro/pisellNumberSelector/index.js +231 -0
- package/es/pro/pisellNumberSelector/index.less +193 -0
- package/es/pro/pisellPhoneKeyboard/index.d.ts +12 -0
- package/es/pro/pisellPhoneKeyboard/index.js +211 -0
- package/es/pro/pisellPhoneKeyboard/index.less +157 -0
- package/es/pro/pisellPhoneKeyboard/locales.d.ts +12 -0
- package/es/pro/pisellPhoneKeyboard/locales.js +11 -0
- package/es/pro/pisellPriceKeyboardModal/PisellPriceKeyboardModal.d.ts +5 -0
- package/es/pro/pisellPriceKeyboardModal/PisellPriceKeyboardModal.js +157 -0
- package/es/pro/pisellPriceKeyboardModal/PisellPriceKeyboardModal.less +9 -0
- package/es/pro/pisellPriceKeyboardModal/index.d.ts +2 -0
- package/es/pro/pisellPriceKeyboardModal/index.js +1 -0
- package/es/pro/pisellPriceKeyboardModal/types.d.ts +25 -0
- package/es/pro/pisellPriceKeyboardModal/types.js +1 -0
- package/es/pro/pisellPriceRadio/index.d.ts +26 -0
- package/es/pro/pisellPriceRadio/index.js +113 -0
- package/es/pro/pisellPriceRadio/index.less +158 -0
- package/es/pro/skuDetailModal/index.d.ts +5 -0
- package/es/pro/skuDetailModal/index.js +352 -0
- package/es/pro/skuDetailModal/index.less +236 -0
- package/es/pro/skuDetailModal/locales.d.ts +48 -0
- package/es/pro/skuDetailModal/locales.js +47 -0
- package/es/pro/skuDetailModal/types.d.ts +347 -0
- package/es/pro/skuDetailModal/types.js +1 -0
- package/lib/components/Sales/Cart/index.js +10 -4
- package/lib/components/Sales/Cart/utils.d.ts +40 -0
- package/lib/components/Sales/Cart/utils.js +129 -0
- package/lib/components/Sales/Checkout/index.d.ts +4 -0
- package/lib/components/Sales/Checkout/index.js +39 -7
- package/lib/components/Sales/Checkout/serve.d.ts +13 -0
- package/lib/components/Sales/Checkout/serve.js +7 -2
- package/lib/components/Sales/Checkout/utils.d.ts +7 -1
- package/lib/components/Sales/Checkout/utils.js +7 -2
- package/lib/components/Sales/Customer/index.d.ts +1 -0
- package/lib/components/Sales/Customer/index.js +1 -0
- package/lib/components/Sales/Event/Detail.d.ts +1 -0
- package/lib/components/Sales/Event/Detail.js +37 -12
- package/lib/components/Sales/Event/serve.d.ts +10 -0
- package/lib/components/Sales/Event/serve.js +7 -0
- package/lib/components/Sales/Summary/index.d.ts +10 -0
- package/lib/components/Sales/Summary/index.js +7 -1
- package/lib/components/Sales/Summary/serve.d.ts +1 -0
- package/lib/components/Sales/Summary/serve.js +32 -0
- package/lib/components/Sales/Summary/utils.d.ts +16 -1
- package/lib/components/Sales/Summary/utils.js +30 -1
- package/lib/components/appointmentBooking/components/Cart/Item/index.js +1 -0
- package/lib/components/appointmentBooking/components/Cart/utils.js +0 -10
- package/lib/components/appointmentBooking/components/Content/index.js +55 -8
- package/lib/components/appointmentBooking/components/Deposit/index.d.ts +6 -0
- package/lib/components/appointmentBooking/components/Deposit/index.js +36 -4
- package/lib/components/appointmentBooking/components/Form/index.js +6 -1
- package/lib/components/appointmentBooking/components/Form/utils.d.ts +1 -1
- package/lib/components/appointmentBooking/components/Form/utils.js +9 -12
- package/lib/components/appointmentBooking/components/Header/index.js +1 -0
- package/lib/components/appointmentBooking/components/Resource/index.js +1 -0
- package/lib/components/appointmentBooking/components/Services/index.js +6 -1
- package/lib/components/appointmentBooking/components/TimeSlicing/index.js +7 -3
- package/lib/components/appointmentBooking/components/Voucher/index.js +0 -11
- package/lib/components/appointmentBooking/deposit/components/PolicyModal/index.js +8 -4
- package/lib/components/appointmentBooking/deposit/index.js +4 -2
- package/lib/components/appointmentBooking/hooks.js +5 -16
- package/lib/components/booking/addons/index.js +4 -1
- package/lib/components/booking/components/actionButtons/index.d.ts +29 -0
- package/lib/components/booking/components/actionButtons/index.js +325 -0
- package/lib/components/booking/components/actionButtons/index.less +148 -0
- package/lib/components/booking/components/clearCartModal/index.d.ts +10 -0
- package/lib/components/booking/components/clearCartModal/index.js +80 -0
- package/lib/components/booking/components/clearCartModal/index.less +109 -0
- package/lib/components/booking/components/customiseItemModal/index.d.ts +28 -0
- package/lib/components/booking/components/customiseItemModal/index.js +273 -0
- package/lib/components/booking/components/customiseItemModal/index.less +593 -0
- package/lib/components/booking/components/drawer/index.d.ts +19 -0
- package/lib/components/booking/components/footer/amount.d.ts +1 -0
- package/lib/components/booking/components/footer/amount.js +5 -3
- package/lib/components/booking/components/footer/index.js +115 -30
- package/lib/components/booking/components/footer/utils.js +38 -13
- package/lib/components/booking/components/reloadResourceModal/index.d.ts +8 -0
- package/lib/components/booking/components/reloadResourceModal/index.js +74 -0
- package/lib/components/booking/components/reloadResourceModal/index.less +6 -0
- package/lib/components/booking/components/tabPane/index.js +78 -4
- package/lib/components/booking/components/tabPane/index.less +75 -1
- package/lib/components/booking/components/voucher/index.js +18 -9
- package/lib/components/booking/components/voucher/index.less +1 -1
- package/lib/components/booking/dashboard/index.d.ts +1 -1
- package/lib/components/booking/dashboard/index.js +7 -2
- package/lib/components/booking/editBookingModal/index.js +56 -21
- package/lib/components/booking/editBookingModal/serve.d.ts +1 -0
- package/lib/components/booking/editBookingModal/serve.js +12 -6
- package/lib/components/booking/hooks/useIsBooking4Shop.d.ts +1 -1
- package/lib/components/booking/hooks/useIsBooking4Shop.js +6 -4
- package/lib/components/booking/hooks/useQuotation.js +3 -1
- package/lib/components/booking/info/addServiceVariant/index.js +3 -2
- package/lib/components/booking/info/hooks/useInfoHolder.d.ts +1 -0
- package/lib/components/booking/info/hooks/useInfoHolder.js +14 -8
- package/lib/components/booking/info/index.js +7 -4
- package/lib/components/booking/info/index.less +18 -2
- package/lib/components/booking/info/main.js +12 -5
- package/lib/components/booking/info/service/Lists.js +6 -2
- package/lib/components/booking/info/service/editService/index.js +1 -0
- package/lib/components/booking/info/service/serviceItem/index.js +2 -2
- package/lib/components/booking/info/service/serviceManager/index.js +3 -3
- package/lib/components/booking/info/service2/utils.d.ts +4 -0
- package/lib/components/booking/info/service2/utils.js +14 -2
- package/lib/components/booking/info/utils.d.ts +1 -1
- package/lib/components/booking/info/utils.js +6 -3
- package/lib/components/booking/info2/cartClientCard/index.d.ts +6 -0
- package/lib/components/booking/info2/cartClientCard/index.js +298 -0
- package/lib/components/booking/info2/cartClientCard/index.less +6 -0
- package/lib/components/booking/info2/cartClientCard/locales.d.ts +21 -0
- package/lib/components/booking/info2/cartClientCard/locales.js +50 -0
- package/lib/components/booking/info2/cartClientCard/types.d.ts +13 -0
- package/lib/components/booking/info2/cartClientCard/types.js +17 -0
- package/lib/components/booking/info2/cartClientCard/utils.d.ts +3 -0
- package/lib/components/booking/info2/cartClientCard/utils.js +37 -0
- package/lib/components/booking/info2/index.js +119 -34
- package/lib/components/booking/info2/service/addService/index.js +17 -4
- package/lib/components/booking/info2/service/addService/utils.d.ts +98 -0
- package/lib/components/booking/info2/service/addService/utils.js +31 -10
- package/lib/components/booking/info2/service/addTimeModal/index.js +28 -10
- package/lib/components/booking/info2/service/editNormalService/index.d.ts +3 -0
- package/lib/components/booking/info2/service/editNormalService/index.js +100 -0
- package/lib/components/booking/info2/service/editService/Resources/index.d.ts +4 -0
- package/lib/components/booking/info2/service/editService/ResourcesV2/index.js +1 -1
- package/lib/components/booking/info2/service/editService/index.js +5 -10
- package/lib/components/booking/info2/service/index.js +6 -6
- package/lib/components/booking/info2/service/serviceItem/index.js +2 -2
- package/lib/components/booking/info2/utils.js +0 -15
- package/lib/components/booking/info2/utilsByBooking.d.ts +1 -0
- package/lib/components/booking/info2/utilsByBooking.js +28 -6
- package/lib/components/booking/locales.d.ts +84 -0
- package/lib/components/booking/locales.js +102 -3
- package/lib/components/booking/materiels/duration/index.d.ts +13 -0
- package/lib/components/booking/model.d.ts +1 -0
- package/lib/components/booking/notes/addNote/index.d.ts +1 -1
- package/lib/components/booking/notes/addNote/index.js +41 -23
- package/lib/components/booking/notes/addNote/index.less +53 -0
- package/lib/components/eftposPay/const.d.ts +4 -1
- package/lib/components/eftposPay/const.js +2 -0
- package/lib/components/eftposPay/hooks.d.ts +1 -1
- package/lib/components/eftposPay/hooks.js +11 -4
- package/lib/components/eftposPay/index.js +1 -1
- package/lib/components/eftposPay/linkly/const.d.ts +23 -0
- package/lib/components/eftposPay/linkly/const.js +102 -0
- package/lib/components/eftposPay/linkly/hooks/index.d.ts +2 -0
- package/lib/components/eftposPay/linkly/hooks/index.js +25 -0
- package/lib/components/eftposPay/linkly/hooks/normal.d.ts +30 -0
- package/lib/components/eftposPay/linkly/hooks/normal.js +242 -0
- package/lib/components/eftposPay/linkly/hooks/useTimeQuery.d.ts +4 -0
- package/lib/components/eftposPay/linkly/hooks/useTimeQuery.js +222 -0
- package/lib/components/eftposPay/linkly/index.d.ts +2 -0
- package/lib/components/eftposPay/linkly/index.js +208 -0
- package/lib/components/eftposPay/linkly/service.d.ts +32 -0
- package/lib/components/eftposPay/linkly/service.js +55 -0
- package/lib/components/eftposPay/manufacturer.d.ts +1 -0
- package/lib/components/eftposPay/manufacturer.js +6 -0
- package/lib/components/eftposPay/pay.d.ts +1 -1
- package/lib/components/eftposPay/pay.js +13 -2
- package/lib/components/eftposPay/store/index.d.ts +1 -1
- package/lib/components/eventBooking/components/Provider/Cart/ContinueButton/index.js +29 -8
- package/lib/components/eventBooking/components/Provider/Cart/Deposit/index.d.ts +2 -0
- package/lib/components/eventBooking/components/Provider/Cart/Deposit/index.js +55 -0
- package/lib/components/eventBooking/components/Provider/Cart/Item/Total.js +8 -5
- package/lib/components/eventBooking/components/Provider/Cart/Item/index.js +4 -2
- package/lib/components/eventBooking/components/bookingDetailModal/index.js +4 -3
- package/lib/components/eventBooking/index.js +11 -0
- package/lib/components/eventBooking/index.less +1 -1
- package/lib/components/eventBooking/locales.d.ts +24 -0
- package/lib/components/eventBooking/locales.js +27 -3
- package/lib/components/pay/toC/PaymentMethods/GlobePayAliPayH5/index.js +13 -1
- package/lib/components/pay/toC/PaymentMethods/MWCreditCard/TDSPay/ThreedsLoading/index.d.ts +1 -1
- package/lib/components/pay/toC/PaymentMethods/MWCreditCard/TDSPay/ThreedsLoading/index.js +2 -2
- package/lib/components/pay/toC/PaymentMethods/MWCreditCard/TDSPay/ThreedsLoading/index.less +8 -0
- package/lib/components/pay/toC/PaymentMethods/MWCreditCard/tds2.js +66 -47
- package/lib/components/pay/toC/PaymentMethods/SuperPayAliPayH5/index.js +13 -1
- package/lib/components/pay/toC/PaymentMethods/index.js +30 -2
- package/lib/components/pay/toC/index.js +29 -9
- package/lib/components/pay/toC/locales.d.ts +3 -0
- package/lib/components/pay/toC/locales.js +3 -0
- package/lib/components/productSelect/components/TabProduct/index.js +74 -37
- package/lib/components/productSelect/components/TabProduct/tabs/index.less +1 -0
- package/lib/components/productSelect/index.d.ts +2 -0
- package/lib/components/schedules/utils.js +1 -1
- package/lib/components/shoppingCart/components/Cart/Product.js +26 -7
- package/lib/components/shoppingCart/type.d.ts +1 -0
- package/lib/components/subTotal/index.less +1 -1
- package/lib/components/ticketBooking/components/addServiceVariant/addService.js +53 -129
- package/lib/components/ticketBooking/components/addServiceVariant/utils.d.ts +8 -0
- package/lib/components/ticketBooking/components/addServiceVariant/utils.js +173 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/bookingDashboard/index.d.ts +7 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/bookingDashboard/index.js +75 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/bookingDashboard/index.less +5 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/bookingList/index.d.ts +12 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/bookingList/index.js +210 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/bookingList/index.less +69 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/bookingList/utils.d.ts +6 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/bookingList/utils.js +105 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/constants.d.ts +22 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/constants.js +57 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/index.d.ts +9 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/index.js +113 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/index.less +61 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/pisellFloatingPanel/index.d.ts +14 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/pisellFloatingPanel/index.js +84 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/serve.d.ts +0 -0
- package/lib/components/ticketBooking/components/bookingDataPanel/serve.js +0 -0
- package/lib/components/ticketBooking/components/floatButtons/index.d.ts +11 -0
- package/lib/components/ticketBooking/components/floatButtons/index.js +52 -0
- package/lib/components/ticketBooking/components/floatButtons/index.less +17 -0
- package/lib/components/ticketBooking/components/menuBar/index.js +63 -1
- package/lib/components/ticketBooking/components/menuBar/index.less +8 -0
- package/lib/components/ticketBooking/components/ticketBooking/index.js +227 -74
- package/lib/components/ticketBooking/components/ticketBooking/index.less +28 -0
- package/lib/components/ticketBooking/components/timeBar/index.d.ts +1 -0
- package/lib/components/ticketBooking/components/timeBar/index.js +21 -8
- package/lib/components/ticketBooking/hooks/pisellos/bookingTicket.d.ts +1 -0
- package/lib/components/ticketBooking/hooks/pisellos/bookingTicket.js +33 -0
- package/lib/components/ticketBooking/hooks/pisellos/index.d.ts +3 -0
- package/lib/components/ticketBooking/hooks/pisellos/index.js +27 -0
- package/lib/components/ticketBooking/hooks/pisellos/useCustomer.d.ts +25 -0
- package/lib/components/ticketBooking/hooks/pisellos/useCustomer.js +144 -0
- package/lib/components/ticketBooking/hooks/pisellos/useProducts.d.ts +12 -0
- package/lib/components/ticketBooking/hooks/pisellos/useProducts.js +47 -0
- package/lib/components/ticketBooking/hooks/pisellos/useScanCustomer.d.ts +5 -0
- package/lib/components/ticketBooking/hooks/pisellos/useScanCustomer.js +64 -0
- package/lib/components/ticketBooking/hooks/pisellos/useScanGlobal.d.ts +5 -0
- package/lib/components/ticketBooking/hooks/pisellos/useScanGlobal.js +65 -0
- package/lib/components/ticketBooking/hooks/pisellos/useScanGlobalHandle.d.ts +2 -0
- package/lib/components/ticketBooking/hooks/pisellos/useScanGlobalHandle.js +83 -0
- package/lib/components/ticketBooking/index.js +19 -3
- package/lib/components/ticketBooking/locales.d.ts +6 -0
- package/lib/components/ticketBooking/locales.js +9 -3
- package/lib/components/ticketBooking/serve.js +11 -11
- package/lib/components/ticketBooking/utils/index.d.ts +39 -2
- package/lib/components/ticketBooking/utils/index.js +71 -10
- package/lib/components/walletList/index.js +3 -3
- package/lib/hooks/useToast.d.ts +2 -0
- package/lib/hooks/useToast.js +42 -0
- package/lib/hooks/useTranslationOriginal.d.ts +1 -0
- package/lib/hooks/useTranslationOriginal.js +42 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +12 -0
- package/lib/plus/clientCard/index.d.ts +7 -0
- package/lib/plus/clientCard/index.js +442 -0
- package/lib/plus/clientCard/index.less +539 -0
- package/lib/plus/clientCard/line/index.d.ts +9 -0
- package/lib/plus/clientCard/line/index.js +153 -0
- package/lib/plus/clientCard/line/index.less +142 -0
- package/lib/plus/clientCard/locales.d.ts +18 -0
- package/lib/plus/clientCard/locales.js +41 -0
- package/lib/plus/clientCard/types.d.ts +126 -0
- package/lib/plus/clientCard/types.js +17 -0
- package/lib/plus/clientCard/utils.d.ts +8 -0
- package/lib/plus/clientCard/utils.js +75 -0
- package/lib/plus/clientName/index.d.ts +4 -0
- package/lib/plus/clientName/index.js +53 -0
- package/lib/plus/clientName/index.less +10 -0
- package/lib/plus/clientName/type.d.ts +13 -0
- package/lib/plus/clientName/type.js +17 -0
- package/lib/plus/clientName/utils.d.ts +2 -0
- package/lib/plus/clientName/utils.js +43 -0
- package/lib/plus/clinetSearch/Add/BirthdayField/index.d.ts +2 -0
- package/lib/plus/clinetSearch/Add/BirthdayField/index.js +256 -0
- package/lib/plus/clinetSearch/Add/GenderField/index.d.ts +2 -0
- package/lib/plus/clinetSearch/Add/GenderField/index.js +52 -0
- package/lib/plus/clinetSearch/Add/PhoneField/index.d.ts +2 -0
- package/lib/plus/clinetSearch/Add/PhoneField/index.js +78 -0
- package/lib/plus/clinetSearch/Add/PhoneField/serve.d.ts +2 -0
- package/lib/plus/clinetSearch/Add/PhoneField/serve.js +193 -0
- package/lib/plus/clinetSearch/Add/index.d.ts +18 -0
- package/lib/plus/clinetSearch/Add/index.js +243 -0
- package/lib/plus/clinetSearch/Add/index.less +30 -0
- package/lib/plus/clinetSearch/InfiniteScroll/InfiniteScroll.d.ts +5 -0
- package/lib/plus/clinetSearch/InfiniteScroll/InfiniteScroll.js +235 -0
- package/lib/plus/clinetSearch/InfiniteScroll/index.d.ts +2 -0
- package/lib/plus/clinetSearch/InfiniteScroll/index.js +35 -0
- package/lib/plus/clinetSearch/InfiniteScroll/types.d.ts +46 -0
- package/lib/plus/clinetSearch/InfiniteScroll/types.js +17 -0
- package/lib/plus/clinetSearch/index.d.ts +18 -0
- package/lib/plus/clinetSearch/index.js +205 -0
- package/lib/plus/clinetSearch/index.less +91 -0
- package/lib/plus/clinetSearch/locales.d.ts +102 -0
- package/lib/plus/clinetSearch/locales.js +125 -0
- package/lib/plus/clinetSearch/serve.d.ts +1 -0
- package/lib/plus/clinetSearch/serve.js +33 -0
- package/lib/plus/clinetSearch/types.d.ts +49 -0
- package/lib/plus/clinetSearch/types.js +17 -0
- package/lib/plus/noteModal/AddTempModal.d.ts +7 -0
- package/lib/plus/noteModal/AddTempModal.js +95 -0
- package/lib/plus/noteModal/index.d.ts +4 -0
- package/lib/plus/noteModal/index.js +199 -0
- package/lib/plus/noteModal/index.less +168 -0
- package/lib/plus/noteModal/locales.d.ts +33 -0
- package/lib/plus/noteModal/locales.js +56 -0
- package/lib/plus/noteModal/types.d.ts +17 -0
- package/lib/plus/noteModal/types.js +17 -0
- package/lib/pro/comprehensiveSearch/camera.svg +4 -0
- package/lib/pro/comprehensiveSearch/hooks/useNativeScanner.d.ts +5 -0
- package/lib/pro/comprehensiveSearch/hooks/useNativeScanner.js +56 -0
- package/lib/pro/comprehensiveSearch/hooks/useTerminalPeripherals.d.ts +9 -0
- package/lib/pro/comprehensiveSearch/hooks/useTerminalPeripherals.js +70 -0
- package/lib/pro/comprehensiveSearch/index.d.ts +9 -0
- package/lib/pro/comprehensiveSearch/index.js +259 -0
- package/lib/pro/comprehensiveSearch/index.less +323 -0
- package/lib/pro/comprehensiveSearch/locales.d.ts +18 -0
- package/lib/pro/comprehensiveSearch/locales.js +41 -0
- package/lib/pro/comprehensiveSearch/types.d.ts +31 -0
- package/lib/pro/comprehensiveSearch/types.js +17 -0
- package/lib/pro/numberKeyboard/index.d.ts +28 -0
- package/lib/pro/numberKeyboard/index.js +182 -0
- package/lib/pro/numberKeyboard/index.less +25 -0
- package/lib/pro/numberKeyboard/locales.d.ts +12 -0
- package/lib/pro/numberKeyboard/locales.js +35 -0
- package/lib/pro/pisellNumberSelector/example.d.ts +3 -0
- package/lib/pro/pisellNumberSelector/example.js +93 -0
- package/lib/pro/pisellNumberSelector/index.d.ts +26 -0
- package/lib/pro/pisellNumberSelector/index.js +260 -0
- package/lib/pro/pisellNumberSelector/index.less +193 -0
- package/lib/pro/pisellPhoneKeyboard/index.d.ts +12 -0
- package/lib/pro/pisellPhoneKeyboard/index.js +220 -0
- package/lib/pro/pisellPhoneKeyboard/index.less +157 -0
- package/lib/pro/pisellPhoneKeyboard/locales.d.ts +12 -0
- package/lib/pro/pisellPhoneKeyboard/locales.js +35 -0
- package/lib/pro/pisellPriceKeyboardModal/PisellPriceKeyboardModal.d.ts +5 -0
- package/lib/pro/pisellPriceKeyboardModal/PisellPriceKeyboardModal.js +157 -0
- package/lib/pro/pisellPriceKeyboardModal/PisellPriceKeyboardModal.less +9 -0
- package/lib/pro/pisellPriceKeyboardModal/index.d.ts +2 -0
- package/lib/pro/pisellPriceKeyboardModal/index.js +35 -0
- package/lib/pro/pisellPriceKeyboardModal/types.d.ts +25 -0
- package/lib/pro/pisellPriceKeyboardModal/types.js +17 -0
- package/lib/pro/pisellPriceRadio/index.d.ts +26 -0
- package/lib/pro/pisellPriceRadio/index.js +130 -0
- package/lib/pro/pisellPriceRadio/index.less +158 -0
- package/lib/pro/skuDetailModal/index.d.ts +5 -0
- package/lib/pro/skuDetailModal/index.js +311 -0
- package/lib/pro/skuDetailModal/index.less +236 -0
- package/lib/pro/skuDetailModal/locales.d.ts +48 -0
- package/lib/pro/skuDetailModal/locales.js +71 -0
- package/lib/pro/skuDetailModal/types.d.ts +347 -0
- package/lib/pro/skuDetailModal/types.js +17 -0
- package/lowcode/client-card/fragments/cardStyle.ts +63 -0
- package/lowcode/client-card/fragments/nameStyle.ts +34 -0
- package/lowcode/client-card/fragments/pisellAvatar.ts +87 -0
- package/lowcode/client-card/fragments/tagConfig.ts +88 -0
- package/lowcode/client-card/meta.ts +337 -0
- package/lowcode/comprehensive-search/meta.ts +261 -0
- package/package.json +26 -26
@@ -34,39 +34,57 @@ __export(addNote_exports, {
|
|
34
34
|
module.exports = __toCommonJS(addNote_exports);
|
35
35
|
var import_react = __toESM(require("react"));
|
36
36
|
var import_antd = require("antd");
|
37
|
-
var
|
37
|
+
var import_Edit05 = __toESM(require("@pisell/icon/es/Edit05"));
|
38
38
|
var import_index = require("./index.less");
|
39
39
|
var import_utils = require("@pisell/utils");
|
40
|
-
var
|
41
|
-
|
42
|
-
const
|
43
|
-
|
44
|
-
|
45
|
-
}, [value]);
|
46
|
-
const _onChange = (e) => {
|
47
|
-
_setValue(e.target.value);
|
40
|
+
var import_noteModal = __toESM(require("../../../../plus/noteModal"));
|
41
|
+
var AddNote = ({ value, onChange, title, placeholder }) => {
|
42
|
+
const [modalOpen, setModalOpen] = (0, import_react.useState)(false);
|
43
|
+
const handleOpenModal = () => {
|
44
|
+
setModalOpen(true);
|
48
45
|
};
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
46
|
+
const handleConfirm = (newValue) => {
|
47
|
+
onChange == null ? void 0 : onChange(newValue);
|
48
|
+
setModalOpen(false);
|
49
|
+
};
|
50
|
+
const handleDelete = () => {
|
51
|
+
onChange == null ? void 0 : onChange("");
|
52
|
+
setModalOpen(false);
|
53
|
+
};
|
54
|
+
const handleCancel = () => {
|
55
|
+
setModalOpen(false);
|
56
|
+
};
|
57
|
+
return /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-notes" }, /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-notes-label" }, title), /* @__PURE__ */ import_react.default.createElement(
|
55
58
|
"div",
|
56
59
|
{
|
57
|
-
className: "pisell-lowcode__booking-notes-input",
|
58
|
-
style: { marginTop: title ? 8 : 0 }
|
60
|
+
className: "pisell-lowcode__booking-notes-input-area",
|
61
|
+
style: { marginTop: title ? 8 : 0 },
|
62
|
+
onClick: handleOpenModal
|
59
63
|
},
|
64
|
+
value ? /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-notes-content" }, value) : /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-notes-placeholder" }, placeholder || import_utils.locales.getText("pisell2.text.add-order-notes")),
|
60
65
|
/* @__PURE__ */ import_react.default.createElement(
|
61
|
-
import_antd.
|
66
|
+
import_antd.Button,
|
62
67
|
{
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
+
type: "text",
|
69
|
+
icon: /* @__PURE__ */ import_react.default.createElement(import_Edit05.default, null),
|
70
|
+
size: "small",
|
71
|
+
className: "pisell-lowcode__booking-notes-edit-btn",
|
72
|
+
onClick: (e) => {
|
73
|
+
e.stopPropagation();
|
74
|
+
handleOpenModal();
|
75
|
+
}
|
68
76
|
}
|
69
77
|
)
|
78
|
+
)), /* @__PURE__ */ import_react.default.createElement(
|
79
|
+
import_noteModal.default,
|
80
|
+
{
|
81
|
+
open: modalOpen,
|
82
|
+
title: title || import_utils.locales.getText("pisell2.text.add-order-notes"),
|
83
|
+
value,
|
84
|
+
onConfirm: handleConfirm,
|
85
|
+
onDelete: handleDelete,
|
86
|
+
onCancel: handleCancel
|
87
|
+
}
|
70
88
|
));
|
71
89
|
};
|
72
90
|
var addNote_default = AddNote;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
.pisell-lowcode__booking-notes {
|
2
2
|
padding: 20px 0;
|
3
3
|
}
|
4
|
+
|
4
5
|
.pisell-lowcode__booking-notes-label {
|
5
6
|
font-size: 16px;
|
6
7
|
font-weight: 500;
|
@@ -10,6 +11,58 @@
|
|
10
11
|
margin-top: 8px;
|
11
12
|
}
|
12
13
|
|
14
|
+
.pisell-lowcode__booking-notes-input-area {
|
15
|
+
position: relative;
|
16
|
+
min-height: 80px;
|
17
|
+
padding: 12px;
|
18
|
+
border: 1px solid #d9d9d9;
|
19
|
+
border-radius: 6px;
|
20
|
+
background-color: #ffffff;
|
21
|
+
cursor: pointer;
|
22
|
+
transition: all 0.2s;
|
23
|
+
|
24
|
+
&:hover {
|
25
|
+
border-color: #4096ff;
|
26
|
+
}
|
27
|
+
|
28
|
+
&:focus-within {
|
29
|
+
border-color: #4096ff;
|
30
|
+
box-shadow: 0 0 0 2px rgba(5, 145, 255, 0.1);
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
.pisell-lowcode__booking-notes-content {
|
35
|
+
font-size: 14px;
|
36
|
+
color: rgba(0, 0, 0, 0.88);
|
37
|
+
line-height: 1.5714285714285714;
|
38
|
+
white-space: pre-wrap;
|
39
|
+
word-break: break-word;
|
40
|
+
padding-right: 32px;
|
41
|
+
}
|
42
|
+
|
43
|
+
.pisell-lowcode__booking-notes-placeholder {
|
44
|
+
font-size: 14px;
|
45
|
+
color: rgba(0, 0, 0, 0.25);
|
46
|
+
line-height: 1.5714285714285714;
|
47
|
+
padding-right: 32px;
|
48
|
+
}
|
49
|
+
|
50
|
+
.pisell-lowcode__booking-notes-edit-btn {
|
51
|
+
position: absolute;
|
52
|
+
top: 8px;
|
53
|
+
right: 8px;
|
54
|
+
display: flex;
|
55
|
+
align-items: center;
|
56
|
+
justify-content: center;
|
57
|
+
width: 24px;
|
58
|
+
height: 24px;
|
59
|
+
color: rgba(0, 0, 0, 0.45);
|
60
|
+
|
61
|
+
&:hover {
|
62
|
+
color: #4096ff;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
13
66
|
.pisell-lowcode__booking-notes-desc {
|
14
67
|
margin-top: 8px;
|
15
68
|
}
|
@@ -5,7 +5,8 @@ export declare enum EftposEnum {
|
|
5
5
|
Tyro = "tyro",
|
6
6
|
/** 后端支付 - 支付 + 退款 */
|
7
7
|
Windcave = "windcave",
|
8
|
-
Stripe = "stripe"
|
8
|
+
Stripe = "stripe",
|
9
|
+
Linkly = "linkly"
|
9
10
|
}
|
10
11
|
export declare enum StatusEnum {
|
11
12
|
Loading = "loading",
|
@@ -147,6 +148,8 @@ export declare enum PayStatus {
|
|
147
148
|
'Success' = "200",
|
148
149
|
/** 未生成交易记录 */
|
149
150
|
'NoPay' = "4004",
|
151
|
+
/** 配对失效 */
|
152
|
+
'PairingFailure' = "606020",
|
150
153
|
/** 支付失败 */
|
151
154
|
'Unknown' = "701000",
|
152
155
|
/** 交易请求超时 */
|
@@ -35,6 +35,7 @@ var EftposEnum = /* @__PURE__ */ ((EftposEnum2) => {
|
|
35
35
|
EftposEnum2["Tyro"] = "tyro";
|
36
36
|
EftposEnum2["Windcave"] = "windcave";
|
37
37
|
EftposEnum2["Stripe"] = "stripe";
|
38
|
+
EftposEnum2["Linkly"] = "linkly";
|
38
39
|
return EftposEnum2;
|
39
40
|
})(EftposEnum || {});
|
40
41
|
var StatusEnum = /* @__PURE__ */ ((StatusEnum2) => {
|
@@ -88,6 +89,7 @@ var PayRouteEnum = /* @__PURE__ */ ((PayRouteEnum2) => {
|
|
88
89
|
var PayStatus = /* @__PURE__ */ ((PayStatus2) => {
|
89
90
|
PayStatus2["Success"] = "200";
|
90
91
|
PayStatus2["NoPay"] = "4004";
|
92
|
+
PayStatus2["PairingFailure"] = "606020";
|
91
93
|
PayStatus2["Unknown"] = "701000";
|
92
94
|
PayStatus2["Timeout"] = "701001";
|
93
95
|
PayStatus2["PayOtherEftposFailed"] = "701003";
|
@@ -19,7 +19,7 @@ export declare const useStoreRef: <T extends {
|
|
19
19
|
readonly netRef: React.MutableRefObject<boolean | undefined>;
|
20
20
|
readonly symbolRef: React.MutableRefObject<string>;
|
21
21
|
readonly amountRef: React.MutableRefObject<string | number>;
|
22
|
-
readonly eftposRef: React.MutableRefObject<"payo" | "tyro" | "windcave" | "stripe">;
|
22
|
+
readonly eftposRef: React.MutableRefObject<"payo" | "tyro" | "windcave" | "stripe" | "linkly">;
|
23
23
|
readonly clientRef: React.MutableRefObject<ClientEnum>;
|
24
24
|
readonly dataRef: React.MutableRefObject<import("./store").State>;
|
25
25
|
};
|
@@ -128,6 +128,7 @@ var useFail = (index) => {
|
|
128
128
|
return;
|
129
129
|
}
|
130
130
|
const [code] = [`${res.code}`];
|
131
|
+
console.log("code---->>>>>>>", code);
|
131
132
|
if (code === import_const.PayStatus.Unknown) {
|
132
133
|
steps[index].title = import_utils.locales.getText("page.eftpos-pay.text.failed")(
|
133
134
|
modeRef.current
|
@@ -168,8 +169,12 @@ var useFail = (index) => {
|
|
168
169
|
if (isMark) {
|
169
170
|
if (clientRef.current === import_const2.ClientEnum.User) {
|
170
171
|
steps[index].status = "fail";
|
171
|
-
steps[index].title = import_utils.locales.getText(
|
172
|
-
|
172
|
+
steps[index].title = import_utils.locales.getText(
|
173
|
+
"page.eftpos-pay.text.timedout.title"
|
174
|
+
);
|
175
|
+
steps[index].fail = import_utils.locales.getText(
|
176
|
+
"page.eftpos-pay.text.transaction.eftpos.fail.other"
|
177
|
+
);
|
173
178
|
steps[index].custom = steps[index].custom ? { ...steps[index].custom, isPosNetworkError: true } : { isPosNetworkError: true };
|
174
179
|
dispatch((0, import_store.updateSteps)(steps));
|
175
180
|
dispatch((0, import_store.updateComponent)("Fail"));
|
@@ -310,7 +315,9 @@ ${import_utils.locales.getText(
|
|
310
315
|
)}
|
311
316
|
${import_utils.locales.getText(
|
312
317
|
"page.eftpos-pay.text.transaction.eftpos.fail.if"
|
313
|
-
)(modeRef.current)}` : import_utils.locales.getText(
|
318
|
+
)(modeRef.current)}` : import_utils.locales.getText(
|
319
|
+
"page.eftpos-pay.text.transaction.eftpos.fail.other"
|
320
|
+
);
|
314
321
|
steps[index].status = "warn";
|
315
322
|
steps[index].custom = steps[index].custom ? { ...steps[index].custom, isPosNetworkError: true } : { isPosNetworkError: true };
|
316
323
|
dispatch((0, import_store.updateSteps)(steps));
|
@@ -359,7 +366,7 @@ ${import_utils.locales.getText(
|
|
359
366
|
);
|
360
367
|
return;
|
361
368
|
}
|
362
|
-
if (code === import_const.PayStatus.UserConfigError) {
|
369
|
+
if (code === import_const.PayStatus.UserConfigError || code === import_const.PayStatus.PairingFailure) {
|
363
370
|
steps[index].title = import_utils.locales.getText(
|
364
371
|
"page.eftpos-pay.text.transaction.user.config.title"
|
365
372
|
);
|
@@ -139,7 +139,7 @@ var eftposPay_default = (props) => {
|
|
139
139
|
}, [mode, state]);
|
140
140
|
(0, import_react.useEffect)(() => {
|
141
141
|
document.body.id = "body";
|
142
|
-
console.log("初始化 ........
|
142
|
+
console.log("初始化 ........112218017777");
|
143
143
|
}, []);
|
144
144
|
console.log("props?.params?.device_number = ", (_e = props == null ? void 0 : props.params) == null ? void 0 : _e.device_number);
|
145
145
|
const api = (0, import_react.useMemo)(() => {
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { State } from '../store';
|
2
|
+
import { ModeEnum } from '../const';
|
3
|
+
export declare const getStep: (mode?: ModeEnum) => State['steps'];
|
4
|
+
declare const _default: (params: any) => State;
|
5
|
+
export default _default;
|
6
|
+
export declare enum EVisibleButtonType {
|
7
|
+
/** 取消按钮 */
|
8
|
+
CancelButton = "CancelButton",
|
9
|
+
/** 等待按钮 */
|
10
|
+
WaitButton = "WaitButton"
|
11
|
+
}
|
12
|
+
export declare enum LinklyActionStatus {
|
13
|
+
/** 空 */
|
14
|
+
Empty = "Empty",
|
15
|
+
/** 取消 */
|
16
|
+
Cancel = "Cancel",
|
17
|
+
/** 取消中 */
|
18
|
+
CancelWaiting = "CancelWaiting",
|
19
|
+
/** 签名 */
|
20
|
+
Signature = "Signature",
|
21
|
+
/** 签名等待中 */
|
22
|
+
SignatureWaiting = "SignatureWaiting"
|
23
|
+
}
|
@@ -0,0 +1,102 @@
|
|
1
|
+
var __defProp = Object.defineProperty;
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
5
|
+
var __export = (target, all) => {
|
6
|
+
for (var name in all)
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
8
|
+
};
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
11
|
+
for (let key of __getOwnPropNames(from))
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
14
|
+
}
|
15
|
+
return to;
|
16
|
+
};
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
+
|
19
|
+
// src/components/eftposPay/linkly/const.ts
|
20
|
+
var const_exports = {};
|
21
|
+
__export(const_exports, {
|
22
|
+
EVisibleButtonType: () => EVisibleButtonType,
|
23
|
+
LinklyActionStatus: () => LinklyActionStatus,
|
24
|
+
default: () => const_default,
|
25
|
+
getStep: () => getStep
|
26
|
+
});
|
27
|
+
module.exports = __toCommonJS(const_exports);
|
28
|
+
var import_utils = require("@pisell/utils");
|
29
|
+
var import_const = require("../const");
|
30
|
+
var getStep = (mode = import_const.ModeEnum.Pay) => [
|
31
|
+
{
|
32
|
+
key: Date.now(),
|
33
|
+
title: import_utils.locales.getText("page.eftpos-pay.text.loading")(mode),
|
34
|
+
// 'Payment in process...',
|
35
|
+
text: import_utils.locales.getText("page.eftpos-pay.text.waiting.processing"),
|
36
|
+
// 'Waiting for the processing...',
|
37
|
+
warn: "",
|
38
|
+
tip: import_utils.locales.getText("page.eftpos-pay.text.processing"),
|
39
|
+
// 'processing...',
|
40
|
+
status: import_const.StatusEnum.Loading
|
41
|
+
}
|
42
|
+
];
|
43
|
+
var const_default = (params) => {
|
44
|
+
const {
|
45
|
+
order_id,
|
46
|
+
name,
|
47
|
+
symbol,
|
48
|
+
amount,
|
49
|
+
mode,
|
50
|
+
number,
|
51
|
+
pay,
|
52
|
+
device,
|
53
|
+
net,
|
54
|
+
client,
|
55
|
+
...other
|
56
|
+
} = params || {
|
57
|
+
mode: import_const.ModeEnum.Pay
|
58
|
+
};
|
59
|
+
console.log("params =>>>>>> ", params);
|
60
|
+
return {
|
61
|
+
order_id,
|
62
|
+
name,
|
63
|
+
symbol,
|
64
|
+
amount,
|
65
|
+
mode,
|
66
|
+
eftpos: import_const.EftposEnum.Linkly,
|
67
|
+
key: Date.now(),
|
68
|
+
step: 0,
|
69
|
+
type: import_const.PayRouteEnum.Step,
|
70
|
+
title: import_utils.locales.getText("page.eftpos-pay.text.loading")(mode),
|
71
|
+
component: "",
|
72
|
+
status: import_const.StatusEnum.Loading,
|
73
|
+
steps: getStep(mode),
|
74
|
+
render: true,
|
75
|
+
client: client !== "undefined" ? client : import_const.ClientEnum.Merchant,
|
76
|
+
warn: "",
|
77
|
+
custom: other || {},
|
78
|
+
...typeof net !== "undefined" ? { net } : {},
|
79
|
+
...typeof number !== "undefined" ? { number } : {},
|
80
|
+
...typeof pay !== "undefined" ? { pay } : {},
|
81
|
+
...typeof device !== "undefined" ? { device } : {}
|
82
|
+
};
|
83
|
+
};
|
84
|
+
var EVisibleButtonType = /* @__PURE__ */ ((EVisibleButtonType2) => {
|
85
|
+
EVisibleButtonType2["CancelButton"] = "CancelButton";
|
86
|
+
EVisibleButtonType2["WaitButton"] = "WaitButton";
|
87
|
+
return EVisibleButtonType2;
|
88
|
+
})(EVisibleButtonType || {});
|
89
|
+
var LinklyActionStatus = /* @__PURE__ */ ((LinklyActionStatus2) => {
|
90
|
+
LinklyActionStatus2["Empty"] = "Empty";
|
91
|
+
LinklyActionStatus2["Cancel"] = "Cancel";
|
92
|
+
LinklyActionStatus2["CancelWaiting"] = "CancelWaiting";
|
93
|
+
LinklyActionStatus2["Signature"] = "Signature";
|
94
|
+
LinklyActionStatus2["SignatureWaiting"] = "SignatureWaiting";
|
95
|
+
return LinklyActionStatus2;
|
96
|
+
})(LinklyActionStatus || {});
|
97
|
+
// Annotate the CommonJS export names for ESM import in node:
|
98
|
+
0 && (module.exports = {
|
99
|
+
EVisibleButtonType,
|
100
|
+
LinklyActionStatus,
|
101
|
+
getStep
|
102
|
+
});
|
@@ -0,0 +1,25 @@
|
|
1
|
+
var __defProp = Object.defineProperty;
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
5
|
+
var __copyProps = (to, from, except, desc) => {
|
6
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
7
|
+
for (let key of __getOwnPropNames(from))
|
8
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
9
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
10
|
+
}
|
11
|
+
return to;
|
12
|
+
};
|
13
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
15
|
+
|
16
|
+
// src/components/eftposPay/linkly/hooks/index.ts
|
17
|
+
var hooks_exports = {};
|
18
|
+
module.exports = __toCommonJS(hooks_exports);
|
19
|
+
__reExport(hooks_exports, require("./normal"), module.exports);
|
20
|
+
__reExport(hooks_exports, require("./useTimeQuery"), module.exports);
|
21
|
+
// Annotate the CommonJS export names for ESM import in node:
|
22
|
+
0 && (module.exports = {
|
23
|
+
...require("./normal"),
|
24
|
+
...require("./useTimeQuery")
|
25
|
+
});
|
@@ -0,0 +1,30 @@
|
|
1
|
+
/**
|
2
|
+
* 支付或退款
|
3
|
+
* @param failAction 失败回调
|
4
|
+
*/
|
5
|
+
export declare const useLinklyPayOrRefund: (handleCheck: () => boolean) => {
|
6
|
+
action: {
|
7
|
+
pay: import("ahooks/lib/useRequest/src/types").Result<any, [data: any]>;
|
8
|
+
};
|
9
|
+
payOrRefund: (resultQuery: any, handleLinklySuccess: any) => void;
|
10
|
+
};
|
11
|
+
/**
|
12
|
+
* @title: 取消支付或退款
|
13
|
+
* @description: 取消支付或退款调用接口后不管成功还是失败都需要调用支付查询接口
|
14
|
+
*/
|
15
|
+
export declare const useLinklyCancel: (handleCheck: () => boolean) => {
|
16
|
+
action: {
|
17
|
+
cancel: import("ahooks/lib/useRequest/src/types").Result<any, [param: any]>;
|
18
|
+
};
|
19
|
+
linklyCancel: (resultQuery: any) => void;
|
20
|
+
};
|
21
|
+
/**
|
22
|
+
* @title: 支付或退款签名
|
23
|
+
* @description: 支付或退款签名调用接口后不管成功还是失败都需要调用支付查询接口
|
24
|
+
*/
|
25
|
+
export declare const useLinklySignature: (handleCheck: () => boolean) => {
|
26
|
+
action: {
|
27
|
+
signature: import("ahooks/lib/useRequest/src/types").Result<any, [param: any]>;
|
28
|
+
};
|
29
|
+
linklySignature: (status: number, resultQuery: any) => void;
|
30
|
+
};
|
@@ -0,0 +1,242 @@
|
|
1
|
+
var __defProp = Object.defineProperty;
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
5
|
+
var __export = (target, all) => {
|
6
|
+
for (var name in all)
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
8
|
+
};
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
11
|
+
for (let key of __getOwnPropNames(from))
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
14
|
+
}
|
15
|
+
return to;
|
16
|
+
};
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
+
|
19
|
+
// src/components/eftposPay/linkly/hooks/normal.ts
|
20
|
+
var normal_exports = {};
|
21
|
+
__export(normal_exports, {
|
22
|
+
useLinklyCancel: () => useLinklyCancel,
|
23
|
+
useLinklyPayOrRefund: () => useLinklyPayOrRefund,
|
24
|
+
useLinklySignature: () => useLinklySignature
|
25
|
+
});
|
26
|
+
module.exports = __toCommonJS(normal_exports);
|
27
|
+
var import_ahooks = require("ahooks");
|
28
|
+
var import_react = require("react");
|
29
|
+
var import_utils = require("@pisell/utils");
|
30
|
+
var import_service = require("../service");
|
31
|
+
var import_hooks = require("../../hooks");
|
32
|
+
var import_const = require("../../const");
|
33
|
+
var import_store = require("../../store");
|
34
|
+
var import_const2 = require("../const");
|
35
|
+
var useLinklyPayOrRefund = (handleCheck) => {
|
36
|
+
const dispatch = (0, import_store.useDispatch)();
|
37
|
+
const { numRef, modeRef, orderIdRef, deviceRef, payRef, amountRef } = (0, import_hooks.useStoreRef)();
|
38
|
+
const fail = (0, import_hooks.useFail)(0);
|
39
|
+
const failRef = (0, import_react.useRef)(fail);
|
40
|
+
const resultQueryRef = (0, import_react.useRef)(null);
|
41
|
+
const handleLinklySuccessRef = (0, import_react.useRef)(null);
|
42
|
+
(0, import_react.useEffect)(() => {
|
43
|
+
failRef.current = fail;
|
44
|
+
}, [fail]);
|
45
|
+
const isPay = modeRef.current === import_const.ModeEnum.Pay || modeRef.current === import_const.ModeEnum.FullPay;
|
46
|
+
const _pay = (0, import_ahooks.useRequest)(isPay ? import_service.linklyPayApi : import_service.linklyRefundApi, {
|
47
|
+
manual: true,
|
48
|
+
onSuccess: (res) => {
|
49
|
+
onSuccess(res);
|
50
|
+
},
|
51
|
+
onError: (error) => {
|
52
|
+
onError(error);
|
53
|
+
}
|
54
|
+
});
|
55
|
+
const onSuccess = (res) => {
|
56
|
+
var _a, _b, _c, _d;
|
57
|
+
console.log(`linkly${isPay ? "Pay" : "Refund"}Success---->>>>>>>`, res);
|
58
|
+
if (!handleCheck()) {
|
59
|
+
return;
|
60
|
+
}
|
61
|
+
(0, import_utils.sendWarningLog)({
|
62
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}-接口成功`,
|
63
|
+
content: [{ key: "response", value: JSON.stringify(res) }]
|
64
|
+
});
|
65
|
+
const status = (_a = res == null ? void 0 : res.data) == null ? void 0 : _a.status;
|
66
|
+
if (status === 0) {
|
67
|
+
numRef.current = (_b = res == null ? void 0 : res.data) == null ? void 0 : _b.session_id;
|
68
|
+
dispatch((0, import_store.updateState)({ number: numRef.current }));
|
69
|
+
dispatch((0, import_store.updateCustom)({ actionStatus: import_const2.LinklyActionStatus.Cancel }));
|
70
|
+
setTimeout(() => {
|
71
|
+
var _a2;
|
72
|
+
(_a2 = resultQueryRef.current) == null ? void 0 : _a2.call(resultQueryRef);
|
73
|
+
});
|
74
|
+
return;
|
75
|
+
}
|
76
|
+
dispatch((0, import_store.updateCustom)({ actionStatus: import_const2.LinklyActionStatus.Empty }));
|
77
|
+
if (status === 1) {
|
78
|
+
(_c = handleLinklySuccessRef.current) == null ? void 0 : _c.call(handleLinklySuccessRef, res);
|
79
|
+
return;
|
80
|
+
}
|
81
|
+
if (status < 0) {
|
82
|
+
res.code = import_const.PayStatus.Unknown;
|
83
|
+
(_d = failRef.current) == null ? void 0 : _d.call(failRef, res, false);
|
84
|
+
}
|
85
|
+
};
|
86
|
+
const onError = (error) => {
|
87
|
+
var _a;
|
88
|
+
console.log(`linkly${isPay ? "Pay" : "Refund"}Error---->>>>>>>`, error);
|
89
|
+
if (!handleCheck()) {
|
90
|
+
return;
|
91
|
+
}
|
92
|
+
(0, import_utils.sendWarningLog)({
|
93
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}-接口失败`,
|
94
|
+
content: [{ key: "error", value: JSON.stringify(error) }]
|
95
|
+
});
|
96
|
+
(_a = failRef.current) == null ? void 0 : _a.call(failRef, error, false);
|
97
|
+
};
|
98
|
+
const payOrRefund = (resultQuery, handleLinklySuccess) => {
|
99
|
+
var _a, _b, _c;
|
100
|
+
handleLinklySuccessRef.current = handleLinklySuccess;
|
101
|
+
resultQueryRef.current = resultQuery;
|
102
|
+
const param = {
|
103
|
+
// 订单id
|
104
|
+
order_id: orderIdRef.current,
|
105
|
+
// 设备id
|
106
|
+
pinpad_id: (_b = (_a = deviceRef == null ? void 0 : deviceRef.current) == null ? void 0 : _a.metadata) == null ? void 0 : _b.linkly_pinpad_id,
|
107
|
+
// 交易金额, 包含选择的订单金额+手续费,订单金额+手续费=交易金额
|
108
|
+
amount: isPay ? (_c = payRef.current) == null ? void 0 : _c.total : amountRef.current
|
109
|
+
};
|
110
|
+
(0, import_utils.sendWarningLog)({
|
111
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}`,
|
112
|
+
content: [{ key: "params", value: JSON.stringify(param) }]
|
113
|
+
});
|
114
|
+
_pay.run(param);
|
115
|
+
};
|
116
|
+
return {
|
117
|
+
action: { pay: _pay },
|
118
|
+
payOrRefund
|
119
|
+
};
|
120
|
+
};
|
121
|
+
var useLinklyCancel = (handleCheck) => {
|
122
|
+
const dispatch = (0, import_store.useDispatch)();
|
123
|
+
const { numRef, modeRef, deviceRef } = (0, import_hooks.useStoreRef)();
|
124
|
+
const resultQueryRef = (0, import_react.useRef)(null);
|
125
|
+
const isPay = modeRef.current === import_const.ModeEnum.Pay || modeRef.current === import_const.ModeEnum.FullPay;
|
126
|
+
const cancelAction = (res, type) => {
|
127
|
+
var _a;
|
128
|
+
dispatch((0, import_store.updateCustom)({ buttonDisabled: false }));
|
129
|
+
if (!handleCheck()) {
|
130
|
+
return;
|
131
|
+
}
|
132
|
+
if (type === "success") {
|
133
|
+
(0, import_utils.sendWarningLog)({
|
134
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}-取消成功`,
|
135
|
+
content: [{ key: "response", value: JSON.stringify(res) }]
|
136
|
+
});
|
137
|
+
} else {
|
138
|
+
(0, import_utils.sendWarningLog)({
|
139
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}-取消失败`,
|
140
|
+
content: [{ key: "error", value: JSON.stringify(res) }]
|
141
|
+
});
|
142
|
+
}
|
143
|
+
(_a = resultQueryRef.current) == null ? void 0 : _a.call(resultQueryRef);
|
144
|
+
};
|
145
|
+
const _cancel = (0, import_ahooks.useRequest)(
|
146
|
+
isPay ? import_service.linklyPayCancelApi : import_service.linklyRefundCancelApi,
|
147
|
+
{
|
148
|
+
manual: true,
|
149
|
+
onSuccess: (res) => cancelAction(res, "success"),
|
150
|
+
onError: (error) => cancelAction(error, "error")
|
151
|
+
}
|
152
|
+
);
|
153
|
+
const linklyCancel = (resultQuery) => {
|
154
|
+
var _a, _b;
|
155
|
+
resultQueryRef.current = resultQuery;
|
156
|
+
dispatch((0, import_store.updateCustom)({ buttonDisabled: true }));
|
157
|
+
const param = {
|
158
|
+
// 设备id
|
159
|
+
pinpad_id: (_b = (_a = deviceRef == null ? void 0 : deviceRef.current) == null ? void 0 : _a.metadata) == null ? void 0 : _b.linkly_pinpad_id,
|
160
|
+
// 交易流水号
|
161
|
+
session_id: numRef.current
|
162
|
+
};
|
163
|
+
(0, import_utils.sendWarningLog)({
|
164
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}-取消`,
|
165
|
+
content: [{ key: "params", value: JSON.stringify(param) }]
|
166
|
+
});
|
167
|
+
_cancel.run(param);
|
168
|
+
dispatch((0, import_store.updateCustom)({ actionStatus: import_const2.LinklyActionStatus.CancelWaiting }));
|
169
|
+
};
|
170
|
+
return {
|
171
|
+
action: { cancel: _cancel },
|
172
|
+
linklyCancel
|
173
|
+
};
|
174
|
+
};
|
175
|
+
var useLinklySignature = (handleCheck) => {
|
176
|
+
const dispatch = (0, import_store.useDispatch)();
|
177
|
+
const { numRef, modeRef, deviceRef } = (0, import_hooks.useStoreRef)();
|
178
|
+
const resultQueryRef = (0, import_react.useRef)(null);
|
179
|
+
const isPay = modeRef.current === import_const.ModeEnum.Pay || modeRef.current === import_const.ModeEnum.FullPay;
|
180
|
+
const signatureAction = (res, type) => {
|
181
|
+
var _a;
|
182
|
+
console.log("signatureAction---->>>>>>>", res);
|
183
|
+
if (!handleCheck()) {
|
184
|
+
return;
|
185
|
+
}
|
186
|
+
if (type === "success") {
|
187
|
+
(0, import_utils.sendWarningLog)({
|
188
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}-签名成功`,
|
189
|
+
content: [{ key: "response", value: JSON.stringify(res) }]
|
190
|
+
});
|
191
|
+
} else {
|
192
|
+
(0, import_utils.sendWarningLog)({
|
193
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}-签名失败`,
|
194
|
+
content: [{ key: "error", value: JSON.stringify(res) }]
|
195
|
+
});
|
196
|
+
}
|
197
|
+
(_a = resultQueryRef.current) == null ? void 0 : _a.call(resultQueryRef);
|
198
|
+
};
|
199
|
+
const _signature = (0, import_ahooks.useRequest)(
|
200
|
+
isPay ? import_service.linklyPaySignatureApi : import_service.linklyRefundSignatureApi,
|
201
|
+
{
|
202
|
+
manual: true,
|
203
|
+
onSuccess: (res) => signatureAction(res, "success"),
|
204
|
+
onError: (error) => signatureAction(error, "error")
|
205
|
+
}
|
206
|
+
);
|
207
|
+
const linklySignature = (status, resultQuery) => {
|
208
|
+
var _a, _b;
|
209
|
+
resultQueryRef.current = resultQuery;
|
210
|
+
const param = {
|
211
|
+
// 设备id
|
212
|
+
pinpad_id: (_b = (_a = deviceRef == null ? void 0 : deviceRef.current) == null ? void 0 : _a.metadata) == null ? void 0 : _b.linkly_pinpad_id,
|
213
|
+
// 交易流水号
|
214
|
+
session_id: numRef.current,
|
215
|
+
signature_flag: status
|
216
|
+
};
|
217
|
+
dispatch((0, import_store.updateStatus)(import_const.StatusEnum.Loading));
|
218
|
+
dispatch(
|
219
|
+
(0, import_store.updateState)({
|
220
|
+
title: import_utils.locales.getText("page.eftpos-pay.text.loading")(modeRef.current)
|
221
|
+
})
|
222
|
+
);
|
223
|
+
dispatch(
|
224
|
+
(0, import_store.updateCustom)({ actionStatus: import_const2.LinklyActionStatus.SignatureWaiting })
|
225
|
+
);
|
226
|
+
(0, import_utils.sendWarningLog)({
|
227
|
+
title: `Linkly-${isPay ? "Pay" : "Refund"}-签名`,
|
228
|
+
content: [{ key: "params", value: JSON.stringify(param) }]
|
229
|
+
});
|
230
|
+
_signature.run(param);
|
231
|
+
};
|
232
|
+
return {
|
233
|
+
action: { signature: _signature },
|
234
|
+
linklySignature
|
235
|
+
};
|
236
|
+
};
|
237
|
+
// Annotate the CommonJS export names for ESM import in node:
|
238
|
+
0 && (module.exports = {
|
239
|
+
useLinklyCancel,
|
240
|
+
useLinklyPayOrRefund,
|
241
|
+
useLinklySignature
|
242
|
+
});
|