mirror of https://github.com/itflow-org/itflow
142 lines
5.8 KiB
PHP
142 lines
5.8 KiB
PHP
<?php include("header.php"); ?>
|
|
<?php
|
|
|
|
if(isset($_GET['year'])){
|
|
$year = intval($_GET['year']);
|
|
}else{
|
|
$year = date('Y');
|
|
}
|
|
|
|
$sql_payment_years = mysqli_query($mysqli,"SELECT DISTINCT YEAR(payment_date) AS payment_year FROM payments WHERE company_id = $session_company_id UNION SELECT DISTINCT YEAR(revenue_date) AS payment_year FROM revenues WHERE company_id = $session_company_id ORDER BY payment_year DESC");
|
|
|
|
$sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_type = 'Income' AND company_id = $session_company_id ORDER BY category_name ASC");
|
|
|
|
?>
|
|
|
|
<div class="card card-dark">
|
|
<div class="card-header py-2">
|
|
<h3 class="card-title mt-2"><i class="fa fa-fw fa-coins"></i> Income Summary</h3>
|
|
<div class="card-tools">
|
|
<button type="button" class="btn btn-primary d-print-none" onclick="window.print();"><i class="fas fa-fw fa-print"></i> Print</button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body p-0">
|
|
<form class="p-3">
|
|
<select onchange="this.form.submit()" class="form-control" name="year">
|
|
<?php
|
|
|
|
while($row = mysqli_fetch_array($sql_payment_years)){
|
|
$payment_year = $row['payment_year'];
|
|
?>
|
|
<option <?php if($year == $payment_year){ ?> selected <?php } ?> > <?php echo $payment_year; ?></option>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</select>
|
|
</form>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<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
|
|
|
|
$total_payment_for_all_months = 0;
|
|
|
|
for($month = 1; $month<=12; $month++) {
|
|
//Payments to Invoices
|
|
$sql_payments = mysqli_query($mysqli,"SELECT SUM(payment_amount) AS payment_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND invoice_category_id = $category_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_amount_for_month = $row['payment_amount_for_month'];
|
|
|
|
//Revenues
|
|
$sql_revenues = mysqli_query($mysqli,"SELECT SUM(revenue_amount) AS revenue_amount_for_month FROM revenues WHERE revenue_id = $category_id AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenues_amount_for_month = $row['revenue_amount_for_month'];
|
|
|
|
$payment_amount_for_month = $payment_amount_for_month + $revenues_amount_for_month;
|
|
$total_payment_for_all_months = $payment_amount_for_month + $total_payment_for_all_months;
|
|
|
|
|
|
?>
|
|
<td class="text-right"><?php echo get_currency_symbol($session_company_currency); ?> <?php echo number_format($payment_amount_for_month,2); ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="text-right text-bold"><?php echo get_currency_symbol($session_company_currency); ?> <?php echo number_format($total_payment_for_all_months,2); ?></td>
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<tr>
|
|
<th>Total</th>
|
|
<?php
|
|
|
|
for($month = 1; $month<=12; $month++) {
|
|
$sql_payments = mysqli_query($mysqli,"SELECT SUM(payment_amount) AS payment_total_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month AND payments.company_id = $session_company_id");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_total_amount_for_month = $row['payment_total_amount_for_month'];
|
|
|
|
$sql_revenues = mysqli_query($mysqli,"SELECT SUM(revenue_amount) AS revenue_amount_for_month FROM revenues WHERE revenue_category_id > 0 AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month AND revenues.company_id = $session_company_id");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenues_total_amount_for_month = $row['revenue_amount_for_month'];
|
|
|
|
$payment_total_amount_for_month = $payment_total_amount_for_month + $revenues_total_amount_for_month;
|
|
|
|
|
|
$total_payment_for_all_months = $payment_total_amount_for_month + $total_payment_for_all_months;
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo get_currency_symbol($session_company_currency); ?> <?php echo number_format($payment_total_amount_for_month,2); ?></th>
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo get_currency_symbol($session_company_currency); ?> <?php echo number_format($total_payment_for_all_months,2); ?></th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include("footer.php");
|