| Line 1... |
Line 1... |
| 1 |
<section class="wrapper">
|
1 |
<section class="wrapper">
|
| 2 |
<div class="row">
|
2 |
<div class="row">
|
| 3 |
<div class="col-lg-12">
|
3 |
<div class="col-lg-12">
|
| 4 |
<h3 class="page-header"><i class="icon_document_alt"></i>Invoice Summary</h3>
|
4 |
<h3 class="page-header"><i class="icon_document_alt"></i>#springMessage("invoicegrn.invoicesummary")</h3>
|
| 5 |
<ol class="breadcrumb">
|
5 |
<ol class="breadcrumb">
|
| 6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Download Invoice</a></li>
|
6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">#springMessage("invoicegrn.downloadinvoice")</a></li>
|
| 7 |
</ol>
|
7 |
</ol>
|
| 8 |
</div>
|
8 |
</div>
|
| 9 |
</div>
|
9 |
</div>
|
| 10 |
|
10 |
|
| 11 |
<div class="row">
|
11 |
<div class="row">
|
| 12 |
#if($isAdmin)
|
12 |
#if($isAdmin)
|
| 13 |
<input placeholder="Enter Partner Name" type="text" class="typeahead form-control"
|
13 |
<input placeholder="#springMessage("invoicegrn.enterpartnername")" type="text" class="typeahead form-control"
|
| 14 |
id="typeaheadpartner" name="partner" data-provide="typeahead" value="" autocomplete="off">
|
14 |
id="typeaheadpartner" name="partner" data-provide="typeahead" value="" autocomplete="off">
|
| 15 |
#end
|
15 |
#end
|
| 16 |
<div class="col-lg-12">
|
16 |
<div class="col-lg-12">
|
| 17 |
<h3>Invoices for month <input type="month" value="$yearMonth" class="mk_billing_month"/>
|
17 |
<h3>#springMessage("invoicegrn.invoicesformonth") <input type="month" value="$yearMonth" class="mk_billing_month"/>
|
| 18 |
<a class="btn btn-primary btn-lg" role="button" href="/purchase-invoice/$yearMonth" target="_blank">Download
|
18 |
<a class="btn btn-primary btn-lg" role="button" href="/purchase-invoice/$yearMonth" target="_blank">#springMessage("invoicegrn.downloadall")</a>
|
| 19 |
All</a>
|
- |
|
| 20 |
</h3>
|
19 |
</h3>
|
| 21 |
</div>
|
20 |
</div>
|
| 22 |
<div class="col-lg-8">
|
21 |
<div class="col-lg-8">
|
| 23 |
<table class="table-condensed table">
|
22 |
<table class="table-condensed table">
|
| 24 |
<thead>
|
23 |
<thead>
|
| 25 |
<tr>
|
24 |
<tr>
|
| 26 |
<th>Invoice Number</th>
|
25 |
<th>#springMessage("invoicegrn.invoicenumber")</th>
|
| 27 |
<th>Invoice Date</th>
|
26 |
<th>#springMessage("invoicegrn.invoicedate")</th>
|
| 28 |
<th>Action</th>
|
27 |
<th>#springMessage("invoicegrn.action")</th>
|
| 29 |
</tr>
|
28 |
</tr>
|
| 30 |
</thead>
|
29 |
</thead>
|
| 31 |
<tbody>
|
30 |
<tbody>
|
| 32 |
#foreach($invoiceEntry in $invoiceMap.entrySet())
|
31 |
#foreach($invoiceEntry in $invoiceMap.entrySet())
|
| 33 |
<tr>
|
32 |
<tr>
|