facturacionelectronicapy-ts-xmlgen
Version:
Genera el contenido del archivo XML del Documento electrónico exigido por la SET
26 lines (25 loc) • 1.48 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.IscCategory = void 0;
const Table_1 = __importDefault(require("../helpers/Table"));
var IscCategory;
(function (IscCategory) {
IscCategory[IscCategory["SECCION_I____CIGARRILLOS__TABACOS__ESENCIAS_Y_OTROS_DERIVADOS_DEL_TABACO_"] = 1] = "SECCION_I____CIGARRILLOS__TABACOS__ESENCIAS_Y_OTROS_DERIVADOS_DEL_TABACO_";
IscCategory[IscCategory["SECCION_II____BEBIDAS_CON_Y_SIN_ALCOHOL_"] = 2] = "SECCION_II____BEBIDAS_CON_Y_SIN_ALCOHOL_";
IscCategory[IscCategory["SECCION_III____ALCOHOLES_Y_DERIVADOS_DEL_ALCOHOL_"] = 3] = "SECCION_III____ALCOHOLES_Y_DERIVADOS_DEL_ALCOHOL_";
IscCategory[IscCategory["SECCION_IV___COMBUSTIBLES_"] = 4] = "SECCION_IV___COMBUSTIBLES_";
IscCategory[IscCategory["SECCION_V___ARTICULOS_CONSIDERADOS_DE_LUJO_"] = 5] = "SECCION_V___ARTICULOS_CONSIDERADOS_DE_LUJO_";
})(IscCategory || (exports.IscCategory = IscCategory = {}));
exports.default = new Table_1.default(['_id', 'description'], [
[
1,
'Sección I - (Cigarrillos, Tabacos, Esencias y Otros derivados del Tabaco)',
],
[2, 'Sección II - (Bebidas con y sin alcohol)'],
[3, 'Sección III - (Alcoholes y Derivados del alcohol)'],
[4, 'Sección IV- (Combustibles)'],
[5, 'Sección V- (Artículos considerados de lujo)'],
]);