2024-09-06 09:41:47 +07:00
import { Entity , Column , ManyToOne , JoinColumn , OneToMany } from "typeorm" ;
2024-03-13 18:59:35 +07:00
import { EntityBase } from "./base/Base" ;
import { CreateEmployeePosDict } from "./EmployeePosDict" ;
import { OrgRevision } from "./OrgRevision" ;
2024-09-06 09:41:47 +07:00
import { EmployeePosition } from "./EmployeePosition" ;
2024-03-13 18:59:35 +07:00
import { OrgRoot } from "./OrgRoot" ;
import { OrgChild1 } from "./OrgChild1" ;
import { OrgChild2 } from "./OrgChild2" ;
import { OrgChild3 } from "./OrgChild3" ;
import { OrgChild4 } from "./OrgChild4" ;
2024-03-15 14:32:08 +07:00
import { ProfileEmployee } from "./ProfileEmployee" ;
2024-06-13 14:41:47 +07:00
import { AuthRole } from "./AuthRole" ;
2024-03-13 18:59:35 +07:00
enum EmployeePosMasterLine {
MAIN = "MAIN" ,
SUPPORT = "SUPPORT" ,
}
@Entity ( "employeePosMaster" )
export class EmployeePosMaster extends EntityBase {
@Column ( {
nullable : true ,
comment : "Prefix นำหน้าเลขที่ตำแหน่ง เป็น Optional (ไม่ใช่อักษรย่อของหน่วยงาน/ส่วนราชการ)" ,
length : 16 ,
default : null ,
} )
posMasterNoPrefix : string ;
@Column ( {
nullable : true ,
comment : "เลขที่ตำแหน่ง เป็นตัวเลข" ,
default : null ,
} )
posMasterNo : number ;
@Column ( {
nullable : true ,
comment : "Suffix หลังเลขที่ตำแหน่ง เช่น ช." ,
length : 16 ,
default : null ,
} )
posMasterNoSuffix : string ;
@Column ( {
nullable : true ,
type : "datetime" ,
comment : "วัน-เวลาที่สร้าง" ,
default : null ,
} )
posMasterCreatedAt : Date ;
@Column ( {
nullable : true ,
comment :
"รหัส DNA ใช้ในกรณีที่มีการทำสำเนาโครงสร้างและตำแหน่ง ตำแหน่งที่ทำสำเนามากับตำแหน่งเก่าจะต้องมี DNA เดียวกัน เพื่อให้ track ประวัติการแก้ไขตำแหน่งย้อนหลังได้" ,
length : 40 ,
default : null ,
} )
ancestorDNA : string ;
@Column ( {
nullable : true ,
comment : "ลำดับที่แสดงผล" ,
default : null ,
} )
posMasterOrder : number ;
@Column ( {
nullable : true ,
comment : "ลำดับความสำคัญ" ,
default : null ,
} )
posMasterPriority : number ;
@Column ( {
nullable : true ,
comment : "สายงานในอัตรากำลัง (หลัก / สนับสนุน) คนละฟิลด์กับสายงานของตำแหน่ง" ,
type : "enum" ,
enum : EmployeePosMasterLine ,
default : null ,
} )
posMasterLine : EmployeePosMasterLine ;
@Column ( {
comment : "นั่งทับตำแหน่งไหม" ,
default : false ,
} )
isSit : boolean ;
2024-06-12 10:41:48 +07:00
@Column ( {
comment : "เป็นผู้อำนวยการ" ,
default : false ,
} )
isDirector : boolean ;
@Column ( {
comment : "เป็นเจ้าหน้าที่" ,
default : false ,
} )
2024-09-12 22:53:58 +07:00
isStaff : boolean ;
2024-09-13 10:29:08 +07:00
// @Column({
// comment: "เป็นสกจ",
// default: false,
// })
// isOfficer: boolean;
2024-06-12 10:41:48 +07:00
2024-09-12 22:53:58 +07:00
@Column ( {
nullable : true ,
comment : "ตำแหน่งใต้ลายเซ็นต์" ,
type : "text" ,
default : null ,
} )
positionSign : string ;
2024-04-09 12:18:52 +07:00
@Column ( {
nullable : true ,
comment : "หมายเหตุ" ,
type : "text" ,
default : null ,
} )
reason : string ;
2024-03-13 18:59:35 +07:00
@Column ( {
nullable : true ,
length : 40 ,
comment : "คีย์นอก(FK)ของตาราง orgRoot" ,
default : null ,
} )
orgRootId? : string | null ;
@Column ( {
nullable : true ,
length : 40 ,
comment : "คีย์นอก(FK)ของตาราง orgChild1" ,
default : null ,
} )
orgChild1Id? : string | null ;
@Column ( {
nullable : true ,
length : 40 ,
comment : "คีย์นอก(FK)ของตาราง orgChild2" ,
default : null ,
} )
orgChild2Id? : string | null ;
@Column ( {
nullable : true ,
length : 40 ,
comment : "คีย์นอก(FK)ของตาราง orgChild3" ,
default : null ,
} )
orgChild3Id? : string | null ;
@Column ( {
nullable : true ,
length : 40 ,
comment : "คีย์นอก(FK)ของตาราง orgChild4" ,
default : null ,
} )
orgChild4Id? : string | null ;
@Column ( {
nullable : true ,
length : 40 ,
comment :
"คนครองปัจจุบัน เมื่อทำสำเนาโครงสร้างและตำแหน่งพร้อมกับคนครองมา คนครองจะอยู่ในฟิลด์นี้" ,
default : null ,
} )
current_holderId? : string | null ;
@Column ( {
nullable : true ,
length : 40 ,
comment :
"คนที่กำลังจะมาครอง ตอนปรับโครงสร้าง ถ้าเลือกให้ใครมาครอง ProfileId ของคนนั้นจะมาอยู่ในช่องนี้ รวมทั้งตอนเลือกตำแหน่งเพื่อบรรจุ แต่งตั้ง เลื่อน ย้าย ในระบบบรรจุแต่งตั้งด้วย" ,
default : null ,
} )
next_holderId? : string | null ;
@Column ( {
length : 40 ,
comment : "คีย์นอก(FK)ของตาราง orgRevision" ,
} )
orgRevisionId : string ; //fk
2024-06-13 14:41:47 +07:00
@Column ( {
2024-06-13 23:56:49 +07:00
nullable : true ,
default : null ,
2024-06-13 14:41:47 +07:00
length : 40 ,
comment : "คีย์นอก(FK)ของตาราง authRole" ,
} )
authRoleId : string ;
2024-07-25 09:54:44 +07:00
@ManyToOne ( ( ) = > AuthRole , ( authRole ) = > authRole . posMasterEmps )
2024-06-13 14:41:47 +07:00
@JoinColumn ( { name : "authRoleId" } )
authRole : AuthRole ;
2024-03-13 18:59:35 +07:00
@ManyToOne ( ( ) = > OrgRevision , ( orgRevision ) = > orgRevision . posMasters )
@JoinColumn ( { name : "orgRevisionId" } )
orgRevision : OrgRevision ;
@ManyToOne ( ( ) = > OrgRoot , ( orgRoot ) = > orgRoot . posMasters )
@JoinColumn ( { name : "orgRootId" } )
orgRoot : OrgRoot ;
@ManyToOne ( ( ) = > OrgChild1 , ( orgChild1 ) = > orgChild1 . posMasters )
@JoinColumn ( { name : "orgChild1Id" } )
orgChild1 : OrgChild1 ;
@ManyToOne ( ( ) = > OrgChild2 , ( orgChild2 ) = > orgChild2 . posMasters )
@JoinColumn ( { name : "orgChild2Id" } )
orgChild2 : OrgChild2 ;
@ManyToOne ( ( ) = > OrgChild3 , ( orgChild3 ) = > orgChild3 . posMasters )
@JoinColumn ( { name : "orgChild3Id" } )
orgChild3 : OrgChild3 ;
@ManyToOne ( ( ) = > OrgChild4 , ( orgChild4 ) = > orgChild4 . posMasters )
@JoinColumn ( { name : "orgChild4Id" } )
orgChild4 : OrgChild4 ;
2024-03-15 14:32:08 +07:00
@ManyToOne ( ( ) = > ProfileEmployee , ( posMaster ) = > posMaster . current_holders )
2024-03-13 18:59:35 +07:00
@JoinColumn ( { name : "current_holderId" } )
2024-03-15 14:32:08 +07:00
current_holder : ProfileEmployee ;
2024-03-13 18:59:35 +07:00
2024-03-15 14:32:08 +07:00
@ManyToOne ( ( ) = > ProfileEmployee , ( posMaster ) = > posMaster . next_holders )
2024-03-13 18:59:35 +07:00
@JoinColumn ( { name : "next_holderId" } )
2024-03-15 14:32:08 +07:00
next_holder : ProfileEmployee ;
2024-03-13 18:59:35 +07:00
@OneToMany ( ( ) = > EmployeePosition , ( position ) = > position . posMaster )
positions : EmployeePosition [ ] ;
}
export class CreateEmployeePosMaster {
@Column ( )
posMasterNoPrefix : string ;
@Column ( )
posMasterNo : number ;
@Column ( )
posMasterNoSuffix : string ;
@Column ( "uuid" )
positions : CreateEmployeePosDict [ ] ;
@Column ( "uuid" )
orgRootId? : string | null ;
@Column ( "uuid" )
orgChild1Id? : string | null ;
@Column ( "uuid" )
orgChild2Id? : string | null ;
@Column ( "uuid" )
orgChild3Id? : string | null ;
@Column ( "uuid" )
orgChild4Id? : string | null ;
2024-04-09 12:18:52 +07:00
@Column ( )
2024-04-09 21:59:01 +07:00
reason : string | null ;
2024-06-12 14:41:16 +07:00
@Column ( )
isDirector : boolean ;
2024-03-13 18:59:35 +07:00
}
export type UpdateEmployeePosMaster = Partial < EmployeePosMaster > ;