This commit is contained in:
2025-11-11 00:49:53 +07:00
parent ce4f147b25
commit 2329f45a1f
2 changed files with 5 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,9 @@ export enum TrxCustomerType {
}
export enum TrxCustomerPosition {
"teller" = "teller",
"supervisor" = "supervisor",
"manager" = "manager",
"done" = "done",
"cs" = "cs",
}
export enum TrxCostCode {