@posx/core 5.5.17 → 5.5.19
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/index.d.ts +2 -2
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -975,7 +975,7 @@ declare module '@posx/core/services/invoice.service' {
|
|
|
975
975
|
import { IEmployee } from '@posx/core/types/employee.type';
|
|
976
976
|
import { QueryBuilder, QueryEtcParams } from '@posx/core/utils/autoquery.utils';
|
|
977
977
|
export interface IInvoiceBaseService extends IAppRemoteService<IInvoice> {
|
|
978
|
-
calculate(invoice: IInvoice, appConfig: IAppConfig): IInvoice;
|
|
978
|
+
calculate(invoice: IInvoice, appConfig: IAppConfig, disableRounding?: boolean): IInvoice;
|
|
979
979
|
calculateLines(invoice: IInvoice): void;
|
|
980
980
|
calculateLine(line: IInvoiceLine): void;
|
|
981
981
|
calculatePointSubtotal(invoice: IInvoice): void;
|
|
@@ -1012,7 +1012,7 @@ declare module '@posx/core/services/invoice.service' {
|
|
|
1012
1012
|
protected printerService: PrinterService;
|
|
1013
1013
|
protected printJobService: PrintJobService;
|
|
1014
1014
|
constructor(http: AxiosInstance, db: Dexie, options: IServiceOptions, moduleName?: string, methodName?: string);
|
|
1015
|
-
calculate(invoice: IInvoice, appConfig: IAppConfig): IInvoice;
|
|
1015
|
+
calculate(invoice: IInvoice, appConfig: IAppConfig, disableRounding?: boolean): IInvoice;
|
|
1016
1016
|
calculateLines(invoice: IInvoice): void;
|
|
1017
1017
|
calculateLine(line: IInvoiceLine): void;
|
|
1018
1018
|
calculatePointSubtotal(invoice: IInvoice): void;
|