diff --git a/src/modules/07_insignia/components/5_Borrow/DialogForm.vue b/src/modules/07_insignia/components/5_Borrow/DialogForm.vue index ba1e40563..0e27b7b63 100644 --- a/src/modules/07_insignia/components/5_Borrow/DialogForm.vue +++ b/src/modules/07_insignia/components/5_Borrow/DialogForm.vue @@ -126,18 +126,17 @@ const fetchOrgList = async () => { id: e.organizationId, name: e.organizationName, })); - - if (props.action == "editData") { - OrgList.value = [ - { - id: "00000000-0000-0000-0000-000000000000", - name: "สำนักนายกรัฐมนตรี", - }, - ...orgArr, - ]; - } else { - OrgList.value = orgArr; - } + // if (props.action == "editData") { + // OrgList.value = [ + // { + // id: "00000000-0000-0000-0000-000000000000", + // name: "สำนักนายกรัฐมนตรี", + // }, + // ...orgArr, + // ]; + // } else { + OrgList.value = orgArr; + // } }) .catch((err) => { messageError($q, err); @@ -160,7 +159,6 @@ const fetchOrgList = async () => { // }); // }; - // บันทึกข้อมูลการยืม-คืน const clickSave = async () => { await myForm.value!.validate().then((result: boolean) => { @@ -236,12 +234,12 @@ const closeDialog = () => { // reset วันที่ยืม const clearReceiveDate = () => { receivedate.value = null; -} +}; // reset วันที่คืน const clearReturnDate = () => { returndate.value = null; -} +};