DateRange filter in requisition : GWM
This commit is contained in:
parent
9c1a498640
commit
a7ffbfe741
@ -11,182 +11,352 @@
|
|||||||
}
|
}
|
||||||
//echo $ReqNo;
|
//echo $ReqNo;
|
||||||
}?>
|
}?>
|
||||||
<style>
|
<style>
|
||||||
#Requisition_filter{
|
#Requisition_filter {
|
||||||
float: inline-end;
|
float: inline-end;
|
||||||
}
|
}
|
||||||
#Requisition_wrapper .row .col-sm-4{
|
|
||||||
flex-basis: 50%;
|
|
||||||
float: inline-end;
|
|
||||||
}
|
|
||||||
#Requisition_paginate .pagination {
|
|
||||||
flex-basis: 50%;
|
|
||||||
float: inline-end;
|
|
||||||
margin:0 0 15px;
|
|
||||||
}
|
|
||||||
#Requisition_wrapper .row:nth-child(3), #Requisition_wrapper .row:nth-child(1){
|
|
||||||
padding: 0 15px;
|
|
||||||
}
|
|
||||||
#Requisition_info{
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
.dataTables_wrapper{
|
|
||||||
padding-bottom: 0;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<script>
|
#Requisition_wrapper .row .col-sm-4 {
|
||||||
|
flex-basis: 50%;
|
||||||
|
float: inline-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Requisition_paginate .pagination {
|
||||||
|
flex-basis: 50%;
|
||||||
|
float: inline-end;
|
||||||
|
margin: 0 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
function DeleteRow(rowid)
|
#Requisition_wrapper .row:nth-child(3),
|
||||||
{
|
#Requisition_wrapper .row:nth-child(1) {
|
||||||
|
padding: 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
id = rowid;
|
#Requisition_info {
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
var answer = confirm(" Do you want to delete the Requisition?")
|
.dataTables_wrapper {
|
||||||
if (answer)
|
padding-bottom: 0;
|
||||||
{
|
}
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
data:{id:id},
|
|
||||||
type:"POST",
|
|
||||||
url:"<?php echo base_url() ?>requisitionform/DeleteReqNo",
|
|
||||||
success: function (data) {
|
|
||||||
if (data && data.message) {
|
|
||||||
alert(data.message);
|
|
||||||
location.reload(true);
|
|
||||||
} else {
|
|
||||||
alert("Error Occur");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
error: function (xhr, status, error) {
|
|
||||||
|
|
||||||
alert("Request failed: " + error);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
<style>
|
|
||||||
span.highlight {
|
span.highlight {
|
||||||
background-color: yellow;
|
background-color: yellow;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.Date-filter-form {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px; /* Adjust the gap as needed */
|
||||||
|
}
|
||||||
|
.Date-filter-form input, .Date-filter-form button {
|
||||||
|
padding: 5px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.Date-filter-form button {
|
||||||
|
background-color: #007bff;
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.Date-filter-form button:hover {
|
||||||
|
background-color: #0056b3;
|
||||||
|
}
|
||||||
|
.icon-button {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
|
color: #007bff;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
.icon-button:hover {
|
||||||
|
color: #0056b3;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<div class="content-wrapper">
|
<div class="content-wrapper">
|
||||||
|
|
||||||
<section class="content">
|
<section class="content">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="box-header">
|
|
||||||
<center><b><h3 class="box-title">Requisition Listing</h3></b></center>
|
|
||||||
|
|
||||||
</div><!-- /.box-header -->
|
<div class="box-header">
|
||||||
<?php if($DraftCount > 0 ) {?><p style="text-align: center;">
|
<center><b>
|
||||||
<span class="highlight">The Requisition No <b><?php echo $ReqNo;?></b> is in Draft status.</span> Please act on the requisition.<span class="highlight">Then only you can raise New Requisition. </span>
|
<h3 class="box-title">Requisition Listing</h3>
|
||||||
</p> <?php } ?>
|
</b></center>
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-12 text-right" style="margin-left:-2%;">
|
|
||||||
<div class="form-group">
|
|
||||||
<?php if($DraftCount == 0)
|
|
||||||
{ ?>
|
|
||||||
<a class="btn btn-success" onclick="Test()" href="<?php echo base_url(); ?>RequisitionForm">Raise New Requisition</a><?php }?>
|
|
||||||
|
|
||||||
</div>
|
</div><!-- /.box-header -->
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<table id="Requisition" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;">
|
|
||||||
<thead style="background-color: #ddd;">
|
|
||||||
<tr>
|
|
||||||
<th>Requisted Date</th>
|
|
||||||
<th>Requisition No</th>
|
|
||||||
<th>Requisition Type</th>
|
|
||||||
<th>Tot No.OfLineItem </th>
|
|
||||||
<th>Po CreatedLineItem</th>
|
|
||||||
<th>Partially PoCreatedLineItem</th>
|
|
||||||
<th>NewLine Item</th>
|
|
||||||
<th>Status</th>
|
|
||||||
<th>Action</th>
|
|
||||||
|
|
||||||
</tr>
|
<?php if($DraftCount > 0 ) {?><p style="text-align: center;">
|
||||||
</thead>
|
<span class="highlight">The Requisition No <b><?php echo $ReqNo;?></b> is in Draft
|
||||||
|
status.</span> Please act on the requisition.<span class="highlight">Then only you can raise
|
||||||
|
New Requisition. </span>
|
||||||
|
</p> <?php } ?>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12 text-right" style="margin-left:-2%;">
|
||||||
|
<div class="form-group">
|
||||||
|
|
||||||
|
<div class="col-md-8">
|
||||||
|
<form class="Date-filter-form" id="DateRangeFilter" >
|
||||||
|
<input type="hidden" name="table" value="requisition">
|
||||||
|
<label for="fromDate">From:</label>
|
||||||
|
<input type="text" id="fromDate" name="fromDate" placeholder="Select From Date" autocomplete="off" required>
|
||||||
|
|
||||||
|
<label for="toDate">To:</label>
|
||||||
|
<input type="text" id="toDate" name="toDate" placeholder="Select To Date" autocomplete="off" required>
|
||||||
|
|
||||||
|
<button type="submit">Search</button>
|
||||||
|
<i class="fa fa-repeat" aria-hidden="true" class="icon-button" id="resetButton" title="Reset"></i>
|
||||||
|
<div class="error" id="error"></div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-4">
|
||||||
|
<?php if($DraftCount == 0) { ?>
|
||||||
|
<a class="btn btn-success" onclick="Test()"
|
||||||
|
href="<?php echo base_url(); ?>RequisitionForm">Raise New Requisition</a>
|
||||||
|
<?php }?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<table id="Requisition" class="table table-bordered table-hover"
|
||||||
|
style="background-color:#fff;font-size:12px;">
|
||||||
|
<thead style="background-color: #ddd;">
|
||||||
|
<tr>
|
||||||
|
<th>Requisted Date</th>
|
||||||
|
<th>Requisition No</th>
|
||||||
|
<th>Requisition Type</th>
|
||||||
|
<th>Tot No.OfLineItem </th>
|
||||||
|
<th>Po CreatedLineItem</th>
|
||||||
|
<th>Partially PoCreatedLineItem</th>
|
||||||
|
<th>NewLine Item</th>
|
||||||
|
<th>Status</th>
|
||||||
|
<th>Action</th>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if(!empty($TotNoOfLine))
|
if(!empty($TotNoOfLine))
|
||||||
{
|
{
|
||||||
foreach($TotNoOfLine as $record)
|
foreach($TotNoOfLine as $record)
|
||||||
{ //print_r($record);
|
{ //print_r($record);
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <?php $Pdt = new DateTime($record->CreatedDate );
|
<td> <?php $Pdt = new DateTime($record->CreatedDate );
|
||||||
$PODate = $Pdt->format('d-m-Y');
|
$PODate = $Pdt->format('d-m-Y');
|
||||||
echo $PODate ?>
|
echo $PODate ?>
|
||||||
</td>
|
</td>
|
||||||
<td><?php echo $record->ReqNo ?></td>
|
<td><?php echo $record->ReqNo ?></td>
|
||||||
<td><?php echo $record->ReqType ?></td>
|
<td><?php echo $record->ReqType ?></td>
|
||||||
<td><?php echo $record->TotalNoofLineItems ?></td>
|
<td><?php echo $record->TotalNoofLineItems ?></td>
|
||||||
<td><?php echo $record->PolineItems ?></td>
|
<td><?php echo $record->PolineItems ?></td>
|
||||||
<td><?php echo $record->PartilallyLineItems ?></td>
|
<td><?php echo $record->PartilallyLineItems ?></td>
|
||||||
<td> <?php echo $record->newLineItem ?></td>
|
<td> <?php echo $record->newLineItem ?></td>
|
||||||
|
|
||||||
|
|
||||||
<td><?php echo $record->StatusName ?></td>
|
<td><?php echo $record->StatusName ?></td>
|
||||||
|
|
||||||
<td> <a data-toggle="tooltip" href="<?php echo base_url().'EditRequisitionForm?ReqNo='.$record->ReqNo.'&ReqType='.$record->ReqType; ?>"><i class="fa fa-pencil" data-toggle="tooltip" title="<?php echo $record->ReqNo; ?> - Click here to view Requisition details"></i> </a> <a data-toggle="tooltip" onclick="DeleteRow('<?php echo $record->ReqNo; ?>' )" ><span class="glyphicon glyphicon-trash" title="<?php echo $record->ReqNo; ?> - Click here to Delete Requisition details"></span></a> </td>
|
<td> <a data-toggle="tooltip"
|
||||||
</tr>
|
href="<?php echo base_url().'EditRequisitionForm?ReqNo='.$record->ReqNo.'&ReqType='.$record->ReqType; ?>"><i
|
||||||
|
class="fa fa-pencil" data-toggle="tooltip"
|
||||||
|
title="<?php echo $record->ReqNo; ?> - Click here to view Requisition details"></i> </a>
|
||||||
|
<a data-toggle="tooltip" onclick="DeleteRow('<?php echo $record->ReqNo; ?>' )"><span
|
||||||
|
class="glyphicon glyphicon-trash"
|
||||||
|
title="<?php echo $record->ReqNo; ?> - Click here to Delete Requisition details"></span></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
<script src="https://cdn.datatables.net/plug-ins/1.10.11/sorting/date-eu.js"></script>
|
|
||||||
<script>
|
|
||||||
$(function () {
|
|
||||||
|
|
||||||
// $('#Requisition').DataTable({
|
<script src="https://cdn.datatables.net/plug-ins/1.10.11/sorting/date-eu.js"></script>
|
||||||
// "paging": true,
|
<script>
|
||||||
// "lengthChange": true,
|
function DeleteRow(rowid) {
|
||||||
// "searching": true,
|
|
||||||
// "ordering": true,
|
|
||||||
// "columnDefs": [{"targets": 0, "type": "date-eu"}],
|
|
||||||
// "aaSorting": [[1, "desc"]],
|
|
||||||
// "info": true,
|
|
||||||
// "autoWidth": true,
|
|
||||||
// "pageLength": 10
|
|
||||||
// });
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
id = rowid;
|
||||||
$('#Requisition').DataTable({
|
|
||||||
"paging": true, // Enable pagination
|
var answer = confirm(" Do you want to delete the Requisition?")
|
||||||
"lengthChange": true, // Enable the option to change the number of rows per page
|
if (answer) {
|
||||||
"searching": true, // Enable searching
|
|
||||||
"ordering": true, // Enable column ordering
|
$.ajax({
|
||||||
"columnDefs": [{"targets": 0, "type": "date-eu"}], // Column definitions for date formatting
|
data: {
|
||||||
"aaSorting": [[1, "desc"]], // Default sorting: sort by the 2th column (index 1) in descending order
|
id: id
|
||||||
"info": true, // Show pagination info
|
},
|
||||||
"autoWidth": true, // Enable automatic column width adjustment
|
type: "POST",
|
||||||
"pageLength": 10, // Set the default number of rows per page to 10
|
url: "<?php echo base_url() ?>requisitionform/DeleteReqNo",
|
||||||
"lengthMenu": [10, 25, 50, 100] // Options for the number of rows per page in the dropdown
|
success: function(data) {
|
||||||
});
|
if (data && data.message) {
|
||||||
});
|
alert(data.message);
|
||||||
|
location.reload(true);
|
||||||
|
} else {
|
||||||
|
alert("Error Occur");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function(xhr, status, error) {
|
||||||
|
|
||||||
|
alert("Request failed: " + error);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<script>
|
||||||
|
$(function() {
|
||||||
|
|
||||||
|
|
||||||
});
|
$(document).ready(function() {
|
||||||
</script>
|
$('#Requisition').DataTable({
|
||||||
|
"paging": true,
|
||||||
|
"lengthChange": true,
|
||||||
|
"searching": true,
|
||||||
|
"ordering": true,
|
||||||
|
"columnDefs": [{
|
||||||
|
"targets": 0,
|
||||||
|
"type": "date-eu"
|
||||||
|
}],
|
||||||
|
"aaSorting": [
|
||||||
|
[1, "desc"]
|
||||||
|
],
|
||||||
|
"info": true,
|
||||||
|
"autoWidth": true,
|
||||||
|
"pageLength": 10,
|
||||||
|
"lengthMenu": [10, 25, 50,
|
||||||
|
100
|
||||||
|
]
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$(function() {
|
||||||
|
$("#fromDate").datepicker({
|
||||||
|
dateFormat: 'dd-mm-yy',
|
||||||
|
onSelect: function(selectedDate) {
|
||||||
|
var minDate = $(this).datepicker("getDate");
|
||||||
|
$("#toDate").datepicker("option", "minDate", minDate);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#toDate").datepicker({
|
||||||
|
dateFormat: 'dd-mm-yy',
|
||||||
|
onSelect: function(selectedDate) {
|
||||||
|
var maxDate = $(this).datepicker("getDate");
|
||||||
|
$("#fromDate").datepicker("option", "maxDate", maxDate);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#resetButton").click(function() {
|
||||||
|
$("#fromDate").datepicker("setDate", null);
|
||||||
|
$("#toDate").datepicker("setDate", null);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
</script> -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function() {
|
||||||
|
// Initialize the DataTable
|
||||||
|
var table = $('#Requisition').DataTable({
|
||||||
|
"paging": true,
|
||||||
|
"lengthChange": true,
|
||||||
|
"searching": true,
|
||||||
|
"ordering": true,
|
||||||
|
"columnDefs": [{
|
||||||
|
"targets": 0,
|
||||||
|
"type": "date-eu"
|
||||||
|
}],
|
||||||
|
"aaSorting": [
|
||||||
|
[1, "desc"]
|
||||||
|
],
|
||||||
|
"info": true,
|
||||||
|
"autoWidth": true,
|
||||||
|
"pageLength": 10,
|
||||||
|
"lengthMenu": [10, 25, 50, 100]
|
||||||
|
});
|
||||||
|
|
||||||
|
// Initialize the datepickers
|
||||||
|
$("#fromDate").datepicker({
|
||||||
|
dateFormat: 'dd-mm-yy',
|
||||||
|
onSelect: function(selectedDate) {
|
||||||
|
var minDate = $(this).datepicker("getDate");
|
||||||
|
$("#toDate").datepicker("option", "minDate", minDate);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#toDate").datepicker({
|
||||||
|
dateFormat: 'dd-mm-yy',
|
||||||
|
onSelect: function(selectedDate) {
|
||||||
|
var maxDate = $(this).datepicker("getDate");
|
||||||
|
$("#fromDate").datepicker("option", "maxDate", maxDate);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Reset button functionality
|
||||||
|
$("#resetButton").click(function() {
|
||||||
|
$("#fromDate").datepicker("setDate", null);
|
||||||
|
$("#toDate").datepicker("setDate", null);
|
||||||
|
$("#toDate").datepicker("option", "minDate", null);
|
||||||
|
$("#fromDate").datepicker("option", "maxDate", null);
|
||||||
|
table.draw();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Date range filter
|
||||||
|
$.fn.dataTable.ext.search.push(
|
||||||
|
|
||||||
|
function(settings, data, dataIndex) {
|
||||||
|
var fromDate = $("#fromDate").datepicker("getDate");
|
||||||
|
var toDate = $("#toDate").datepicker("getDate");
|
||||||
|
|
||||||
|
var dateStr = data[0]; // Assuming the date is in the first column
|
||||||
|
|
||||||
|
// Convert dateStr to Date object
|
||||||
|
var dateParts = dateStr.split("-");
|
||||||
|
var date = new Date(dateParts[2], dateParts[1] - 1, dateParts[0]); // Convert dd-mm-yyyy to Date object
|
||||||
|
|
||||||
|
if (!fromDate || !toDate) {
|
||||||
|
return true; // No filter if dates are not selected
|
||||||
|
}
|
||||||
|
|
||||||
|
return date >= fromDate && date <= toDate;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// Handle form submission
|
||||||
|
$("#DateRangeFilter").submit(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
table.draw();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
Loading…
Reference in New Issue
Block a user