update field discrepancy price and quantity

This commit is contained in:
fadlydev
2025-01-10 13:05:05 +07:00
parent e04474ccf3
commit f6b518aea1

View File

@ -72,6 +72,30 @@ export class AssetRealization {
}) })
status: string; 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() @Column()
@CreateDateColumn() @CreateDateColumn()
created_at: Date; created_at: Date;