This commit is contained in:
fro1991
2025-11-11 01:55:33 +07:00
2 changed files with 4 additions and 5 deletions

View File

@ -106,16 +106,16 @@ export class TrxCustomer {
position: TrxCustomerPosition;
@Column({ nullable: true, length: 256 })
tellered_by: string;
supervisor_by: string;
@Column({ nullable: true })
tellered_at: Date;
supervisor_at: Date;
@Column({
nullable: true,
default: false,
})
is_teller: boolean;
is_supervisor: boolean;
@Column({ nullable: true, length: 256 })
manager_by: string;

View File

@ -28,9 +28,8 @@ export enum TrxCustomerType {
}
export enum TrxCustomerPosition {
"teller" = "teller",
"supervisor" = "supervisor",
"manager" = "manager",
"done" = "done",
}
export enum TrxCostCode {