This commit is contained in:
KhatamNugraha
2024-07-04 13:40:11 +07:00
parent 7855162c69
commit 53ea83d3a1
3 changed files with 3 additions and 3 deletions

View File

@ -138,6 +138,7 @@ class Account extends Model
$data = DB::connection("db2")->table("MIS.VW_AA_DEPO")->select('*')
->whereIn('NO_REK', $acc)
->where('PERIOD', $date)
->where('JUMLAH_NOMINAL' <> 0)
->limit(100);
return $data;
}
@ -179,7 +180,6 @@ class Account extends Model
->where('SK_NASABAH', $cus_no)
//->where('ARR_STATUS', 'CURRENT')
->where('PERIODE', $dateCore)
// ->where('ARR_STATUS', '<>', 'CLOSE')
// ->where('PRODUCT_LINE', 'like', "%" .'LENDING' ."%")
->limit(100);

View File

@ -462,7 +462,7 @@ class KonfirmasiBankController extends Controller
$DataDepo[$keyDep]['MATURITY_DATE'] = Carbon::parse($depo->JATUH_TEMPO)->format('d-m-Y');
$DataDepo[$keyDep]['ARRANGEMENT_ID'] = '';
$DataDepo[$keyDep]['FIXED_RATE'] = number_format($depo->SUKU_BUNGA, 2, ',', '.') ?? '';
$DataDepo[$keyDep]['TERM'] = substr($depo->KODE_SUB_PRODUK, 0, -1);
$DataDepo[$keyDep]['TERM'] = $depo->KODE_SUB_PRODUK ; //substr($depo->KODE_SUB_PRODUK, 0, -1);
}
// dd($Deposito);

View File

@ -189,7 +189,7 @@
<td class="text-center space1 "></td>
<td class="text-center space1">{{ $depo['CURRENCY'] }}</td>
<td class="text-right space1">{{$depo['WORKING_BALANCE']}}</td>
<td class="text-center space1">{{ $depo['TERM'] }} BLN</td>
<td class="text-center space1">{{ $depo['TERM'] }}</td>
<td class="text-center space1">{{ $depo['FIXED_RATE'] }} %</td>
<td class="text-center space1">{{ $depo['MATURITY_DATE'] }}</td>
<td class="text-center space1">{{ $depo['ACCOUNT_NUMBER'] }}</td>