ทำเบียนประวัติลูกจ้างชั่วคราว

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-06-10 18:00:12 +07:00
parent 40b46b8c62
commit ba64953315
25 changed files with 4679 additions and 848 deletions

View file

@ -10,8 +10,8 @@ export const apiUrlConfigReport = import.meta.env.VITE_API_REPORT_URL;
const config = ref<any>({
development: {
// API_URI: "https://localhost:7260/api",
API_URI: "https://bma-ehr.frappet.synology.me/api/v1",
API_URI: "http://localhost:13001/api/v1",
// API_URI: "https://bma-ehr.frappet.synology.me/api/v1",
// API_URI_ORG_SERVICE: "https://localhost:7056/api/v1", //ใช้ชั่วคราว
API_URI_ORG_SERVICE: "https://bma-ehr.frappet.synology.me/api/v1", //ใช้ชั่วคราว
// API_URI_ORG_EMPLOYEE_SERVICE: "https://localhost:7208/api/v1", //ใช้ชั่วคราว

View file

@ -177,4 +177,17 @@ export default {
`${registryNew}${empType}/family/${type}`,
profileFamilyHistory: (id: string, empType: string, type: string) =>
`${registryNew}${empType}/family/${type}/history/${id}`,
//ลูกจ้างชั่วคราว
positionEmployee: (id: string) => `${registryNew}-employee/position/${id}`,
informationEmployee: (id: string) =>
`${registryNew}-employee/information/${id}`,
informationHistoryEmployee: (id: string) =>
`${registryNew}-employee/information/history/${id}`,
employmentEmployee: (id: string) =>
`${registryNew}-employee/employment/${id}`,
employmentEmployeeId: (id: string) =>
`${registryNew}-employee/employment/id/${id}`,
employmentHistoryEmployee: (id: string) =>
`${registryNew}-employee/employment/history/${id}`,
};