@posx/core 5.5.229 → 5.5.230
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 +6 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1162,7 +1162,7 @@ declare module '@posx/core/services/app.service' {
|
|
|
1162
1162
|
syncStandardReports(): Promise<IAppReport>;
|
|
1163
1163
|
printReport(request: IReportRequest): Promise<void>;
|
|
1164
1164
|
private getReportData;
|
|
1165
|
-
processReportInvoicesData(reportData: IReportData, invoices?: IInvoice[]): IReportData
|
|
1165
|
+
processReportInvoicesData(reportData: IReportData, invoices?: IInvoice[]): Promise<IReportData>;
|
|
1166
1166
|
/**
|
|
1167
1167
|
* 生成唯一的菜品key
|
|
1168
1168
|
* 格式: 菜品uid-modifier1:modifier1.quantity-modifier2:modifier2.quantity-modifier3:modifier3.quantity
|
|
@@ -4475,6 +4475,10 @@ declare module '@posx/core/types/product.type' {
|
|
|
4475
4475
|
* Indicates whether the item is internal and displayed in the POS only
|
|
4476
4476
|
*/
|
|
4477
4477
|
is_internal: boolean;
|
|
4478
|
+
/**
|
|
4479
|
+
* Indicates whether the item is delisted
|
|
4480
|
+
*/
|
|
4481
|
+
is_delisted: boolean;
|
|
4478
4482
|
/**
|
|
4479
4483
|
* Modifier IDs of the item
|
|
4480
4484
|
*/
|
|
@@ -4537,6 +4541,7 @@ declare module '@posx/core/types/product.type' {
|
|
|
4537
4541
|
is_point_reward_exempt: boolean;
|
|
4538
4542
|
is_credit_reward_exempt: boolean;
|
|
4539
4543
|
is_internal: boolean;
|
|
4544
|
+
is_delisted: boolean;
|
|
4540
4545
|
uid: string;
|
|
4541
4546
|
kitchen_printers_uids: any[];
|
|
4542
4547
|
order_printers_uids: any[];
|