- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
100 lines
4.2 KiB
JavaScript
100 lines
4.2 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Invoice = exports.InvoiceStatus = void 0;
|
|
const typeorm_1 = require("typeorm");
|
|
var InvoiceStatus;
|
|
(function (InvoiceStatus) {
|
|
InvoiceStatus["DRAFT"] = "draft";
|
|
InvoiceStatus["OPEN"] = "open";
|
|
InvoiceStatus["PAID"] = "paid";
|
|
InvoiceStatus["VOID"] = "void";
|
|
InvoiceStatus["UNCOLLECTIBLE"] = "uncollectible";
|
|
})(InvoiceStatus || (exports.InvoiceStatus = InvoiceStatus = {}));
|
|
let Invoice = class Invoice {
|
|
};
|
|
exports.Invoice = Invoice;
|
|
__decorate([
|
|
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
__metadata("design:type", String)
|
|
], Invoice.prototype, "id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'uuid' }),
|
|
__metadata("design:type", String)
|
|
], Invoice.prototype, "tenant_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'uuid' }),
|
|
__metadata("design:type", String)
|
|
], Invoice.prototype, "subscription_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 50, unique: true }),
|
|
__metadata("design:type", String)
|
|
], Invoice.prototype, "invoice_number", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({
|
|
type: 'enum',
|
|
enum: InvoiceStatus,
|
|
default: InvoiceStatus.DRAFT,
|
|
}),
|
|
__metadata("design:type", String)
|
|
], Invoice.prototype, "status", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 3, default: 'MXN' }),
|
|
__metadata("design:type", String)
|
|
], Invoice.prototype, "currency", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2 }),
|
|
__metadata("design:type", Number)
|
|
], Invoice.prototype, "subtotal", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2, default: 0 }),
|
|
__metadata("design:type", Number)
|
|
], Invoice.prototype, "tax", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2 }),
|
|
__metadata("design:type", Number)
|
|
], Invoice.prototype, "total", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'timestamp with time zone' }),
|
|
__metadata("design:type", Date)
|
|
], Invoice.prototype, "due_date", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'timestamp with time zone', nullable: true }),
|
|
__metadata("design:type", Date)
|
|
], Invoice.prototype, "paid_at", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
__metadata("design:type", String)
|
|
], Invoice.prototype, "external_invoice_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], Invoice.prototype, "pdf_url", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'jsonb', nullable: true }),
|
|
__metadata("design:type", Array)
|
|
], Invoice.prototype, "line_items", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'jsonb', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], Invoice.prototype, "billing_details", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.CreateDateColumn)({ type: 'timestamp with time zone' }),
|
|
__metadata("design:type", Date)
|
|
], Invoice.prototype, "created_at", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.UpdateDateColumn)({ type: 'timestamp with time zone' }),
|
|
__metadata("design:type", Date)
|
|
], Invoice.prototype, "updated_at", void 0);
|
|
exports.Invoice = Invoice = __decorate([
|
|
(0, typeorm_1.Entity)({ name: 'invoices', schema: 'billing' })
|
|
], Invoice);
|
|
//# sourceMappingURL=invoice.entity.js.map
|