diff --git a/src/entity/cashier/cashier_item.ts b/src/entity/cashier/cashier_item.ts index de2b691..12c9a82 100644 --- a/src/entity/cashier/cashier_item.ts +++ b/src/entity/cashier/cashier_item.ts @@ -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;