FIX term
This commit is contained in:
@ -138,6 +138,7 @@ class Account extends Model
|
|||||||
$data = DB::connection("db2")->table("MIS.VW_AA_DEPO")->select('*')
|
$data = DB::connection("db2")->table("MIS.VW_AA_DEPO")->select('*')
|
||||||
->whereIn('NO_REK', $acc)
|
->whereIn('NO_REK', $acc)
|
||||||
->where('PERIOD', $date)
|
->where('PERIOD', $date)
|
||||||
|
->where('JUMLAH_NOMINAL' <> 0)
|
||||||
->limit(100);
|
->limit(100);
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
@ -179,7 +180,6 @@ class Account extends Model
|
|||||||
->where('SK_NASABAH', $cus_no)
|
->where('SK_NASABAH', $cus_no)
|
||||||
//->where('ARR_STATUS', 'CURRENT')
|
//->where('ARR_STATUS', 'CURRENT')
|
||||||
->where('PERIODE', $dateCore)
|
->where('PERIODE', $dateCore)
|
||||||
// ->where('ARR_STATUS', '<>', 'CLOSE')
|
|
||||||
// ->where('PRODUCT_LINE', 'like', "%" .'LENDING' ."%")
|
// ->where('PRODUCT_LINE', 'like', "%" .'LENDING' ."%")
|
||||||
->limit(100);
|
->limit(100);
|
||||||
|
|
||||||
|
@ -462,7 +462,7 @@ class KonfirmasiBankController extends Controller
|
|||||||
$DataDepo[$keyDep]['MATURITY_DATE'] = Carbon::parse($depo->JATUH_TEMPO)->format('d-m-Y');
|
$DataDepo[$keyDep]['MATURITY_DATE'] = Carbon::parse($depo->JATUH_TEMPO)->format('d-m-Y');
|
||||||
$DataDepo[$keyDep]['ARRANGEMENT_ID'] = '';
|
$DataDepo[$keyDep]['ARRANGEMENT_ID'] = '';
|
||||||
$DataDepo[$keyDep]['FIXED_RATE'] = number_format($depo->SUKU_BUNGA, 2, ',', '.') ?? '';
|
$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);
|
// dd($Deposito);
|
||||||
|
|
||||||
|
@ -189,7 +189,7 @@
|
|||||||
<td class="text-center space1 "></td>
|
<td class="text-center space1 "></td>
|
||||||
<td class="text-center space1">{{ $depo['CURRENCY'] }}</td>
|
<td class="text-center space1">{{ $depo['CURRENCY'] }}</td>
|
||||||
<td class="text-right space1">{{$depo['WORKING_BALANCE']}}</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['FIXED_RATE'] }} %</td>
|
||||||
<td class="text-center space1">{{ $depo['MATURITY_DATE'] }}</td>
|
<td class="text-center space1">{{ $depo['MATURITY_DATE'] }}</td>
|
||||||
<td class="text-center space1">{{ $depo['ACCOUNT_NUMBER'] }}</td>
|
<td class="text-center space1">{{ $depo['ACCOUNT_NUMBER'] }}</td>
|
||||||
|
Reference in New Issue
Block a user