feat(cashier): add ref key as refrence id key for the item from the emr or etc

This commit is contained in:
avicenan
2026-05-07 10:17:29 +07:00
parent 1ba8901473
commit a70a516720

View File

@ -108,13 +108,16 @@ export class CashierItem {
scale: 2
})
balance_due: number;
@Column({ nullable: true })
status: BillingItemStatus;
@Column({ nullable: true, length: 256 })
category: string;
@Column({ nullable: true, length: 256 })
refKey: string;
@Column()
@CreateDateColumn()
created_at: Date;