Subversion Repositories SmartDukaan

Rev

Rev 33183 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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