feat(cashier): add ref key as refrence id key for the item from the emr or etc
This commit is contained in:
@ -108,13 +108,16 @@ export class CashierItem {
|
|||||||
scale: 2
|
scale: 2
|
||||||
})
|
})
|
||||||
balance_due: number;
|
balance_due: number;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
status: BillingItemStatus;
|
status: BillingItemStatus;
|
||||||
|
|
||||||
@Column({ nullable: true, length: 256 })
|
@Column({ nullable: true, length: 256 })
|
||||||
category: string;
|
category: string;
|
||||||
|
|
||||||
|
@Column({ nullable: true, length: 256 })
|
||||||
|
refKey: string;
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|||||||
Reference in New Issue
Block a user