mirror of https://github.com/itflow-org/itflow
124 lines
4.3 KiB
PHP
124 lines
4.3 KiB
PHP
<?php include("header.php"); ?>
|
|
<?php
|
|
|
|
if(isset($_GET['year'])){
|
|
$year = intval($_GET['year']);
|
|
}else{
|
|
$year = date('Y');
|
|
}
|
|
|
|
$sql_expense_years = mysqli_query($mysqli,"SELECT DISTINCT YEAR(expense_date) AS expense_year FROM expenses WHERE category_id > 0 ORDER BY expense_year DESC");
|
|
|
|
$sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_type = 'Expense' ORDER BY category_name ASC");
|
|
|
|
?>
|
|
|
|
<div class="card">
|
|
<div class="card-header bg-dark text-white">
|
|
<h6 class="float-left mt-1"><i class="fa fa-fw fa-coins mr-2"></i>Expense Summary</h6>
|
|
<button type="button" class="btn btn-primary btn-sm float-right d-print-none" onclick="window.print();"><i class="fas fa-fw fa-print"></i> Print</button>
|
|
</div>
|
|
<div class="card-body">
|
|
<form class="mb-3">
|
|
<select onchange="this.form.submit()" class="form-control" name="year">
|
|
<?php
|
|
|
|
while($row = mysqli_fetch_array($sql_expense_years)){
|
|
$expense_year = $row['expense_year'];
|
|
?>
|
|
<option <?php if($year == $expense_year){ ?> selected <?php } ?> > <?php echo $expense_year; ?></option>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</select>
|
|
</form>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-sm">
|
|
<thead class="text-dark">
|
|
<tr>
|
|
<th>Category</th>
|
|
<th class="text-right">January</th>
|
|
<th class="text-right">February</th>
|
|
<th class="text-right">March</th>
|
|
<th class="text-right">April</th>
|
|
<th class="text-right">May</th>
|
|
<th class="text-right">June</th>
|
|
<th class="text-right">July</th>
|
|
<th class="text-right">August</th>
|
|
<th class="text-right">September</th>
|
|
<th class="text-right">October</th>
|
|
<th class="text-right">November</th>
|
|
<th class="text-right">December</th>
|
|
<th class="text-right">Total</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
while($row = mysqli_fetch_array($sql_categories)){
|
|
$category_id = $row['category_id'];
|
|
$category_name = $row['category_name'];
|
|
?>
|
|
|
|
<tr>
|
|
<td><?php echo $category_name; ?></td>
|
|
|
|
<?php
|
|
|
|
for($month = 1; $month<=12; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli,"SELECT SUM(expense_amount) AS expense_amount_for_month FROM expenses WHERE category_id = $category_id AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_amount_for_month = $row['expense_amount_for_month'];
|
|
$total_expense_for_all_months = $expense_amount_for_month + $total_expense_for_all_months;
|
|
|
|
|
|
?>
|
|
<td class="text-right text-monospace">$<?php echo number_format($expense_amount_for_month,2); ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="text-right text-monospace">$<?php echo number_format($total_expense_for_all_months,2); ?></td>
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
$total_expense_for_all_months = 0;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<tr>
|
|
<th>Total</th>
|
|
<?php
|
|
|
|
for($month = 1; $month<=12; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli,"SELECT SUM(expense_amount) AS expense_total_amount_for_month FROM expenses WHERE YEAR(expense_date) = $year AND MONTH(expense_date) = $month AND vendor_id > 0");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_total_amount_for_month = $row['expense_total_amount_for_month'];
|
|
$total_expense_for_all_months = $expense_total_amount_for_month + $total_expense_for_all_months;
|
|
|
|
|
|
?>
|
|
|
|
<th class="text-right text-monospace">$<?php echo number_format($expense_total_amount_for_month,2); ?></th>
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="text-right text-monospace">$<?php echo number_format($total_expense_for_all_months,2); ?></th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include("footer.php");
|