This commit is contained in:
fro1991
2025-03-18 22:05:25 +07:00
parent ab0f132e22
commit 0f2095bfdc

View File

@ -40,6 +40,57 @@ export class AssetPurchaseRealization {
})
difference: number;
@Column({ type: "varchar", length: 255 })
status: string;
@Column({
nullable: true,
length: 4096
})
file: string;
@Column({ type: 'boolean', nullable: true })
is_spv_approved: boolean;
@Column({ type: 'varchar', length: 100, nullable: true })
spv_approved_by: string;
@Column({ nullable: true })
spv_approved_at: Date;
@Column({ type: 'text', nullable: true })
spv_approved_note: string;
@Column({ type: 'boolean', nullable: true })
is_finance_approved: boolean;
@Column({ type: 'varchar', length: 100, nullable: true })
finance_approved_by: string;
@Column({ nullable: true })
finance_approved_at: Date;
@Column({ type: 'text', nullable: true })
finance_approved_note: string;
@Column({ nullable: true })
payment_at: Date;
@Column({
nullable: true,
length: 4096
})
payment_file: string;
@Column({
nullable: true,
length: 255
})
payment_by: string;
@Column({ type: 'text', nullable: true })
payment_note: string;
@Column()
@CreateDateColumn()
created_at: Date;