diff --git a/src/entity/asset_realizations.ts b/src/entity/asset_realizations.ts index 82906c9..baa5ad3 100644 --- a/src/entity/asset_realizations.ts +++ b/src/entity/asset_realizations.ts @@ -110,38 +110,35 @@ export class AssetRealization { nullable: true, type: 'float', }) - excess_quantity: number; // Stores the extra quantity received + excess_quantity: number; + @Column({ + nullable: true, + type: 'float', + }) + insufficient_quantity: number; @Column({ nullable: true, type: 'float', }) - insufficient_quantity: number; // Stores the missing quantity - + excess_nominal: number; @Column({ nullable: true, type: 'float', }) - excess_nominal: number; // Stores the monetary value of excess quantity - - @Column({ - nullable: true, - type: 'float', - }) - insufficient_nominal: number; // Stores the monetary value of insufficient quantity - - // Image Evidence for Excess and Insufficient Quantity - @Column({ - nullable: true, - type: 'text', - }) - insufficient_quantity_images: string; // Stores URLs for insufficient quantity evidence + insufficient_nominal: number; @Column({ nullable: true, type: 'text', }) - excess_quantity_images: string; // Stores URLs for excess quantity evidence + insufficient_quantity_images: string; + + @Column({ + nullable: true, + type: 'text', + }) + excess_quantity_images: string; @Column({ type: 'varchar',