This commit is contained in:
Rizki
2026-04-23 16:53:51 +07:00
parent 031e4d3432
commit 1422eace45

View File

@ -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) {