From 4c1153c8578eddccd5bb80f16ce34ba45ff16fb0 Mon Sep 17 00:00:00 2001
From: Arun Nair <arun.kumar@tarento.com>
Date: Tue, 9 Jan 2024 14:09:25 +0530
Subject: [PATCH] Inspection Delayed status text changed

---
 scheduler.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scheduler.js b/scheduler.js
index 68036e8..6b0dba0 100644
--- a/scheduler.js
+++ b/scheduler.js
@@ -144,14 +144,14 @@ const updateInspectionScheduleStatus = async() => {
       // update Assessor Status in form_submission to Delayed
       await updateStatus(
        { form_id: item.Applicant_form.form_id, 
-        form_status: "Delayed",
-        remarks: "Delayed because the inspection was not undertaken on the scheduled date", 
+        form_status: "Inspection Delayed",
+        remarks: "Inspection Delayed because the inspection was not undertaken on the scheduled date", 
         updated_at: new Date().toLocaleString()
        }
       )
       await updateAssessmentStatus({
         form_id: item.Applicant_form.form_id,
-        form_status: "Delayed"
+        form_status: "Inspection Delayed"
       });
     }
       
-- 
GitLab