update: new field for cashier item (balance due and amount paid)

This commit is contained in:
wayanrivan
2026-04-08 11:26:07 +07:00
parent 24a197aff6
commit cbb94c7e5f

View File

@ -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;