cecon-interfaces
Version:
Interfaces de Projetos Cecon
33 lines (32 loc) • 1.26 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioBigChefConfigOperationEntity = void 0;
var chef_config_1 = require("../../chef-config");
var PayioBigChefConfigOperationEntity = /** @class */ (function () {
function PayioBigChefConfigOperationEntity(data) {
this.tabBarcodeFormat = chef_config_1.EBarcodeFormat.CODE_6_PRICE_6;
this.tabBarcodeInitialFlag = '2';
this.tabBipOnPrint = true;
this.tabHeaderMessages = [];
this.tabListItems = [];
this.tabPrintFormat = 'simple';
this.tabShowBarCode = true;
this.tabShowNetWeight = true;
this.tabShowOrderNumber = true;
this.tabShowPricePerKg = true;
this.tabShowTotalPrice = true;
this.tabStartOrderIn = 1;
this.tabMode = chef_config_1.EPayioChefTabMode.MANUAL;
this.tabUrlLogo = '';
this.visionDeviceId = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioBigChefConfigOperationEntity;
}());
exports.PayioBigChefConfigOperationEntity = PayioBigChefConfigOperationEntity;