cecon-interfaces
Version:
Interfaces de Projetos Cecon
28 lines (27 loc) • 841 B
TypeScript
import { EPayioChefOperationMode } from '../enums';
import { EBarcodeFormat } from '../enums/barcode-format.enum';
import { EPayioChefTabMode } from '../enums/tab-mode.enum';
export interface IPayioChefConfigOperation {
barcodeFormat: EBarcodeFormat;
barcodeInitialFlag: string;
bipOnPrint: boolean;
headerMessages: string[];
listItems: string[];
multiOrder: boolean;
/**@deprecated
* Use SCALE mode default
*/
operationMode: EPayioChefOperationMode;
printFormat: 'simple' | 'tabular';
showBarCode: boolean;
showNetWeight: boolean;
showOrderNumber: boolean;
showPricePerKg: boolean;
showTotalPrice: boolean;
startOrderIn: number;
tabFormat: string | null;
tabMode: EPayioChefTabMode;
tabRegistered: boolean;
urlLogo: string;
visionDeviceId: string;
}