From 1422eace45556de26268120294b7b11fa110d7f8 Mon Sep 17 00:00:00 2001 From: Rizki Date: Thu, 23 Apr 2026 16:53:51 +0700 Subject: [PATCH] upd --- adapter/procjustificationadapter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapter/procjustificationadapter.js b/adapter/procjustificationadapter.js index 8bfe538..63214eb 100644 --- a/adapter/procjustificationadapter.js +++ b/adapter/procjustificationadapter.js @@ -842,7 +842,7 @@ class ProcJustificationAdapter extends Adapter { try { let _idx = req.query.id; - let qry = "select * from vw_procjustification where id='" + _idx + "'"; + let qry = "select v.*, p.remark from vw_procjustification v LEFT JOIN tbl_procjustification p ON p._idx = v.id where v.id='" + _idx + "'"; console.log(qry); db.query(qry, [], function (err, result, fields) {