Fixed error on getting op details

This commit is contained in:
Patrick Alvin Alcala 2025-11-10 13:39:48 +08:00
parent 3dc0eabba0
commit 0fba045794

View file

@ -127,28 +127,28 @@ export default () => {
const getopdetails = async (applicationNo: string) => {
const op = await ofetch(API + 'get-opdetails-electrical/' + applicationNo, { parseResponse: JSON.parse })
setAssessor(op.result7[0])
setLocation(op.result5[0])
setType(op.result6[0])
setDateOp(dayjs(op.result10[0]).format('MMMM DD, YYYY'))
setApplicationId(op.result11[0])
// setAssessorId(op.result12[0])
setTotalOp(calculateTotal(op.result9))
setLocation(op.result[0])
setType(op.result2[0])
setAssessor(op.result3[0])
setTotalOp(calculateTotal(op.result4))
setDateOp(dayjs(op.result5[0]).format('MMMM DD, YYYY'))
setApplicationId(op.result6[0])
// setAssessorId(op.result12[0])
// setDescriptionList(op.result8)
// setAmountList(op.result9)
// setDateOpList(op.result10)
// calculateAmounts()
getPrintDetails(op.result11[0])
getPrintDetailsFees(op.result11[0])
getPrintDetails(op.result6[0])
getPrintDetailsFees(op.result6[0])
getSignatureImage(employeeId())
const approversignId = await geteSignId(276)
getApprovedDate(approversignId, applicationNo)
// const assessorId = await getEmployeeId(op.result7[0])
// const assessorsignId = await geteSignId(assessorId)
getAssessedDate(op.result11[0])
getAssessedDate(op.result6[0])
}
const calculateTotal = (list: number[]) => {