29 lines
862 B
TypeScript
29 lines
862 B
TypeScript
/**
|
|
* ComparativoProducto Entity
|
|
* Productos cotizados por proveedor en comparativo
|
|
*
|
|
* @module Purchase
|
|
* @table purchase.comparativo_productos
|
|
* @ddl schemas/07-purchase-ext-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { ComparativoProveedor } from './comparativo-proveedor.entity';
|
|
export declare class ComparativoProducto {
|
|
id: string;
|
|
tenantId: string;
|
|
comparativoProveedorId: string;
|
|
productId: string;
|
|
quantity: number;
|
|
unitPrice: number;
|
|
notes: string;
|
|
createdAt: Date;
|
|
createdById: string;
|
|
updatedAt: Date;
|
|
updatedById: string;
|
|
get totalPrice(): number;
|
|
tenant: Tenant;
|
|
comparativoProveedor: ComparativoProveedor;
|
|
createdBy: User;
|
|
}
|
|
//# sourceMappingURL=comparativo-producto.entity.d.ts.map
|