up
This commit is contained in:
@ -106,16 +106,16 @@ export class TrxCustomer {
|
|||||||
position: TrxCustomerPosition;
|
position: TrxCustomerPosition;
|
||||||
|
|
||||||
@Column({ nullable: true, length: 256 })
|
@Column({ nullable: true, length: 256 })
|
||||||
tellered_by: string;
|
supervisor_by: string;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
tellered_at: Date;
|
supervisor_at: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
default: false,
|
default: false,
|
||||||
})
|
})
|
||||||
is_teller: boolean;
|
is_supervisor: boolean;
|
||||||
|
|
||||||
@Column({ nullable: true, length: 256 })
|
@Column({ nullable: true, length: 256 })
|
||||||
manager_by: string;
|
manager_by: string;
|
||||||
|
|||||||
@ -28,9 +28,9 @@ export enum TrxCustomerType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum TrxCustomerPosition {
|
export enum TrxCustomerPosition {
|
||||||
"teller" = "teller",
|
"supervisor" = "supervisor",
|
||||||
"manager" = "manager",
|
"manager" = "manager",
|
||||||
"done" = "done",
|
"cs" = "cs",
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum TrxCostCode {
|
export enum TrxCostCode {
|
||||||
|
|||||||
Reference in New Issue
Block a user