| 32300 |
tejbeer |
1 |
<script type="text/javascript">
|
|
|
2 |
$('input[name="invoice-duration"]').daterangepicker(getRangedDatePicker());
|
|
|
3 |
|
|
|
4 |
getVendorAheadOptions($("#typeaheadVendor"), function (selectedVendor) {
|
|
|
5 |
$('#vendorId').val(selectedVendor.id + "");
|
|
|
6 |
});
|
|
|
7 |
|
|
|
8 |
</script>
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
<section class="wrapper">
|
|
|
12 |
<div class="row">
|
|
|
13 |
<div class="col-lg-12">
|
|
|
14 |
<h3 class="page-header"><i class="icon_document_alt"></i>Invoices</h3>
|
|
|
15 |
<ol class="breadcrumb">
|
|
|
16 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
17 |
<li><i class="icon_document_alt"></i>Warehouse Invoices</li>
|
|
|
18 |
|
|
|
19 |
</ol>
|
|
|
20 |
</div>
|
|
|
21 |
</div>
|
|
|
22 |
|
|
|
23 |
<div class="row">
|
| 32687 |
shampa |
24 |
<!--<div class="form-group col-lg-3">
|
|
|
25 |
<input placeholder="Enter Vendor Name" type="text" class="typeahead form-control"
|
|
|
26 |
id="typeaheadVendor" name="Vendor" data-provide="typeahead" value="" autocomplete="off">
|
|
|
27 |
<input id="vendorId" type="hidden" />
|
|
|
28 |
</div>-->
|
|
|
29 |
|
| 33737 |
ranu |
30 |
|
|
|
31 |
<div class="col-lg-12 form-group">
|
|
|
32 |
<table>
|
|
|
33 |
<tr>
|
|
|
34 |
<td style="padding: 5px 10px;"><input placeholder="Duration" id="invoice-duration"
|
|
|
35 |
name="invoice-duration" type="text" value=""
|
|
|
36 |
class="form-control phone input-sm"></td>
|
|
|
37 |
<td style="padding: 5px 10px;"><input class="btn btn-primary dateWiseInvoices" type="button"
|
|
|
38 |
value="Submit"></td>
|
|
|
39 |
<td style="padding: 5px 10px;"><input class="btn btn-primary generateInvoicesExcel" type="button"
|
|
|
40 |
value="Download"></td>
|
|
|
41 |
</tr>
|
|
|
42 |
</table>
|
|
|
43 |
</div>
|
|
|
44 |
|
|
|
45 |
</div>
|
|
|
46 |
<div class="invoicesviewcontainer">
|
| 32300 |
tejbeer |
47 |
</div>
|
|
|
48 |
|
|
|
49 |
</section>
|