Rotues Missing

This commit is contained in:
VE10-Sanjeev 2025-04-24 05:00:18 +00:00
parent 5c22d82c34
commit b1e270656f
2 changed files with 26 additions and 4 deletions

View File

@ -43,7 +43,7 @@
<div class="card-body">
<form method="post" action="<?php echo base_url("MM_ReceiptValue"); ?>">
<form method="post" action="<?php echo base_url("Report_Material_ReceiptValue"); ?>">
<div class="form-group">
<div class="row">
@ -118,7 +118,7 @@
<div class="col-3"></div>
<div class="col-3 text-right">
<input type="button" class="btn btn-danger m-2" value="Reset" onclick="window.location.href='<?= base_url('MM_ReceiptValue') ?>';">
<input type="button" class="btn btn-danger m-2" value="Reset" onclick="window.location.href='<?= base_url('Report_Material_ReceiptValue') ?>';">
<input type="submit" class="btn btn-success m-2" name="btn_submit" value="View Report">
</div>

View File

@ -140,7 +140,7 @@ $qtot = 0; ?>
<div id="a" style="display:block">
<table class="table table-bordered table-hover" id="tab" style="font-size:14px;">
<table class="table table-bordered table-hover" id="cc" style="font-size:14px;">
<thead>
<tr>
<th style="text-align:center;">Supplier Name</th>
@ -384,7 +384,7 @@ $qtot = 0; ?>
<div id="b" style="display:none">
<table class="table table-bordered table-hover" style="font-size:13px!important;" id="ta">
<table class="table table-bordered table-hover" style="font-size:14px!important;" id="cd">
<thead>
<tr>
<th style="text-align:center;">Supplier Name</th>
@ -668,6 +668,28 @@ $qtot = 0; ?>
}
}
});
var table = $('#cd').DataTable({
dom: 'Blfrtip',
buttons: [
{
extend: 'excel',
text: 'Excel',
}
],
paging: true, // Enable pagination
searching: true, // Disable search
ordering: false, // Disable column sorting
info: false, // Disable table information
lengthChange: false, // Disable page length options
pageLength: 10, // Default rows per page
responsive: true, // Keep responsive design
language: {
paginate: {
next: '<i class="fas fa-angle-right"></i>', // Next button icon
previous: '<i class="fas fa-angle-left"></i>' // Previous button icon
}
}
});
});
</script>