| 36464 |
amit |
1 |
<script type="text/javascript">
|
|
|
2 |
$(function () {
|
|
|
3 |
getVendorAheadOptions($("#typeaheadVendor"), function (selectedVendor) {
|
|
|
4 |
$('#vendorId').val(selectedVendor.id + "");
|
|
|
5 |
});
|
|
|
6 |
});
|
| 32074 |
tejbeer |
7 |
</script>
|
|
|
8 |
|
|
|
9 |
<section class="wrapper">
|
| 36464 |
amit |
10 |
<div class="row">
|
|
|
11 |
<div class="col-lg-12">
|
|
|
12 |
<h3 class="page-header"><i class="icon_document_alt"></i>Vendor Price Circular</h3>
|
|
|
13 |
<ol class="breadcrumb">
|
|
|
14 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
15 |
<li><i class="icon_document_alt"></i>Vendor Price Circular</li>
|
|
|
16 |
</ol>
|
|
|
17 |
</div>
|
|
|
18 |
</div>
|
| 33183 |
shampa |
19 |
|
| 36464 |
amit |
20 |
<div class="row">
|
|
|
21 |
<div class="form-group col-lg-2">
|
|
|
22 |
<label>Vendor</label>
|
|
|
23 |
<input type="text" class="form-control" id="typeaheadVendor" autocomplete="off" placeholder="Search Vendor"/>
|
|
|
24 |
<input id="vendorId" type="hidden"/>
|
|
|
25 |
</div>
|
|
|
26 |
<div class="form-group col-lg-2">
|
|
|
27 |
<label>Date</label>
|
|
|
28 |
<input type="date" class="form-control" id="effectedDate" autocomplete="off" placeholder="Date"/>
|
|
|
29 |
</div>
|
|
|
30 |
<div class="form-group col-lg-2" style="margin-top: 25px;">
|
|
|
31 |
<input class="btn btn-primary vendorpricecircular" type="button" value="Submit">
|
|
|
32 |
</div>
|
|
|
33 |
<div class="form-group col-lg-2" style="margin-top: 25px;">
|
|
|
34 |
<button type="button" class="btn btn-primary download-price-circular-report">Download all</button>
|
|
|
35 |
</div>
|
|
|
36 |
<div class="form-group col-lg-2" style="margin-top: 25px;">
|
|
|
37 |
<button class="btn btn-primary" onclick="ExportToExcel(this, 'Download Circular')" data-tableid="vendor-pricing-circular">Export table to excel</button>
|
|
|
38 |
</div>
|
|
|
39 |
</div>
|
|
|
40 |
|
|
|
41 |
<div class="vendorpricecircularview">
|
|
|
42 |
</div>
|
|
|
43 |
|
|
|
44 |
<hr/>
|
|
|
45 |
<div class="row">
|
|
|
46 |
<div class="col-lg-12">
|
|
|
47 |
<h4>Download Vendor Pricing Changes Report</h4>
|
|
|
48 |
</div>
|
|
|
49 |
<div class="form-group col-lg-2">
|
|
|
50 |
<label>Start Date</label>
|
|
|
51 |
<input type="date" class="form-control" id="pricingChangesStartDate"/>
|
|
|
52 |
</div>
|
|
|
53 |
<div class="form-group col-lg-2">
|
|
|
54 |
<label>End Date</label>
|
|
|
55 |
<input type="date" class="form-control" id="pricingChangesEndDate"/>
|
|
|
56 |
</div>
|
|
|
57 |
<div class="form-group col-lg-3" style="margin-top: 25px;">
|
|
|
58 |
<button type="button" class="btn btn-success download-vendor-pricing-changes">Download Pricing Changes</button>
|
|
|
59 |
</div>
|
|
|
60 |
</div>
|
|
|
61 |
|
|
|
62 |
</section>
|