update: new field for cashier item (balance due and amount paid)
This commit is contained in:
@ -79,6 +79,18 @@ export class CashierItem {
|
||||
})
|
||||
qty: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: 'bigint'
|
||||
})
|
||||
amount_paid: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
type: 'bigint'
|
||||
})
|
||||
balance_due: number;
|
||||
|
||||
@Column({ nullable: true, type: "text" })
|
||||
status: string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user