<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<div id="invoices-report" class="hide">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<label for="invoice_status"><?php echo _l('report_invoice_status'); ?></label>
<select name="invoice_status" class="selectpicker" multiple data-width="100%" data-none-selected-text="<?php echo _l('invoice_status_report_all'); ?>">
<?php foreach($invoice_statuses as $status){ if($status ==5){continue;} ?>
<option value="<?php echo e($status); ?>"><?php echo format_invoice_status($status,'',false) ?></option>
<?php } ?>
</select>
</div>
</div>
<?php if(count($invoices_sale_agents) > 0 ) { ?>
<div class="col-md-4">
<div class="form-group">
<label for="sale_agent_invoices"><?php echo _l('sale_agent_string'); ?></label>
<select name="sale_agent_invoices" class="selectpicker" multiple data-width="100%" data-none-selected-text="<?php echo _l('invoice_status_report_all'); ?>">
<?php foreach($invoices_sale_agents as $agent){ ?>
<option value="<?php echo e($agent['sale_agent']); ?>"><?php echo e(get_staff_full_name($agent['sale_agent'])); ?></option>
<?php } ?>
</select>
</div>
</div>
<?php } ?>
<div class="clearfix"></div>
</div>
<table class="table table-invoices-report">
<thead>
<tr>
<th><?php echo _l('report_invoice_number'); ?></th>
<th><?php echo _l('report_invoice_customer'); ?></th>
<th class="not-export"><?php echo _l('invoice_estimate_year'); ?></th>
<th><?php echo _l('report_invoice_date'); ?></th>
<th><?php echo _l('report_invoice_duedate'); ?></th>
<th><?php echo _l('report_invoice_amount'); ?></th>
<th><?php echo _l('report_invoice_amount_with_tax'); ?></th>
<th><?php echo _l('report_invoice_total_tax'); ?></th>
<?php foreach($invoice_taxes as $tax){ ?>
<th><?php echo e($tax['taxname']); ?> <small><?php echo e($tax['taxrate']); ?>%</small></th>
<?php } ?>
<th><?php echo _l('invoice_discount'); ?></th>
<th><?php echo _l('invoice_adjustment'); ?></th>
<th><?php echo _l('applied_credits'); ?></th>
<th><?php echo _l('report_invoice_amount_open'); ?></th>
<th><?php echo _l('report_invoice_status'); ?></th>
</tr>
</thead>
<tbody></tbody>
<tfoot>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="subtotal"></td>
<td class="total"></td>
<td class="total_tax"></td>
<?php foreach($invoice_taxes as $key => $tax){ ?>
<td class="total_tax_single_<?php echo e($key); ?>"></td>
<?php } ?>
<td class="discount_total"></td>
<td class="adjustment"></td>
<td class="applied_credits"></td>
<td class="amount_open"></td>
<td></td>
</tr>
</tfoot>
</table>
</div>