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($request['cus_no'] , $account->ACCOUNT_NUMBER)->first();
|
||||
$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'){
|
||||
$monthsInYear = 12;
|
||||
$months = int($arrTerm[0]) * $monthsInYear;
|
||||
|
@ -23,6 +23,17 @@
|
||||
background-color: transparent;
|
||||
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>
|
||||
<div class="card card-xxl-stretch mb-5 mb-xl-8">
|
||||
<!--begin::Card body-->
|
||||
@ -243,7 +254,7 @@
|
||||
<div class="form-group row">
|
||||
<label for="inputName" class="col-sm-4 col-form-label">Tlp</label>
|
||||
<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>
|
||||
|
||||
|
@ -5,6 +5,19 @@
|
||||
|
||||
<!--begin::Card-->
|
||||
<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">
|
||||
<!--begin::Card body-->
|
||||
<div class="card-body pt-6">
|
||||
@ -54,7 +67,7 @@
|
||||
<label for="inputName" class="col-sm-3 col-form-label">Account No</label>
|
||||
<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="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>
|
||||
|
||||
|
Reference in New Issue
Block a user