facturacionelectronicapy-ts-xmlgen
Version:
Genera el contenido del archivo XML del Documento electrónico exigido por la SET
19 lines (18 loc) • 902 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.AssociatedDocumentType = void 0;
const Table_1 = __importDefault(require("../helpers/Table"));
var AssociatedDocumentType;
(function (AssociatedDocumentType) {
AssociatedDocumentType[AssociatedDocumentType["ELECTRONICO"] = 1] = "ELECTRONICO";
AssociatedDocumentType[AssociatedDocumentType["IMPRESO"] = 2] = "IMPRESO";
AssociatedDocumentType[AssociatedDocumentType["CONSTANCIA_ELECTRONICA"] = 3] = "CONSTANCIA_ELECTRONICA";
})(AssociatedDocumentType || (exports.AssociatedDocumentType = AssociatedDocumentType = {}));
exports.default = new Table_1.default(['_id', 'description'], [
[1, 'Electrónico'],
[2, 'Impreso'],
[3, 'Constancia Electrónica'],
]);