39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
/**
|
|
* EstimacionConcepto Entity
|
|
* Lineas de concepto por estimacion
|
|
*
|
|
* @module Estimates
|
|
* @table estimates.estimacion_conceptos
|
|
* @ddl schemas/04-estimates-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Concepto } from '../../budgets/entities/concepto.entity';
|
|
import { Estimacion } from './estimacion.entity';
|
|
import { Generador } from './generador.entity';
|
|
export declare class EstimacionConcepto {
|
|
id: string;
|
|
tenantId: string;
|
|
estimacionId: string;
|
|
conceptoId: string;
|
|
contratoPartidaId: string | null;
|
|
quantityContract: number;
|
|
quantityPrevious: number;
|
|
quantityCurrent: number;
|
|
quantityAccumulated: number;
|
|
unitPrice: number;
|
|
amountCurrent: number;
|
|
notes: string | null;
|
|
createdAt: Date;
|
|
createdById: string | null;
|
|
updatedAt: Date | null;
|
|
updatedById: string | null;
|
|
deletedAt: Date | null;
|
|
deletedById: string | null;
|
|
tenant: Tenant;
|
|
estimacion: Estimacion;
|
|
concepto: Concepto;
|
|
createdBy: User | null;
|
|
generadores: Generador[];
|
|
}
|
|
//# sourceMappingURL=estimacion-concepto.entity.d.ts.map
|