Merge branch 'develop' into devTee
This commit is contained in:
commit
2dcb25d9db
2 changed files with 36 additions and 4 deletions
|
|
@ -586,6 +586,11 @@ function clickSaveDeceased() {
|
|||
formData.append("Location", placeDeathCertificate.value);
|
||||
formData.append("Reason", reasonDeath.value);
|
||||
formData.append("ProfileId", profileId.value);
|
||||
formData.append(
|
||||
"ProfileType",
|
||||
empType.value === "-employee" ? "EMPLOYEE" : "OFFICER"
|
||||
);
|
||||
|
||||
await http
|
||||
.post(config.API.listDeceased(), formData)
|
||||
.then(async () => {
|
||||
|
|
@ -594,8 +599,6 @@ function clickSaveDeceased() {
|
|||
})
|
||||
.catch((e) => {
|
||||
messageError($q, e);
|
||||
})
|
||||
.finally(() => {
|
||||
hideLoader();
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -13,7 +13,14 @@ import { checkPermission } from "@/utils/permissions";
|
|||
const $q = useQuasar();
|
||||
const router = useRouter();
|
||||
const mixin = useCounterMixin();
|
||||
const { showLoader, hideLoader, messageError, date2Thai, findOrgName ,onSearchDataTable} = mixin;
|
||||
const {
|
||||
showLoader,
|
||||
hideLoader,
|
||||
messageError,
|
||||
date2Thai,
|
||||
findOrgName,
|
||||
onSearchDataTable,
|
||||
} = mixin;
|
||||
|
||||
/** คอลัมน์ */
|
||||
const rows = ref<any[]>([]);
|
||||
|
|
@ -43,7 +50,28 @@ const columns = ref<QTableProps["columns"]>([
|
|||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
format(val, row) {
|
||||
return `${row.prefix ?? ""}${row.firstName} ${row.lastName}`;
|
||||
return row.firstName
|
||||
? ` ${row.prefix ?? ""}${row.firstName} ${row.lastName}`
|
||||
: "-";
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
name: "profileType",
|
||||
align: "left",
|
||||
label: "สถานภาพ",
|
||||
sortable: true,
|
||||
field: "profileType",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
format(val, row) {
|
||||
return `${
|
||||
row.profileType === "OFFICER"
|
||||
? "ข้าราชการ กทม. สามัญ"
|
||||
: row.profileType === "EMPLOYEE"
|
||||
? "ลูกจ้างประจำ กทม."
|
||||
: "-"
|
||||
} `;
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
@ -109,6 +137,7 @@ const visibleColumns = ref<string[]>([
|
|||
"positionExecutive",
|
||||
"org",
|
||||
"createdAt",
|
||||
"profileType",
|
||||
]);
|
||||
|
||||
/**เรียกข้อมูลจาก APi */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue