update asset
This commit is contained in:
@ -76,6 +76,30 @@ export class AssetPurchaseInvoice {
|
||||
})
|
||||
file: 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({ type: 'boolean', nullable: true })
|
||||
is_gm_approved: boolean;
|
||||
|
||||
@Column({ type: 'varchar', length: 100, nullable: true })
|
||||
gm_approved_by: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
gm_approved_at: Date;
|
||||
|
||||
@Column({ type: 'text', nullable: true })
|
||||
gm_approved_note: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
payment_at: Date;
|
||||
|
||||
@ -83,7 +107,7 @@ export class AssetPurchaseInvoice {
|
||||
nullable: true,
|
||||
length: 4096
|
||||
})
|
||||
payment_proof: string;
|
||||
payment_file: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
@ -91,6 +115,9 @@ export class AssetPurchaseInvoice {
|
||||
})
|
||||
payment_by: string;
|
||||
|
||||
@Column({ type: 'text', nullable: true })
|
||||
payment_note: string;
|
||||
|
||||
@Column()
|
||||
@CreateDateColumn()
|
||||
created_at: Date;
|
||||
|
||||
Reference in New Issue
Block a user