erp-construccion-backend/dist/modules/inventory/entities/almacen-proyecto.entity.js

132 lines
5.4 KiB
JavaScript

"use strict";
/**
* AlmacenProyecto Entity
* Almacenes por proyecto/obra
*
* @module Inventory
* @table inventory.almacenes_proyecto
* @ddl schemas/06-inventory-ext-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.AlmacenProyecto = 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 fraccionamiento_entity_1 = require("../../construction/entities/fraccionamiento.entity");
let AlmacenProyecto = class AlmacenProyecto {
id;
tenantId;
warehouseId;
fraccionamientoId;
warehouseType;
locationDescription;
responsibleId;
isActive;
createdAt;
createdById;
updatedAt;
updatedById;
deletedAt;
deletedById;
// Relations
tenant;
fraccionamiento;
responsible;
createdBy;
};
exports.AlmacenProyecto = AlmacenProyecto;
__decorate([
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "id", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'tenant_id', type: 'uuid' }),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "tenantId", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'warehouse_id', type: 'uuid' }),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "warehouseId", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'fraccionamiento_id', type: 'uuid' }),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "fraccionamientoId", void 0);
__decorate([
(0, typeorm_1.Column)({
name: 'warehouse_type',
type: 'varchar',
length: 20,
default: 'obra',
}),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "warehouseType", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'location_description', type: 'text', nullable: true }),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "locationDescription", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'responsible_id', type: 'uuid', nullable: true }),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "responsibleId", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'is_active', type: 'boolean', default: true }),
__metadata("design:type", Boolean)
], AlmacenProyecto.prototype, "isActive", void 0);
__decorate([
(0, typeorm_1.CreateDateColumn)({ name: 'created_at', type: 'timestamptz' }),
__metadata("design:type", Date)
], AlmacenProyecto.prototype, "createdAt", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'created_by', type: 'uuid', nullable: true }),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "createdById", void 0);
__decorate([
(0, typeorm_1.UpdateDateColumn)({ name: 'updated_at', type: 'timestamptz' }),
__metadata("design:type", Date)
], AlmacenProyecto.prototype, "updatedAt", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'updated_by', type: 'uuid', nullable: true }),
__metadata("design:type", String)
], AlmacenProyecto.prototype, "updatedById", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'deleted_at', type: 'timestamptz', nullable: true }),
__metadata("design:type", Date)
], AlmacenProyecto.prototype, "deletedAt", void 0);
__decorate([
(0, typeorm_1.Column)({ name: 'deleted_by', type: 'uuid', nullable: true }),
__metadata("design:type", String)
], AlmacenProyecto.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)
], AlmacenProyecto.prototype, "tenant", void 0);
__decorate([
(0, typeorm_1.ManyToOne)(() => fraccionamiento_entity_1.Fraccionamiento),
(0, typeorm_1.JoinColumn)({ name: 'fraccionamiento_id' }),
__metadata("design:type", fraccionamiento_entity_1.Fraccionamiento)
], AlmacenProyecto.prototype, "fraccionamiento", void 0);
__decorate([
(0, typeorm_1.ManyToOne)(() => user_entity_1.User),
(0, typeorm_1.JoinColumn)({ name: 'responsible_id' }),
__metadata("design:type", user_entity_1.User)
], AlmacenProyecto.prototype, "responsible", void 0);
__decorate([
(0, typeorm_1.ManyToOne)(() => user_entity_1.User),
(0, typeorm_1.JoinColumn)({ name: 'created_by' }),
__metadata("design:type", user_entity_1.User)
], AlmacenProyecto.prototype, "createdBy", void 0);
exports.AlmacenProyecto = AlmacenProyecto = __decorate([
(0, typeorm_1.Entity)({ schema: 'inventory', name: 'almacenes_proyecto' }),
(0, typeorm_1.Index)(['warehouseId'], { unique: true })
], AlmacenProyecto);
//# sourceMappingURL=almacen-proyecto.entity.js.map