adjust the fields realizations
This commit is contained in:
@ -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',
|
||||
|
||||
Reference in New Issue
Block a user