CHANGE_CHECK_FULL_APP_CSS_CONTENT : AADHAVAN

This commit is contained in:
aadhavan valli 2024-07-15 16:53:56 +05:30
parent 5afcf92ab5
commit abfd39da1d
4 changed files with 13 additions and 6 deletions

View File

@ -154,7 +154,7 @@
</div>
</div>
</div>
<h5 class="mb-3 text-uppercase bg-light p-2"><i class="fas fa-bell mr-1"></i> Address Details</h5>
<h5 class="mb-3 text-uppercase bg-light p-2"><i class="fas fa-map-marker-alt mr-1"></i> Address Details</h5>
<div class="row">
<div class="col-md-6">
<div class="form-group">

View File

@ -193,7 +193,7 @@
</div>
</div>
<h5 class="mb-3 text-uppercase bg-light p-2 client_address_area">
<i class="mdi mdi-office-building mr-1"></i> Address Details
<i class="fas fa-map-marker-alt mr-1"></i> Address Details
</h5>
<div class="row client_address_area" >
@ -324,6 +324,11 @@
})
$('#add_client_button').click(function (params) {
$('.create_client').show();
$('.client_address_area').show();
$('.client_notification_area').show();
$('#individual_client').attr('disabled',false);
$('#name').val('');
$('#pan_no').val('');

View File

@ -32,7 +32,7 @@
<div class="page-title-box page-title-box-alt">
<h4 class="page-title"> Edit Document</h4>
<div class="page-title-right">
<button type="reset" onclick="window.history.back()" class="btn btn-secondary waves-effect">
<button type="reset" onclick="window.history.back()" class="btn btn-secondary waves-effect" style="color: #fff;background-color: #6c757d;border-color: #6c757d;">
Back
</button>
<ol class="breadcrumb m-0">

View File

@ -110,6 +110,7 @@
<table class="table table-striped dt-responsive nowrap w-100">
<thead>
<tr>
<th>Serial No</th>
<th>
Business Name
</th>
@ -157,11 +158,12 @@
console.log(response);
var tbody = $('#staff_business_list_modal tbody');
tbody.empty();
response.forEach(element => {
response.forEach((element, index) => {
console.log(element);
var row = '<tr>' +
'<td>' + element.business_name + '</td>' +
'</tr>';
'<td>' + (index + 1) + '</td>' + // Serial number (index + 1)
'<td>' + element.business_name + '</td>' +
'</tr>';
tbody.append(row);
});