566 lines
20 KiB
PHP
Executable File
566 lines
20 KiB
PHP
Executable File
<link rel="stylesheet"
|
||
href="<?php echo base_url('bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css') ?>">
|
||
<link rel="stylesheet" href="<?php echo base_url('bower_components/bootstrap-daterangepicker/daterangepicker.css') ?>">
|
||
<link rel="stylesheet"
|
||
href="<?php echo base_url('bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css') ?>">
|
||
<link rel="stylesheet" href="<?php echo base_url('bower_components/toastr/toastr.css') ?>">
|
||
<link rel="stylesheet" href="<?= base_url('bower_components/google-material-icons/google-material-icons.min.css') ?>">
|
||
|
||
|
||
<link rel="stylesheet" href="<?= base_url('dist/css/custom/levels-table.css') ?>">
|
||
<?php
|
||
|
||
use Brick\Money\Money;
|
||
|
||
$context = new \Brick\Money\Context\AutoContext();
|
||
?>
|
||
|
||
<div class="content-wrapper">
|
||
<!-- Content Header (Page header) -->
|
||
<section class="content-header">
|
||
|
||
<h1>
|
||
<?php echo $this->lang->line('edit_savings') . ' - ' . $network . ' - ' . $country; ?>
|
||
</h1>
|
||
<?php
|
||
|
||
|
||
if ($alert == "ok") {
|
||
|
||
if (!$success == "ok") {
|
||
?>
|
||
<div class='alert alert-danger alert-dismissible col-xs-6'>
|
||
<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×</button>
|
||
<h4><i class='icon fa fa-ban'></i> Erreur!</h4>
|
||
<?php echo $message; ?>
|
||
</div>
|
||
|
||
<?php
|
||
} else {
|
||
?>
|
||
<div class="alert alert-success alert-dismissible col-xs-6">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
<h4><i class="icon fa fa-check"></i> Success!</h4>
|
||
<?php echo $message; ?>
|
||
</div>
|
||
|
||
<?php
|
||
}
|
||
}
|
||
?>
|
||
|
||
</section>
|
||
|
||
<section class="content">
|
||
<div class="row">
|
||
<div class="col-lg-6">
|
||
<div class="margin">
|
||
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#modal-rates"
|
||
style="width: 100%"><?php echo $this->lang->line('change_interest_rates') ?></button>
|
||
</div>
|
||
</div>
|
||
<div class="col-lg-6">
|
||
<div class="margin">
|
||
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#modal-tax"
|
||
style="width: 100%"><?php echo $this->lang->line('edit_tax') ?></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="row centered">
|
||
<div class="col-lg-3 col-lg-offset-2 col-xs-12">
|
||
<div class="box">
|
||
<div class="box-header">
|
||
<h3 class="box-title"><?php echo $this->lang->line('savings_interest_rates'); ?></h3>
|
||
</div>
|
||
<div class="box-body table-responsive" style="overflow-x:auto;">
|
||
<table class="table table-hover">
|
||
<thead>
|
||
<tr>
|
||
<th><?php echo $this->lang->line('interest_rates_period'); ?> </th>
|
||
<th><?php echo $this->lang->line('rate') . ' (%)'; ?> </th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<?php
|
||
if ($rates != false) {
|
||
foreach ($rates->result() as $row) {
|
||
echo "<tr>
|
||
<td>" . $row->duree_mois . "</td>
|
||
<td>" . $row->taux . "</td>" . '
|
||
</tr>';
|
||
}
|
||
}
|
||
?>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="col-lg-4 col-xs-12">
|
||
<div class="box">
|
||
<div class="box-header">
|
||
<h3 class="box-title"><?php echo $this->lang->line('savings_tax'); ?></h3>
|
||
</div>
|
||
<div class="box-body table-responsive" style="overflow-x:auto;">
|
||
<table class="table table-hover">
|
||
<thead>
|
||
<tr>
|
||
<th><?php echo $this->lang->line('Nom'); ?> </th>
|
||
<th>Type</th>
|
||
<th>Valeur</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<?php
|
||
if ($taxes != false) {
|
||
foreach ($taxes->result() as $row) {
|
||
echo "<tr>
|
||
<td>" . $row->nom . "</td>
|
||
<td>" . $row->type . "</td>
|
||
<td>" . $row->valeur . "</td>" . '
|
||
</tr>';
|
||
}
|
||
}
|
||
?>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="modal fade" id="modal-rates">
|
||
<div class="modal-dialog">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
<h3 class="modal-title"><?php echo $this->lang->line('change_interest_rates'); ?></h3>
|
||
</div>
|
||
<div class="modal-body">
|
||
<form id="ratesForm">
|
||
<div class="row">
|
||
<div class="col-lg-12">
|
||
<div class="form-group">
|
||
<div class="table-title">
|
||
<div class="row">
|
||
<div class="col-sm-8">
|
||
<label for="nom"
|
||
class="col-form-label"><?php echo $this->lang->line('interest_rates'); ?></label>
|
||
</div>
|
||
<div class="col-sm-4">
|
||
<button type="button" class="btn btn-info add-new new5"><i
|
||
class="fa fa-plus"></i> <?php echo $this->lang->line('new_rate'); ?>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<table id="rates" class="table table-bordered">
|
||
<thead>
|
||
<tr>
|
||
<th><?php echo $this->lang->line('interest_rates_period'); ?></th>
|
||
<th><?php echo $this->lang->line('rate') . ' (%)'; ?></th>
|
||
<th>Actions</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<?php
|
||
if ($rates != false) {
|
||
foreach ($rates->result() as $row) {
|
||
echo "<tr>
|
||
<td>" . $row->duree_mois . "</td>
|
||
<td>" . $row->taux . "</td>" . '
|
||
<td>
|
||
<a class="add add5" title="Add" data-toggle="tooltip"><i class="material-icons"></i></a>
|
||
<a class="edit edit5" title="Edit" data-toggle="tooltip"><i class="material-icons"></i></a>
|
||
<a class="delete delete5" title="Delete" data-toggle="tooltip"><i class="material-icons"></i></a>
|
||
</td>
|
||
</tr>';
|
||
}
|
||
}
|
||
?>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-default pull-left"
|
||
data-dismiss="modal"><?php echo $this->lang->line('Fermer'); ?></button>
|
||
<button type="button" id="saveRates" data-network-id="<?= $network_id ?>"
|
||
data-id-config="<?= $idConfig ?>"
|
||
class="btn btn-primary"><?php echo $this->lang->line('save'); ?></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="modal fade" id="modal-tax">
|
||
<div class="modal-dialog">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
<h3 class="modal-title"><?php echo $this->lang->line('edit_tax'); ?></h3>
|
||
</div>
|
||
<div class="modal-body">
|
||
<form id="taxForm">
|
||
<div class="form-group" style="overflow-x:auto;">
|
||
<div class="table-title">
|
||
<div class="row">
|
||
<div class="col-sm-8">
|
||
<label for="nom"
|
||
class="col-form-label"><?php echo $this->lang->line('savings_tax'); ?></label>
|
||
</div>
|
||
<div class="col-sm-4">
|
||
<button type="button" class="btn btn-info add-new new51"><i
|
||
class="fa fa-plus"></i> <?php echo $this->lang->line('new_tax'); ?>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<table id="nano_credit_taxes" class="table table-bordered">
|
||
<thead>
|
||
<tr>
|
||
<th><?php echo $this->lang->line('Nom'); ?> </th>
|
||
<th>Type</th>
|
||
<th>Valeur</th>
|
||
<th>Actions</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<?php
|
||
if ($taxes != false) {
|
||
foreach ($taxes->result() as $row) {
|
||
echo "<tr>
|
||
<td>" . $row->nom . "</td>
|
||
<td>" . $row->type . "</td>
|
||
<td>" . $row->valeur . "</td>" . '
|
||
<td>
|
||
<a class="add add51" title="Add" data-toggle="tooltip"><i class="material-icons"></i></a>
|
||
<a class="edit edit51" title="Edit" data-toggle="tooltip"><i class="material-icons"></i></a>
|
||
<a class="delete delete51" title="Delete" data-toggle="tooltip"><i class="material-icons"></i></a>
|
||
</td>
|
||
</tr>';
|
||
}
|
||
}
|
||
// ?>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-default pull-left"
|
||
data-dismiss="modal"><?php echo $this->lang->line('Fermer'); ?></button>
|
||
<button type="button" id="saveTaxes" data-network-id="<?= $network_id ?>"
|
||
data-id-config="<?= $idConfig ?>"
|
||
class="btn btn-primary"><?php echo $this->lang->line('save'); ?></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
<!-- jQuery 3 -->
|
||
<script src="<?php echo base_url('bower_components/jquery/dist/jquery.min.js') ?>"></script>
|
||
<!-- Bootstrap 3.3.7 -->
|
||
<script src="<?php echo base_url('bower_components/bootstrap/dist/js/bootstrap.min.js') ?>"></script>
|
||
<!-- DataTables -->
|
||
<script src="<?php echo base_url('bower_components/datatables.net/js/jquery.dataTables.min.js') ?>"></script>
|
||
<script src="<?php echo base_url('bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js') ?>"></script>
|
||
<!-- Slimscroll -->
|
||
<script src="<?php echo base_url('bower_components/jquery-slimscroll/jquery.slimscroll.min.js') ?>"></script>
|
||
<!-- FastClick -->
|
||
<script src="<?php echo base_url('bower_components/fastclick/lib/fastclick.js') ?>"></script>
|
||
<!-- AdminLTE App -->
|
||
<script src="<?php echo base_url('dist/js/adminlte.min.js') ?>"></script>
|
||
<!-- AdminLTE for demo purposes -->
|
||
<script src="<?php echo base_url('dist/js/demo.js') ?>"></script>
|
||
|
||
<script src="<?php echo base_url('bower_components/moment/min/moment.min.js') ?>"></script>
|
||
<script src="<?php echo base_url('bower_components/bootstrap-daterangepicker/daterangepicker.js') ?>"></script>
|
||
<script src="<?php echo base_url('bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js') ?>"></script>
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.47/js/bootstrap-datetimepicker.min.js"></script>
|
||
<!-- ChartJS -->
|
||
<script src="<?php echo base_url('bower_components/chart.js/Chart.js') ?>"></script>
|
||
<script src="<?php echo base_url('bower_components/toastr/toastr.js') ?>"></script>
|
||
<script src="<?php echo base_url('dist/js/sweetalert2.js') ?>"></script>
|
||
<script type="text/javascript" src="https://cdn.jsdelivr.net/momentjs/latest/moment-with-locales.min.js"></script>
|
||
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js"></script>
|
||
<script type="text/javascript" src="https://cdn.datatables.net/plug-ins/1.10.19/sorting/datetime-moment.js"></script>
|
||
<script type="text/javascript" src="https://cdn.datatables.net/plug-ins/1.10.20/dataRender/datetime.js"></script>
|
||
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/dataTables.buttons.min.js"></script>
|
||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
|
||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script>
|
||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script>
|
||
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.html5.min.js"></script>
|
||
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.print.min.js"></script>
|
||
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.colVis.min.js"></script>
|
||
|
||
<script>
|
||
toastr.options.closeButton = true;
|
||
toastr.options.closeMethod = 'fadeOut';
|
||
toastr.options.closeDuration = 5000;
|
||
toastr.options.closeEasing = 'swing';
|
||
|
||
|
||
$('#saveRates').click(function () {
|
||
const network_id = $(this).data('network-id');
|
||
const id_config = $(this).data('id-config');
|
||
console.log('save epa')
|
||
// Paliers
|
||
var rates = [];
|
||
|
||
$('#rates tr').has('td').each(function () {
|
||
var arrayItem = {};
|
||
$('td', $(this)).each(function (index, item) {
|
||
if (index < 2) {
|
||
if (index == 1)
|
||
arrayItem[index] = parseFloat($(item).html());
|
||
arrayItem[index] = parseInt($(item).html());
|
||
}
|
||
});
|
||
rates.push(arrayItem);
|
||
});
|
||
|
||
if ($('#ratesForm')[0].checkValidity()) {
|
||
|
||
console.log(rates)
|
||
$.ajax({
|
||
url: '<?php echo base_url('Hyperviseur_dash/saveNanoCreditRates')?>',
|
||
type: 'POST',
|
||
dataType: 'json',
|
||
data: {
|
||
"id_config": id_config,
|
||
"type": "epargne",
|
||
"rates": rates,
|
||
},
|
||
success: function (data) {
|
||
if (data == '200') {
|
||
Swal.fire({
|
||
icon: 'success',
|
||
title: "<?php echo $this->lang->line('nano_credit_update')?>",
|
||
text: "<?php echo $this->lang->line('informations_updated')?>",
|
||
timer: 3000
|
||
}).then(() => {
|
||
location.reload();
|
||
});
|
||
|
||
} else {
|
||
toastr.error("<?php echo $this->lang->line('error_message')?>", "<?php echo $this->lang->line('request_error')?>");
|
||
}
|
||
},
|
||
|
||
error: function (resultat, statut, error) {
|
||
console.log(resultat + " " + error);
|
||
toastr.error("<?php echo $this->lang->line('error_message')?>", "<?php echo $this->lang->line('request_error')?>");
|
||
}
|
||
});
|
||
|
||
} else {
|
||
$('#ratesForm')[0].reportValidity();
|
||
}
|
||
|
||
});
|
||
|
||
$('#saveTaxes').click(function () {
|
||
const network_id = $(this).data('network-id');
|
||
const id_config = $(this).data('id-config');
|
||
// Paliers
|
||
var taxes = [];
|
||
|
||
$('#nano_credit_taxes tr').has('td').each(function () {
|
||
var arrayItem = {};
|
||
$('td', $(this)).each(function (index, item) {
|
||
if (index < 3) {
|
||
if (index == 2)
|
||
arrayItem[index] = parseFloat($(item).html());
|
||
arrayItem[index] = $(item).html();
|
||
}
|
||
});
|
||
taxes.push(arrayItem);
|
||
});
|
||
|
||
if ($('#taxForm')[0].checkValidity()) {
|
||
|
||
$.ajax({
|
||
url: '<?php echo base_url('Gestion/saveTaxes')?>',
|
||
type: 'POST',
|
||
dataType: 'json',
|
||
data: {
|
||
"categorie": 'epargne', "id_config": id_config,
|
||
"taxes": taxes,
|
||
},
|
||
success: function (data) {
|
||
if (data == '200') {
|
||
Swal.fire({
|
||
icon: 'success',
|
||
title: "<?php echo $this->lang->line('nano_credit_update')?>",
|
||
text: "<?php echo $this->lang->line('informations_updated')?>",
|
||
timer: 3000
|
||
}).then(() => {
|
||
location.reload();
|
||
});
|
||
|
||
} else {
|
||
toastr.error("<?php echo $this->lang->line('error_message')?>", "<?php echo $this->lang->line('request_error')?>");
|
||
}
|
||
},
|
||
|
||
error: function (resultat, statut, error) {
|
||
console.log(resultat + " " + error);
|
||
toastr.error("<?php echo $this->lang->line('error_message')?>", "<?php echo $this->lang->line('request_error')?>");
|
||
}
|
||
});
|
||
|
||
|
||
} else {
|
||
$('#taxForm')[0].reportValidity();
|
||
}
|
||
|
||
});
|
||
</script>
|
||
<script>
|
||
// Interets nano credits
|
||
$(document).ready(function () {
|
||
$('[data-toggle="tooltip"]').tooltip();
|
||
var actions5 = $("#rates td:last-child").html();
|
||
// Append table with add row form on add new button click
|
||
$(".new5").click(function () {
|
||
if (!actions5) {
|
||
actions5 = '<a class="add add5" title="Add" data-toggle="tooltip"><i class="material-icons"></i></a>\n' +
|
||
' <a class="edit edit5" title="Edit" data-toggle="tooltip"><i class="material-icons"></i></a>\n' +
|
||
' <a class="delete delete5" title="Delete" data-toggle="tooltip"><i class="material-icons"></i></a>';
|
||
}
|
||
$(this).attr("disabled", "disabled");
|
||
var index = $("#rates tbody tr:last-child").index();
|
||
var row = "<tr> <td><input type='number' min='1' required class='form-control' name='time' id='time'></td> " +
|
||
"<td><input type='number' required class='form-control' name='rate' id='rate'></td>" +
|
||
"<td>" + actions5 + "</td>" +
|
||
"</tr>";
|
||
$("#rates").append(row);
|
||
$("#rates tbody tr").eq(index + 1).find(".add, .edit").toggle();
|
||
$('[data-toggle="tooltip"]').tooltip();
|
||
});
|
||
// Add row on add button click
|
||
$(document).on("click", ".add5", function () {
|
||
var empty = false;
|
||
var input = $(this).parents("tr").find('input');
|
||
var select = $(this).parents("tr").find('select');
|
||
input.each(function () {
|
||
if (!$(this)[0].checkValidity()) {
|
||
$(this).addClass("error");
|
||
$(this)[0].reportValidity();
|
||
empty = true;
|
||
} else {
|
||
$(this).removeClass("error");
|
||
}
|
||
|
||
});
|
||
$(this).parents("tr").find(".error").first().focus();
|
||
if (!empty) {
|
||
select.each(function () {
|
||
$(this).parent("td").html($(this).val());
|
||
});
|
||
input.each(function () {
|
||
$(this).parent("td").html($(this).val());
|
||
});
|
||
$(this).parents("tr").find(".add, .edit").toggle();
|
||
$(".new5").removeAttr("disabled");
|
||
}
|
||
});
|
||
// Edit row on edit button click
|
||
$(document).on("click", ".edit5", function () {
|
||
$(this).parents("tr").find("td:not(:last-child)").each(function (index) {
|
||
if (index == 0)
|
||
$(this).html('<input type="number" required class="form-control" value="' + $(this).text() + '">');
|
||
if (index == 1)
|
||
$(this).html('<input type="number" required class="form-control" value="' + $(this).text() + '">');
|
||
});
|
||
$(this).parents("tr").find(".add, .edit").toggle();
|
||
$(".new5").attr("disabled", "disabled");
|
||
});
|
||
// Delete row on delete button click
|
||
$(document).on("click", ".delete5", function () {
|
||
$(this).parents("tr").remove();
|
||
$(".new5").removeAttr("disabled");
|
||
});
|
||
});
|
||
</script>
|
||
<script>
|
||
// Taxes nano credit
|
||
$(document).ready(function () {
|
||
$('[data-toggle="tooltip"]').tooltip();
|
||
var actions51 = $("#nano_credit_taxes td:last-child").html();
|
||
// Append table with add row form on add new button click
|
||
$(".new51").click(function () {
|
||
if (!actions51) {
|
||
actions51 = '<a class="add add51" title="Add" data-toggle="tooltip"><i class="material-icons"></i></a>\n' +
|
||
' <a class="edit edit51" title="Edit" data-toggle="tooltip"><i class="material-icons">󢔔</i></a>\n' +
|
||
' <a class="delete delete51" title="Delete" data-toggle="tooltip"><i class="material-icons"></i></a>';
|
||
}
|
||
$(this).attr("disabled", "disabled");
|
||
var index = $("#nano_credit_taxes tbody tr:last-child").index();
|
||
var row = "<tr> <td><input type='text' required class='form-control' name='nom' id='nom'></td> " +
|
||
"<td> <select class='form-control' id='type' required> <option value='%'> % </option> <option value='fixe'> fixe </option> </select> </td> " +
|
||
"<td><input type='number' required class='form-control' step='any' min='0' name='valeur' id='valeur'></td>" +
|
||
"<td>" + actions51 + "</td>" +
|
||
"</tr>";
|
||
$("#nano_credit_taxes").append(row);
|
||
$("#nano_credit_taxes tbody tr").eq(index + 1).find(".add, .edit").toggle();
|
||
$('[data-toggle="tooltip"]').tooltip();
|
||
});
|
||
// Add row on add button click
|
||
$(document).on("click", ".add51", function () {
|
||
var empty = false;
|
||
var input = $(this).parents("tr").find('input');
|
||
var select = $(this).parents("tr").find('select');
|
||
input.each(function () {
|
||
if (!$(this)[0].checkValidity()) {
|
||
$(this).addClass("error");
|
||
$(this)[0].reportValidity();
|
||
empty = true;
|
||
} else {
|
||
$(this).removeClass("error");
|
||
}
|
||
|
||
});
|
||
$(this).parents("tr").find(".error").first().focus();
|
||
if (!empty) {
|
||
select.each(function () {
|
||
$(this).parent("td").html($(this).val());
|
||
});
|
||
input.each(function () {
|
||
$(this).parent("td").html($(this).val());
|
||
});
|
||
$(this).parents("tr").find(".add, .edit").toggle();
|
||
$(".new51").removeAttr("disabled");
|
||
}
|
||
});
|
||
// Edit row on edit button click
|
||
$(document).on("click", ".edit51", function () {
|
||
$(this).parents("tr").find("td:not(:last-child)").each(function (index) {
|
||
if (index == 0)
|
||
$(this).html('<input type="text" required class="form-control" value="' + $(this).text() + '">');
|
||
if (index == 1)
|
||
$(this).html("<select class='form-control' id='type' required> <option value='%' > % </option> <option value='fixe'> fixe </option> </select>");
|
||
if (index == 2)
|
||
$(this).html('<input type="number" required class="form-control" step="any" min="0" value="' + $(this).text() + '">');
|
||
});
|
||
$(this).parents("tr").find(".add, .edit").toggle();
|
||
$(".new51").attr("disabled", "disabled");
|
||
});
|
||
// Delete row on delete button click
|
||
$(document).on("click", ".delete51", function () {
|
||
$(this).parents("tr").remove();
|
||
$(".new51").removeAttr("disabled");
|
||
});
|
||
});
|
||
</script>
|
||
<!-- Page script -->
|
||
<!--<script src="--><?php //echo base_url('dist/js/custom.js') ?><!--"></script>-->
|