Merge branch 'develop' of https://github.com/Frappet/bma-ehr-frontend into develop

This commit is contained in:
setthawutttty 2024-02-21 13:41:50 +07:00
commit 433555b0c7
2 changed files with 12 additions and 8 deletions

View file

@ -201,10 +201,13 @@ export default {
profileVerified: (profileId: string) => `${profile}verified/${profileId}`,
profileVerifiedUnlock: (profileId: string) =>
`${profile}not-verified/${profileId}`,
profileSendVerified: (profileId: string) => `${profile}send-verified/${profileId}`,
profileSendVerified: (profileId: string) =>
`${profile}send-verified/${profileId}`,
listVerified: () => `${profile}list-verified`,
registryNew,
registryNewId: (id: string) => `${registryNew}${id}`,
profileNewCitizenId: (citizenId: string) =>
`${registryNew}citizenId/${citizenId}`,
/**ปรับรายการเงินเดือนขึ้น-ลง*/
salarySwap: (dierction: string, id: string) =>

View file

@ -292,15 +292,16 @@ async function changeCardID(citizenId: string | number | null) {
if (citizenId != null && typeof citizenId == "string") {
if (citizenId.length == 13 && citizenId) {
await http
.get(config.API.profileCitizenId(citizenId))
.then((res) => {
console.log(res);
const statusId = res.data.result.citizen;
!statusId &&
dialogMessageNotify($q, "เลขประจำตัวประชาชนนี้มีการใช้งานแล้ว");
.put(config.API.profileNewCitizenId(citizenId), {
citizenId: citizenId,
})
.then(() => {})
.catch((err) => {
messageError($q, err);
if (err.response.data.status === 500) {
dialogMessageNotify($q, err.response.data.message);
} else {
messageError($q, err);
}
});
}
}