34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
/**
|
|
* ComparativoProveedor Entity
|
|
* Proveedores participantes en comparativo
|
|
*
|
|
* @module Purchase
|
|
* @table purchase.comparativo_proveedores
|
|
* @ddl schemas/07-purchase-ext-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { ComparativoCotizaciones } from './comparativo-cotizaciones.entity';
|
|
import { ComparativoProducto } from './comparativo-producto.entity';
|
|
export declare class ComparativoProveedor {
|
|
id: string;
|
|
tenantId: string;
|
|
comparativoId: string;
|
|
supplierId: string;
|
|
quotationNumber: string;
|
|
quotationDate: Date;
|
|
deliveryDays: number;
|
|
paymentConditions: string;
|
|
totalAmount: number;
|
|
isSelected: boolean;
|
|
evaluationNotes: string;
|
|
createdAt: Date;
|
|
createdById: string;
|
|
updatedAt: Date;
|
|
updatedById: string;
|
|
tenant: Tenant;
|
|
comparativo: ComparativoCotizaciones;
|
|
createdBy: User;
|
|
productos: ComparativoProducto[];
|
|
}
|
|
//# sourceMappingURL=comparativo-proveedor.entity.d.ts.map
|