228 lines
6.5 KiB
PHP
Executable File
228 lines
6.5 KiB
PHP
Executable File
|
|
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
|
|
|
|
$("#financialyear").select2();
|
|
|
|
|
|
});
|
|
</script>
|
|
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/buttons/1.4.2/css/buttons.dataTables.min.css">
|
|
<style>
|
|
|
|
table{
|
|
width:auto;
|
|
}
|
|
|
|
.dataTables_filter input {
|
|
padding: 4px;
|
|
}
|
|
|
|
.dataTables_filter {
|
|
/* width: 50%; */
|
|
float: right;
|
|
text-align: right;
|
|
}
|
|
|
|
.dataTables_paginate {
|
|
width: 50%;
|
|
float: right;
|
|
text-align: right;
|
|
}
|
|
|
|
div.dt-buttons {
|
|
position: relative;
|
|
/* float: right; */
|
|
|
|
}
|
|
</style>
|
|
|
|
<div class="content-page">
|
|
<div class="content">
|
|
<!-- Start Content-->
|
|
<div class="container-fluid">
|
|
<!-- start page title -->
|
|
<div>
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="page-title-box page-title-box-alt">
|
|
<div class="page-title-right">
|
|
<ol class="breadcrumb m-0">
|
|
<li class="breadcrumb-item"><a href="javascript: void(0);">Reports</a></li>
|
|
<li class="breadcrumb-item"><a href="javascript: void(0);">Purchase</a></li>
|
|
<li class="breadcrumb-item active">
|
|
<h4 class="page-title"><b> Report - Year Wise </b></h4>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<!-- <form class="Date-filter-form" id="DateRangeFilter" style="margin-top: 14px;margin-bottom: -11px;margin-left: 33px;"> -->
|
|
|
|
<div class="card-body">
|
|
|
|
<form method="post" action="<?php echo base_url('Report_year_wise'); ?>">
|
|
<div class="form-group">
|
|
<div class="row">
|
|
<div class="col-md-2">
|
|
<label for="financialyear"> Select Year</label>
|
|
<select class="form-control" id="financialyear" name="financialyear">
|
|
<option value="">Select Year</option>
|
|
<?php
|
|
foreach($finyear as $item):
|
|
{?>
|
|
<option
|
|
<?php echo isset($givenFinancialYear) && $givenFinancialYear == $item->financial_year ? "selected" : "" ?>
|
|
value="<?php echo $item->financial_year;?>"><?php echo $item->financial_year ; ?></option>
|
|
<?php } endforeach; ?>
|
|
|
|
</select>
|
|
</div>
|
|
<div class="col-md-8"></div>
|
|
<div class="col-md-2 text-right"><br>
|
|
<input type="button" class="btn btn-danger m-2" value="Reset" onclick="window.location.href='<?= base_url('Report_year_wise') ?>';">
|
|
<input type="submit" class="btn btn-success" name="btn_submit"
|
|
value="View Report">
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="form-group has-feedback">
|
|
|
|
</div>
|
|
|
|
|
|
</form>
|
|
<table id="cc" class="table table-bordered table-hover wrap" style="background-color:#fff;width: 100% !important;">
|
|
|
|
<!-- <table class="table table-bordered table-hover" id="asset_list_table" style="background-color:#fff;font-size:12px;"> -->
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center">Month-Year</th>
|
|
<th style="text-align:center">Quantity</th>
|
|
<th style="text-align:center">Total Value (₹)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$tr3=0;
|
|
$tr4=00;
|
|
if(isset($year)){
|
|
foreach($year as $rel)
|
|
{
|
|
?>
|
|
<tr>
|
|
|
|
<td style="text-align:center">
|
|
<?php
|
|
$date = strtotime($rel->created_date);
|
|
$new = date('M-y', $date);
|
|
$pass = date('Y-m-d',$date);
|
|
echo $new;
|
|
?>
|
|
|
|
</td>
|
|
<td style="text-align:right"><span><?php
|
|
$tr3= $tr3 + $rel->quantity;
|
|
echo round($rel->quantity);?></span></td>
|
|
<td style="text-align:right"><span><?php
|
|
$tr4= $tr4 + number_format($rel->total,2,'.','');
|
|
echo number_format($rel->total,2,'.','');?></span></td>
|
|
|
|
|
|
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
</tbody>
|
|
<tfoot width="100%">
|
|
<tr>
|
|
<td style="text-align:center;"><strong>Total</strong>
|
|
|
|
</td>
|
|
|
|
|
|
<td style="text-align:right">
|
|
<strong>
|
|
<?php
|
|
{
|
|
echo round($tr3);
|
|
|
|
}
|
|
?>
|
|
</strong>
|
|
</td>
|
|
<td style="text-align:right">
|
|
<strong>
|
|
<?php
|
|
{
|
|
echo number_format($tr4,2,'.','');
|
|
|
|
}
|
|
?>
|
|
</strong>
|
|
</td>
|
|
|
|
|
|
|
|
</tr>
|
|
</tfoot>
|
|
|
|
</table>
|
|
</div> <!-- end card body-->
|
|
</div> <!-- end card -->
|
|
</div><!-- end col-->
|
|
</div>
|
|
</div>
|
|
</div> <!-- container -->
|
|
</div> <!-- content -->
|
|
</div>
|
|
|
|
|
|
<script src="https://cdn.datatables.net/buttons/1.4.2/js/dataTables.buttons.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.32/pdfmake.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.32/vfs_fonts.js"></script>
|
|
<script src="https://cdn.datatables.net/buttons/1.4.2/js/buttons.html5.min.js"></script>
|
|
<script src="https://cdn.datatables.net/buttons/1.4.2/js/buttons.colVis.min.js"></script>
|
|
<script src="https://cdn.datatables.net/plug-ins/1.10.16/sorting/datetime-moment.js"></script>
|
|
<script>
|
|
// Bootstrap datepicker
|
|
// Set up your table
|
|
$(document).ready(function() {
|
|
// Initialize the DataTable with only pagination enabled
|
|
var table = $('#cc').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: 12, // 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>
|