ผูก API (**รอ API เพิ่มเติม)การอนุมัติ รายการเลื่อนเงินเดือนข้าราชการฯ
This commit is contained in:
parent
490fa72f34
commit
3f205977b0
3 changed files with 45 additions and 14 deletions
|
|
@ -49,5 +49,9 @@ export default {
|
||||||
salaryFormula:()=>`${salaryFormula}`,
|
salaryFormula:()=>`${salaryFormula}`,
|
||||||
salaryFormulaById:(id:string)=>`${salaryFormula}/${id}`,
|
salaryFormulaById:(id:string)=>`${salaryFormula}/${id}`,
|
||||||
salaryEmployeePositionType:(key:string)=>`${salaryOrg}/pos/position?keyword=${key}&type=positionType`,
|
salaryEmployeePositionType:(key:string)=>`${salaryOrg}/pos/position?keyword=${key}&type=positionType`,
|
||||||
salaryEmployeeActive :()=>`${salary}/employee/active`
|
salaryEmployeeActive :()=>`${salary}/employee/active`,
|
||||||
|
|
||||||
|
|
||||||
|
salaryPeriodStatus:(type:string,periodId:string,rootId:string)=>`${salaryPeriod}/${type}/approve/${periodId}/${rootId}`,
|
||||||
|
salaryPeriodStatusComment:(type:string,periodId:string,rootId:string)=>`${salaryPeriod}/${type}/comment/${periodId}/${rootId}`
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,25 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from "vue";
|
import { ref,defineProps } from "vue";
|
||||||
import { useQuasar } from "quasar";
|
import { useQuasar } from "quasar";
|
||||||
|
|
||||||
import http from "@/plugins/http";
|
import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
import DialogPopupReason from "@/components/Dialogs/PopupReason.vue"; //หมายเหตุ
|
import DialogPopupReason from "@/components/Dialogs/PopupReason.vue"; //หมายเหตุ
|
||||||
|
import { useSalaryListSDataStore } from "@/modules/13_salary/store/SalaryListsStore";
|
||||||
|
const store = useSalaryListSDataStore();
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
|
|
||||||
const $q = useQuasar(); //ใช้ noti quasar
|
const $q = useQuasar(); //ใช้ noti quasar
|
||||||
const mixin = useCounterMixin();
|
const mixin = useCounterMixin();
|
||||||
const { messageError, dialogConfirm, showLoader, hideLoader, success } = mixin;
|
const { messageError, dialogConfirm, showLoader, hideLoader, success } = mixin;
|
||||||
|
const type = ref<string>('')
|
||||||
const sendStep = ref<number>(1);
|
const sendStep = ref<number>(1);
|
||||||
const fileUpload = ref<any>(null);
|
const fileUpload = ref<any>(null);
|
||||||
const document = ref<string>("");
|
const document = ref<string>("");
|
||||||
|
const props = defineProps({
|
||||||
|
rootId:String,
|
||||||
|
periodId:String
|
||||||
|
})
|
||||||
/**
|
/**
|
||||||
* function อัปโหลดไฟล์เจ้าหน้าที่
|
* function อัปโหลดไฟล์เจ้าหน้าที่
|
||||||
* @param event file
|
* @param event file
|
||||||
|
|
@ -47,10 +52,22 @@ async function uploadFile(event: any) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function saveReccommend() {
|
function saveReccommend(reason:string) {
|
||||||
dialogConfirm(
|
dialogConfirm(
|
||||||
$q,
|
$q,
|
||||||
async () => {
|
async () => {
|
||||||
|
showLoader()
|
||||||
|
http
|
||||||
|
.put(config.API.salaryPeriodStatusComment(type.value, props.periodId ? props.periodId:'', props.rootId ? props.rootId:''),{
|
||||||
|
titleRecommend:reason
|
||||||
|
})
|
||||||
|
.then((res)=>{
|
||||||
|
console.log(res)
|
||||||
|
}).catch((e)=>{
|
||||||
|
messageError($q,e)
|
||||||
|
}).finally(()=>{
|
||||||
|
hideLoader()
|
||||||
|
})
|
||||||
sendStep.value = sendStep.value + 1;
|
sendStep.value = sendStep.value + 1;
|
||||||
modalRecommend.value = false;
|
modalRecommend.value = false;
|
||||||
},
|
},
|
||||||
|
|
@ -59,10 +76,20 @@ function saveReccommend() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendToDirector(msg: string) {
|
function sendToDirector(msg: string,type:string) {
|
||||||
dialogConfirm(
|
dialogConfirm(
|
||||||
$q,
|
$q,
|
||||||
async () => {
|
async () => {
|
||||||
|
showLoader()
|
||||||
|
http
|
||||||
|
.get(config.API.salaryPeriodStatus(type, props.periodId ? props.periodId:'', props.rootId ? props.rootId:''))
|
||||||
|
.then((res)=>{
|
||||||
|
console.log(res)
|
||||||
|
}).catch((e)=>{
|
||||||
|
messageError($q,e)
|
||||||
|
}).finally(()=>{
|
||||||
|
hideLoader()
|
||||||
|
})
|
||||||
sendStep.value = sendStep.value == 3 ? 6 : sendStep.value + 1;
|
sendStep.value = sendStep.value == 3 ? 6 : sendStep.value + 1;
|
||||||
},
|
},
|
||||||
"ยืนยันการ" + msg,
|
"ยืนยันการ" + msg,
|
||||||
|
|
@ -72,9 +99,10 @@ function sendToDirector(msg: string) {
|
||||||
|
|
||||||
const modalRecommend = ref<boolean>(false);
|
const modalRecommend = ref<boolean>(false);
|
||||||
const titleRecommend = ref<string>("");
|
const titleRecommend = ref<string>("");
|
||||||
function sendAndRecommend(title: string) {
|
function sendAndRecommend(title: string,typeOrder:string) {
|
||||||
modalRecommend.value = true;
|
modalRecommend.value = true;
|
||||||
titleRecommend.value = title;
|
titleRecommend.value = title;
|
||||||
|
type.value = typeOrder
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
@ -128,7 +156,7 @@ function sendAndRecommend(title: string) {
|
||||||
unelevated
|
unelevated
|
||||||
color="public"
|
color="public"
|
||||||
label="ส่งเอกสารให้ ผอ. ตรวจสอบ"
|
label="ส่งเอกสารให้ ผอ. ตรวจสอบ"
|
||||||
@click="sendToDirector('ส่งเอกสารให้ ผอ. ตรวจสอบ')"
|
@click="sendToDirector('ส่งเอกสารให้ ผอ. ตรวจสอบ','officer')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- ผอ. หน่วยงานทำการยืนยันและส่งให้ สกจ. -->
|
<!-- ผอ. หน่วยงานทำการยืนยันและส่งให้ สกจ. -->
|
||||||
|
|
@ -137,7 +165,7 @@ function sendAndRecommend(title: string) {
|
||||||
unelevated
|
unelevated
|
||||||
color="public"
|
color="public"
|
||||||
label="ยืนยันและส่งเอกสารให้ สกจ."
|
label="ยืนยันและส่งเอกสารให้ สกจ."
|
||||||
@click="sendToDirector('ยืนยันและส่งเอกสารให้ สกจ.')"
|
@click="sendToDirector('ยืนยันและส่งเอกสารให้ สกจ.','head')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- สกจ. ตรวจสอบเอกสารและข้อมูลรายการเงินเดือนที่แต่ละหน่วยงานส่งมา ไม่มีปรับโควต้า -->
|
<!-- สกจ. ตรวจสอบเอกสารและข้อมูลรายการเงินเดือนที่แต่ละหน่วยงานส่งมา ไม่มีปรับโควต้า -->
|
||||||
|
|
@ -146,7 +174,7 @@ function sendAndRecommend(title: string) {
|
||||||
unelevated
|
unelevated
|
||||||
color="green"
|
color="green"
|
||||||
label="ยืนยันการตรวจสอบ"
|
label="ยืนยันการตรวจสอบ"
|
||||||
@click="sendToDirector('ยืนยันการตรวจสอบ')"
|
@click="sendToDirector('ยืนยันการตรวจสอบ','owner')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- สกจ. ตรวจสอบเอกสารและข้อมูลรายการเงินเดือนที่แต่ละหน่วยงานส่งมา มีปรับโควต้า -->
|
<!-- สกจ. ตรวจสอบเอกสารและข้อมูลรายการเงินเดือนที่แต่ละหน่วยงานส่งมา มีปรับโควต้า -->
|
||||||
|
|
@ -156,7 +184,7 @@ function sendAndRecommend(title: string) {
|
||||||
unelevated
|
unelevated
|
||||||
color="warning"
|
color="warning"
|
||||||
label="ส่งคำแนะนำให้ ผอ. ตรวจสอบ"
|
label="ส่งคำแนะนำให้ ผอ. ตรวจสอบ"
|
||||||
@click="sendAndRecommend('ส่งคำแนะนำให้ ผอ. ตรวจสอบ')"
|
@click="sendAndRecommend('ส่งคำแนะนำให้ ผอ. ตรวจสอบ','owner')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- ผอ.หน่วยงานส่งคำแนะนำให้การเจ้าหน้าที่หน่วยงาน -->
|
<!-- ผอ.หน่วยงานส่งคำแนะนำให้การเจ้าหน้าที่หน่วยงาน -->
|
||||||
|
|
@ -165,7 +193,7 @@ function sendAndRecommend(title: string) {
|
||||||
unelevated
|
unelevated
|
||||||
color="public"
|
color="public"
|
||||||
label="ส่งคำแนะนำให้การเจ้าหน้าที่หน่วยงาน"
|
label="ส่งคำแนะนำให้การเจ้าหน้าที่หน่วยงาน"
|
||||||
@click="sendAndRecommend('ส่งคำแนะนำให้ ผอ. ตรวจสอบ')"
|
@click="sendAndRecommend('ส่งคำแนะนำให้ ผอ. ตรวจสอบ','head')"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<q-btn
|
<q-btn
|
||||||
|
|
|
||||||
|
|
@ -322,7 +322,6 @@ onMounted(async () => {
|
||||||
รายการเลื่อนเงินเดือนข้าราชการฯ
|
รายการเลื่อนเงินเดือนข้าราชการฯ
|
||||||
</div>
|
</div>
|
||||||
<q-space />
|
<q-space />
|
||||||
|
|
||||||
<q-select
|
<q-select
|
||||||
v-model="roundFilter"
|
v-model="roundFilter"
|
||||||
label="รอบการขึ้นเงินเดือน"
|
label="รอบการขึ้นเงินเดือน"
|
||||||
|
|
@ -422,7 +421,7 @@ onMounted(async () => {
|
||||||
bordered
|
bordered
|
||||||
class="row col-12 q-mt-xs"
|
class="row col-12 q-mt-xs"
|
||||||
>
|
>
|
||||||
<ProcessStep />
|
<ProcessStep :periodId="roundFilter.id" :rootId="agencyFilter"/>
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
||||||
<!-- </q-card> -->
|
<!-- </q-card> -->
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue