update field discrepancy price and quantity
This commit is contained in:
@ -72,6 +72,30 @@ export class AssetRealization {
|
||||
})
|
||||
status: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: 'float',
|
||||
})
|
||||
quantity_discrepancy: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: 'float',
|
||||
})
|
||||
payment_discrepancy: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: 'text',
|
||||
})
|
||||
discrepancy_remarks: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: 'text',
|
||||
})
|
||||
discrepancy_images: string;
|
||||
|
||||
@Column()
|
||||
@CreateDateColumn()
|
||||
created_at: Date;
|
||||
|
||||
Reference in New Issue
Block a user