riainvoice/application/views/reports/sales_by_client.php
gandhimathi Bharathirajan c940cb1a2c all files
2017-09-11 14:38:03 +05:30

35 lines
1.3 KiB
PHP

<!DOCTYPE html>
<html lang="<?php echo trans('cldr'); ?>">
<head>
<title><?php echo trans('sales_by_client'); ?></title>
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/<?php echo get_setting('system_theme', 'invoiceplane'); ?>/css/reports.css" type="text/css">
</head>
<body>
<h3 class="report_title">
<?php echo trans('sales_by_client'); ?><br/>
<small><?php echo $from_date . ' - ' . $to_date ?></small>
</h3>
<table>
<tr>
<th><?php echo trans('client'); ?></th>
<th class="amount"><?php echo trans('invoice_count'); ?></th>
<th class="amount"><?php echo trans('sales'); ?></th>
<th class="amount"><?php echo trans('Total Tax'); ?></th>
<th class="amount"><?php echo trans('sales_with_tax'); ?></th>
</tr>
<?php foreach ($results as $result) { ?>
<tr>
<td><?php _htmlsc(format_client($result)); ?></td>
<td class="amount"><?php echo $result->invoice_count; ?></td>
<td class="amount"><?php echo format_currency($result->sales); ?></td>
<td class="amount"><?php echo format_currency($result->sales_with_tax - $result->sales); ?></td>
<td class="amount"><?php echo format_currency($result->sales_with_tax); ?></td>
</tr>
<?php } ?>
</table>
</body>
</html>