@pisell/pisellos 2.2.19 → 2.2.20
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/dist/modules/Payment/index.d.ts +3 -0
- package/dist/modules/Payment/index.js +456 -368
- package/dist/modules/Summary/utils.d.ts +1 -1
- package/dist/solution/BookingTicket/index.d.ts +1 -1
- package/lib/modules/Payment/index.d.ts +3 -0
- package/lib/modules/Payment/index.js +113 -60
- package/lib/modules/Summary/utils.d.ts +1 -1
- package/lib/solution/BookingTicket/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -23,11 +23,14 @@ export declare class PaymentModule extends BaseModule implements Module, Payment
|
|
|
23
23
|
private store;
|
|
24
24
|
private dbManager;
|
|
25
25
|
private logger;
|
|
26
|
+
private voucherUpdateLockByOrderUuid;
|
|
26
27
|
protected otherParams: any;
|
|
27
28
|
cash: CashPayment;
|
|
28
29
|
eftpos: EftposPayment;
|
|
29
30
|
wallet: WalletPassPayment;
|
|
30
31
|
constructor(name?: string, version?: string);
|
|
32
|
+
private runVoucherUpdateLocked;
|
|
33
|
+
private normalizeVoucherPaymentItems;
|
|
31
34
|
initialize(core: PisellCore, options: ModuleOptions): Promise<void>;
|
|
32
35
|
/**
|
|
33
36
|
* 记录信息日志
|