update view fasilitas and signer
This commit is contained in:
@ -171,9 +171,9 @@
|
|||||||
//$Arrangement = $ViewAccount->getAAaccount($account->CUSTOMER_NO,$account->ACCOUNT_NUMBER);
|
//$Arrangement = $ViewAccount->getAAaccount($account->CUSTOMER_NO,$account->ACCOUNT_NUMBER);
|
||||||
$Arrangement = $ViewAccount->getAAaccount($request['cus_no'] , $account->ACCOUNT_NUMBER)->first();
|
$Arrangement = $ViewAccount->getAAaccount($request['cus_no'] , $account->ACCOUNT_NUMBER)->first();
|
||||||
$months = '';
|
$months = '';
|
||||||
if($Arrangement->TERM != null){
|
|
||||||
$arrTerm = substr($Arrangement->TERM,-1);
|
|
||||||
|
|
||||||
|
if($Arrangement != null && $Arrangement->TERM != null){
|
||||||
|
$arrTerm = substr($Arrangement->TERM,-1);
|
||||||
if($arrTerm[1] = 'Y'){
|
if($arrTerm[1] = 'Y'){
|
||||||
$monthsInYear = 12;
|
$monthsInYear = 12;
|
||||||
$months = int($arrTerm[0]) * $monthsInYear;
|
$months = int($arrTerm[0]) * $monthsInYear;
|
||||||
@ -183,7 +183,7 @@
|
|||||||
$months = int($arrTerm[0]) / $averageDaysInMonth;
|
$months = int($arrTerm[0]) / $averageDaysInMonth;
|
||||||
// return $days;
|
// return $days;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$DataAccounts[$key1]['ACCOUNT_NUMBER'] = $account->ACCOUNT_NUMBER;
|
$DataAccounts[$key1]['ACCOUNT_NUMBER'] = $account->ACCOUNT_NUMBER;
|
||||||
|
@ -23,6 +23,17 @@
|
|||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
/* Chrome, Safari, Edge, Opera */
|
||||||
|
input::-webkit-outer-spin-button,
|
||||||
|
input::-webkit-inner-spin-button {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Firefox */
|
||||||
|
input[type=number] {
|
||||||
|
-moz-appearance: textfield;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<div class="card card-xxl-stretch mb-5 mb-xl-8">
|
<div class="card card-xxl-stretch mb-5 mb-xl-8">
|
||||||
<!--begin::Card body-->
|
<!--begin::Card body-->
|
||||||
@ -243,7 +254,7 @@
|
|||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label for="inputName" class="col-sm-4 col-form-label">Tlp</label>
|
<label for="inputName" class="col-sm-4 col-form-label">Tlp</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<input class="form-control form-control-sm " id="phoneNumber" name="tlp" type="text"pattern="[6789][0-9]{9}" title="Please enter valid phone number">
|
<input type="number" class="form-control form-control-sm " name="tlp" title="Please enter valid phone number" placeholder="No Tlp">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -5,6 +5,19 @@
|
|||||||
|
|
||||||
<!--begin::Card-->
|
<!--begin::Card-->
|
||||||
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
||||||
|
<style>
|
||||||
|
/* Chrome, Safari, Edge, Opera */
|
||||||
|
input::-webkit-outer-spin-button,
|
||||||
|
input::-webkit-inner-spin-button {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Firefox */
|
||||||
|
input[type=number] {
|
||||||
|
-moz-appearance: textfield;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<div class="card card-xxl-stretch mb-5 mb-xl-8">
|
<div class="card card-xxl-stretch mb-5 mb-xl-8">
|
||||||
<!--begin::Card body-->
|
<!--begin::Card body-->
|
||||||
<div class="card-body pt-6">
|
<div class="card-body pt-6">
|
||||||
@ -54,7 +67,7 @@
|
|||||||
<label for="inputName" class="col-sm-3 col-form-label">Account No</label>
|
<label for="inputName" class="col-sm-3 col-form-label">Account No</label>
|
||||||
<div class="col-sm-9">
|
<div class="col-sm-9">
|
||||||
<input type="hidden" class="form-control form-control-sm " name="nomor_cif" value="{{$data['queryParam']['cus_no_fasilitas']}}">
|
<input type="hidden" class="form-control form-control-sm " name="nomor_cif" value="{{$data['queryParam']['cus_no_fasilitas']}}">
|
||||||
<input type="text" class="form-control form-control-sm " name="nomor_rekening" placeholder="Nomor Rekening">
|
<input type="number" class="form-control form-control-sm " name="nomor_rekening" placeholder="Nomor Rekening">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user