Bugs Fix Kode Rekening dan SPS Input Data Realisasi Belanja

This commit is contained in:
Pusdatin BPKD Jkt
2022-12-20 10:23:30 +07:00
parent 60d4447548
commit 33829f711a
2 changed files with 47 additions and 73 deletions
@@ -49,7 +49,7 @@ class ItemSearchController extends Controller
if($request->has('q')){
$search = strtolower($request->q);
$sqlStr.= " AND LOWER(x.NAMA_SKPD) LIKE '%$search%' ";
$sqlStr.= " AND ( LOWER(x.NAMA_SKPD) LIKE '%$search%' OR x.KODE_SKPD LIKE '%$search%' )";
}
$tropd = DB::select(DB::raw($sqlStr." ORDER BY x.KODE_SKPD "));