38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
/**
|
|
* RequisicionLinea Entity
|
|
* Líneas de requisición de obra
|
|
*
|
|
* @module Inventory
|
|
* @table inventory.requisicion_lineas
|
|
* @ddl schemas/06-inventory-ext-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { RequisicionObra } from './requisicion-obra.entity';
|
|
import { Concepto } from '../../budgets/entities/concepto.entity';
|
|
import { Lote } from '../../construction/entities/lote.entity';
|
|
export declare class RequisicionLinea {
|
|
id: string;
|
|
tenantId: string;
|
|
requisicionId: string;
|
|
productId: string;
|
|
conceptoId: string;
|
|
loteId: string;
|
|
quantityRequested: number;
|
|
quantityApproved: number;
|
|
quantityServed: number;
|
|
unitId: string;
|
|
notes: string;
|
|
createdAt: Date;
|
|
createdById: string;
|
|
updatedAt: Date;
|
|
updatedById: string;
|
|
deletedAt: Date;
|
|
deletedById: string;
|
|
tenant: Tenant;
|
|
requisicion: RequisicionObra;
|
|
concepto: Concepto;
|
|
lote: Lote;
|
|
createdBy: User;
|
|
}
|
|
//# sourceMappingURL=requisicion-linea.entity.d.ts.map
|