@posx/core 5.5.306 → 5.5.308

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 CHANGED
@@ -2641,6 +2641,8 @@ declare module '@posx/core/types/config.type' {
2641
2641
  print_item_price: boolean;
2642
2642
  /** Flag to print cancel slip */
2643
2643
  print_cancel_slip: boolean;
2644
+ /** Flag to print whole invoice when order is cancelled */
2645
+ print_cancel_whole_invoice: boolean;
2644
2646
  /**
2645
2647
  * The language to use for the kitchen slip.
2646
2648
  */
@@ -2650,6 +2652,7 @@ declare module '@posx/core/types/config.type' {
2650
2652
  enabled: boolean;
2651
2653
  print_item_price: boolean;
2652
2654
  print_cancel_slip: boolean;
2655
+ print_cancel_whole_invoice: boolean;
2653
2656
  language: string;
2654
2657
  constructor();
2655
2658
  }
@@ -2693,6 +2696,8 @@ declare module '@posx/core/types/config.type' {
2693
2696
  hide_categories_when_ordering: boolean;
2694
2697
  /** Flag to end shift with open tables */
2695
2698
  end_shift_with_open_tables: boolean;
2699
+ /** Flag to show original amount on table display instead of rounded amount */
2700
+ show_original_amount_on_table: boolean;
2696
2701
  }
2697
2702
  export class OrderConfig implements IOrderConfig {
2698
2703
  separation_line: boolean;
@@ -2704,6 +2709,7 @@ declare module '@posx/core/types/config.type' {
2704
2709
  hide_combo_item_on_interactive_view: boolean;
2705
2710
  hide_categories_when_ordering: boolean;
2706
2711
  end_shift_with_open_tables: boolean;
2712
+ show_original_amount_on_table: boolean;
2707
2713
  constructor();
2708
2714
  }
2709
2715
  export interface IPaymentConfig {