@posx/core 5.5.282 → 5.5.284
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 -5
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -3270,12 +3270,13 @@ declare module '@posx/core/types/invoice.type' {
|
|
|
3270
3270
|
price: number;
|
|
3271
3271
|
/** Unit of measure (1:quantity | 2:weight) */
|
|
3272
3272
|
unit_of_measure: UomType;
|
|
3273
|
-
/** Quantity if it is quantity*/
|
|
3273
|
+
/** Quantity if it is quantity, e.g. 5*/
|
|
3274
3274
|
quantity: number;
|
|
3275
|
-
/** Whether it is sent to server*/
|
|
3275
|
+
/** Whether it is sent to server, e.g. send = 3, it means 2 items are not sent to server*/
|
|
3276
|
+
/** item A, qty = 5 sent 3 => kitchen slip will show quantity 2 on item A */
|
|
3276
3277
|
sent: number;
|
|
3277
3278
|
/** Whether cancel slip is printed */
|
|
3278
|
-
|
|
3279
|
+
is_cancel_printed: boolean;
|
|
3279
3280
|
/** Whether it is selected */
|
|
3280
3281
|
selected: boolean;
|
|
3281
3282
|
}
|
|
@@ -3488,7 +3489,7 @@ declare module '@posx/core/types/invoice.type' {
|
|
|
3488
3489
|
unit_of_measure: UomType;
|
|
3489
3490
|
quantity: number;
|
|
3490
3491
|
sent: number;
|
|
3491
|
-
|
|
3492
|
+
is_cancel_printed: boolean;
|
|
3492
3493
|
selected: boolean;
|
|
3493
3494
|
constructor();
|
|
3494
3495
|
}
|
|
@@ -3517,7 +3518,7 @@ declare module '@posx/core/types/invoice.type' {
|
|
|
3517
3518
|
modifiers: any[];
|
|
3518
3519
|
duplicated_from_uid: string;
|
|
3519
3520
|
sent: number;
|
|
3520
|
-
|
|
3521
|
+
is_cancel_printed: boolean;
|
|
3521
3522
|
selected: boolean;
|
|
3522
3523
|
meta: {};
|
|
3523
3524
|
constructor();
|