From 031e4d3432286350fc6841f3c174c5b483d55615 Mon Sep 17 00:00:00 2001 From: Rizki Date: Thu, 23 Apr 2026 16:41:06 +0700 Subject: [PATCH] upd --- adapter/procjustificationadapter.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/adapter/procjustificationadapter.js b/adapter/procjustificationadapter.js index d843292..8bfe538 100644 --- a/adapter/procjustificationadapter.js +++ b/adapter/procjustificationadapter.js @@ -1137,12 +1137,15 @@ class ProcJustificationAdapter extends Adapter { var status = req.body.status; var statusdescription = req.body.statusdescription; var nik = req.body.nik; + var remark = req.body.remark || ''; var qry = "update tbl_procjustification set status='" + status + "',statusdescription='" + statusdescription + + "',remark='" + + remark.replace(/'/g, "\\'") + "',uby='" + nik + "',udt=now() ";