| 32074 |
tejbeer |
1 |
<script type="text/javascript">
|
|
|
2 |
$(function () {
|
|
|
3 |
getVendorAheadOptions($("#typeaheadVendor"), function (selectedVendor) {
|
|
|
4 |
$('#vendorId').val(selectedVendor.id + "");
|
|
|
5 |
|
|
|
6 |
});
|
|
|
7 |
});
|
|
|
8 |
</script>
|
|
|
9 |
|
|
|
10 |
<section class="wrapper">
|
|
|
11 |
<div class="row">
|
|
|
12 |
<div class="col-lg-12">
|
|
|
13 |
<h3 class="page-header"><i class="icon_document_alt"></i>Vendor Price Circular</h3>
|
|
|
14 |
<ol class="breadcrumb">
|
|
|
15 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
16 |
<li><i class="icon_document_alt"></i>Vendor Price Circular</li>
|
|
|
17 |
|
|
|
18 |
</ol>
|
|
|
19 |
</div>
|
|
|
20 |
</div>
|
|
|
21 |
|
|
|
22 |
<div class="row">
|
|
|
23 |
<div class="form-group col-lg-2">
|
|
|
24 |
<input type="text" class="form-control" id="typeaheadVendor" autocomplete="off" placeholder="Search Vendor"/>
|
|
|
25 |
<input id="vendorId" type="hidden" />
|
|
|
26 |
</div>
|
|
|
27 |
|
|
|
28 |
<div class="form-group col-lg-2">
|
|
|
29 |
<input type="date" class="form-control" id="effectedDate" autocomplete="off" placeholder="Date"/>
|
|
|
30 |
</div>
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
<div class="col-lg-2 form-group">
|
|
|
34 |
<input class="btn btn-primary vendorpricecircular" type="button" value="Submit">
|
|
|
35 |
</div>
|
| 32164 |
tejbeer |
36 |
|
|
|
37 |
<button class="btn btn-primary" onclick="ExportToExcel(this, 'Download Circular')"
|
|
|
38 |
data-tableid="vendor-pricing-circular">Export
|
|
|
39 |
table to excel
|
|
|
40 |
</button>
|
| 32074 |
tejbeer |
41 |
</div>
|
|
|
42 |
|
|
|
43 |
<div class="vendorpricecircularview">
|
|
|
44 |
</div>
|
|
|
45 |
|
|
|
46 |
|
|
|
47 |
</section>
|