erp-construccion-backend/dist/modules/estimates/entities/retencion.entity.js

143 lines
5.6 KiB
JavaScript

"use strict";
/**
* Retencion Entity
* Retenciones aplicadas a estimaciones
*
* @module Estimates
* @table estimates.retenciones
* @ddl schemas/04-estimates-schema-ddl.sql
*/
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.Retencion = void 0;
const typeorm_1 = require("typeorm");
const tenant_entity_1 = require("../../core/entities/tenant.entity");
const user_entity_1 = require("../../core/entities/user.entity");
const estimacion_entity_1 = require("./estimacion.entity");
let Retencion = class Retencion {
id;
tenantId;
estimacionId;
retentionType;
description;
percentage;
amount;
releaseDate;
releasedAt;
releasedAmount;
notes;
createdAt;
createdById;
updatedAt;
updatedById;
deletedAt;
deletedById;
// Relations
tenant;
estimacion;
createdBy;
};
exports.Retencion = Retencion;
__decorate([
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
__metadata("design:type", String)
], Retencion.prototype, "id", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'tenant_id', type: 'uuid' }),
__metadata("design:type", String)
], Retencion.prototype, "tenantId", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'estimacion_id', type: 'uuid' }),
__metadata("design:type", String)
], Retencion.prototype, "estimacionId", void 0);
__decorate([
(0, typeorm_1.Column)({
name: 'retention_type',
type: 'enum',
enum: ['guarantee', 'tax', 'penalty', 'other'],
enumName: 'estimates.retention_type',
}),
__metadata("design:type", String)
], Retencion.prototype, "retentionType", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'varchar', length: 255 }),
__metadata("design:type", String)
], Retencion.prototype, "description", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'decimal', precision: 5, scale: 2, nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "percentage", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'decimal', precision: 16, scale: 2 }),
__metadata("design:type", Number)
], Retencion.prototype, "amount", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'release_date', type: 'date', nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "releaseDate", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'released_at', type: 'timestamptz', nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "releasedAt", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'released_amount', type: 'decimal', precision: 16, scale: 2, nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "releasedAmount", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "notes", void 0);
__decorate([
(0, typeorm_1.CreateDateColumn)({ name: 'created_at', type: 'timestamptz' }),
__metadata("design:type", Date)
], Retencion.prototype, "createdAt", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'created_by', type: 'uuid', nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "createdById", void 0);
__decorate([
(0, typeorm_1.UpdateDateColumn)({ name: 'updated_at', type: 'timestamptz', nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "updatedAt", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'updated_by', type: 'uuid', nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "updatedById", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'deleted_at', type: 'timestamptz', nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "deletedAt", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'deleted_by', type: 'uuid', nullable: true }),
__metadata("design:type", Object)
], Retencion.prototype, "deletedById", void 0);
__decorate([
(0, typeorm_1.ManyToOne)(() => tenant_entity_1.Tenant),
(0, typeorm_1.JoinColumn)({ name: 'tenant_id' }),
__metadata("design:type", tenant_entity_1.Tenant)
], Retencion.prototype, "tenant", void 0);
__decorate([
(0, typeorm_1.ManyToOne)(() => estimacion_entity_1.Estimacion, (e) => e.retenciones),
(0, typeorm_1.JoinColumn)({ name: 'estimacion_id' }),
__metadata("design:type", estimacion_entity_1.Estimacion)
], Retencion.prototype, "estimacion", void 0);
__decorate([
(0, typeorm_1.ManyToOne)(() => user_entity_1.User),
(0, typeorm_1.JoinColumn)({ name: 'created_by' }),
__metadata("design:type", Object)
], Retencion.prototype, "createdBy", void 0);
exports.Retencion = Retencion = __decorate([
(0, typeorm_1.Entity)({ schema: 'estimates', name: 'retenciones' }),
(0, typeorm_1.Index)(['tenantId']),
(0, typeorm_1.Index)(['estimacionId']),
(0, typeorm_1.Index)(['retentionType'])
], Retencion);
//# sourceMappingURL=retencion.entity.js.map