35 lines
702 B
Plaintext
35 lines
702 B
Plaintext
|
|
|
||
|
|
<?=$javascript->link('reports');?>
|
||
|
|
|
||
|
|
<h2>Shipment Deferred GST Reports</h2>
|
||
|
|
|
||
|
|
|
||
|
|
<div id="years">
|
||
|
|
<ul class="years">
|
||
|
|
<? foreach($Fyears as $year => $count):
|
||
|
|
$lastYear = $year - 1;
|
||
|
|
?>
|
||
|
|
|
||
|
|
<?if($year != 1970 && $year != 0):?>
|
||
|
|
<li id="<?=$year?>" class="year"><?=$lastYear?> - <?=$year?> <span class="count">(<?=$count?>)</span></li>
|
||
|
|
<?else:?>
|
||
|
|
<li id="0" class="year">No Date <span class="count">(<?=$count?>)</span></li>
|
||
|
|
<?endif;?>
|
||
|
|
|
||
|
|
<?endforeach;?>
|
||
|
|
</ul>
|
||
|
|
|
||
|
|
<span class="whichYear"></span>
|
||
|
|
|
||
|
|
<ul class="months">
|
||
|
|
|
||
|
|
</ul>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="scrollHorizontal">
|
||
|
|
<div id="reports">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<span id="modelString" style="display: none;">/shipments</span>
|