Merge branch 'develop' into devTee
# Conflicts: # src/modules/04_registryPerson/components/requestEdit/01_TabInformation.vue
This commit is contained in:
commit
ea01d168cb
20 changed files with 384 additions and 328 deletions
|
|
@ -744,7 +744,8 @@ function onSubmitDate() {
|
|||
function openModalOrder(val: boolean) {
|
||||
// ยังไม่ได้ดัก ส่ง ไป ทั้ง object #e.draft == "รอส่งตัว" &&
|
||||
rowsOrder.value = rows.value.filter(
|
||||
(e: any) => e.nodeName !== null && e.reportingDate !== null
|
||||
(e: any) =>
|
||||
e.nodeName !== null && e.reportingDate !== null && e.statusId !== "REPORT"
|
||||
);
|
||||
modalOrder.value = val;
|
||||
}
|
||||
|
|
@ -808,6 +809,7 @@ onMounted(async () => {
|
|||
<q-btn
|
||||
v-if="
|
||||
props.row.statusId !== 'DONE' &&
|
||||
props.row.statusId !== 'REPORT' &&
|
||||
(checkPermission($route)?.attrIsGet ||
|
||||
checkPermission($route)?.attrIsUpdate)
|
||||
"
|
||||
|
|
|
|||
|
|
@ -296,7 +296,7 @@ function openModalOrder() {
|
|||
modal.value = true;
|
||||
}
|
||||
|
||||
function onSave(data: any) {
|
||||
async function onSave(data: any) {
|
||||
const dataAppoint = {
|
||||
node: data.node,
|
||||
nodeId: data.nodeId,
|
||||
|
|
@ -314,7 +314,7 @@ function onSave(data: any) {
|
|||
};
|
||||
|
||||
showLoader();
|
||||
http
|
||||
await http
|
||||
.put(config.API.receivePosition(personalId.value), dataAppoint)
|
||||
.then(async () => {
|
||||
await fecthlistRecevice();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue