diff --git a/src/modules/05_placement/components/probation/DialogOrder.vue b/src/modules/05_placement/components/probation/DialogOrder.vue index 6cc4f26bc..351cc3d92 100644 --- a/src/modules/05_placement/components/probation/DialogOrder.vue +++ b/src/modules/05_placement/components/probation/DialogOrder.vue @@ -96,7 +96,7 @@ const columns = ref([ name: "name", align: "left", label: "ชื่อ-นามสกุล", - sortable: true, + sortable: false, field: "name", headerStyle: "font-size: 14px", style: "font-size: 14px", @@ -105,7 +105,7 @@ const columns = ref([ name: "position_line", align: "left", label: "ตำแหน่งในสายงาน", - sortable: true, + sortable: false, field: "position_line", headerStyle: "font-size: 14px", style: "font-size: 14px", @@ -114,7 +114,7 @@ const columns = ref([ name: "position_level", align: "left", label: "ระดับ", - sortable: true, + sortable: false, field: "position_level", headerStyle: "font-size: 14px", style: "font-size: 14px", @@ -123,7 +123,7 @@ const columns = ref([ name: "organization", align: "left", label: "สังกัด", - sortable: true, + sortable: false, field: "organization", headerStyle: "font-size: 14px", style: "font-size: 14px ", @@ -133,7 +133,7 @@ const columns = ref([ name: "probation_no", align: "center", label: "ครั้งที่ทดลองปฏิบัติหน้าที่ราชการ", - sortable: true, + sortable: false, field: "probation_no", headerStyle: "font-size: 14px", style: "font-size: 14px", @@ -145,7 +145,7 @@ const columns = ref([ name: "order_number", align: "center", label: "เลขที่คําสั่งบรรจุแต่งตั้ง", - sortable: true, + sortable: false, field: "order_number", headerStyle: "font-size: 14px", style: "font-size: 14px", @@ -157,7 +157,7 @@ const columns = ref([ name: "probation_status", align: "left", label: "สถานะ", - sortable: true, + sortable: false, field: "probation_status", headerStyle: "font-size: 14px", style: "font-size: 14px", @@ -203,7 +203,7 @@ async function getList() { .get( config.API.probationPersonalList() + `?status=${ - commandType.value ? (commandType.value == "C-PM-11" ? 2 : 3) : "" + commandType.value ? (commandType.value == "C-PM-11" ? 3 : 2) : "" }&page=${pagination.value.page}&pageSize=${ pagination.value.rowsPerPage }&keyword=${filter.value.trim()}` diff --git a/src/modules/13_salary/components/04_salaryLists/TableTypePending.vue b/src/modules/13_salary/components/04_salaryLists/TableTypePending.vue index b9c8dd646..dde372515 100644 --- a/src/modules/13_salary/components/04_salaryLists/TableTypePending.vue +++ b/src/modules/13_salary/components/04_salaryLists/TableTypePending.vue @@ -529,7 +529,7 @@ function onClickViewInfo(type: string, id: string) {