Merge branch 'develop' into adiDev

This commit is contained in:
AdisakKanthawilang 2024-06-12 10:50:48 +07:00
commit d1fbd59e5f
4 changed files with 47 additions and 1 deletions

View file

@ -73,7 +73,7 @@ export class AuthRoleAttr extends EntityBase {
comment: "Root",
default: null,
})
parentNode?: string | null;
parentNode?: string;
// @ManyToOne(() => AuthSys, (authSys) => authSys.authSys)
// @JoinColumn({ name: "authSysId" })

View file

@ -87,6 +87,18 @@ export class EmployeePosMaster extends EntityBase {
})
isSit: boolean;
@Column({
comment: "เป็นผู้อำนวยการ",
default: false,
})
isDirector: boolean;
@Column({
comment: "เป็นเจ้าหน้าที่",
default: false,
})
isOfficer: boolean;
@Column({
nullable: true,
comment: "หมายเหตุ",

View file

@ -86,6 +86,18 @@ export class PosMaster extends EntityBase {
})
isSit: boolean;
@Column({
comment: "เป็นผู้อำนวยการ",
default: false,
})
isDirector: boolean;
@Column({
comment: "เป็นเจ้าหน้าที่",
default: false,
})
isOfficer: boolean;
@Column({
nullable: true,
comment: "หมายเหตุ",