Subversion Repositories SmartDukaan

Rev

Rev 33183 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<script type="text/javascript">
    $(function () {
        getVendorAheadOptions($("#typeaheadVendor"), function (selectedVendor) {
            $('#vendorId').val(selectedVendor.id + "");
        });
    });
</script>

<section class="wrapper">
    <div class="row">
        <div class="col-lg-12">
            <h3 class="page-header"><i class="icon_document_alt"></i>Vendor Price Circular</h3>
            <ol class="breadcrumb">
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                <li><i class="icon_document_alt"></i>Vendor Price Circular</li>
            </ol>
        </div>
    </div>

    <div class="row">
        <div class="form-group col-lg-2">
            <label>Vendor</label>
            <input type="text" class="form-control" id="typeaheadVendor" autocomplete="off" placeholder="Search Vendor"/>
            <input id="vendorId" type="hidden"/>
        </div>
        <div class="form-group col-lg-2">
            <label>Date</label>
            <input type="date" class="form-control" id="effectedDate" autocomplete="off" placeholder="Date"/>
        </div>
        <div class="form-group col-lg-2" style="margin-top: 25px;">
            <input class="btn btn-primary vendorpricecircular" type="button" value="Submit">
        </div>
        <div class="form-group col-lg-2" style="margin-top: 25px;">
            <button type="button" class="btn btn-primary download-price-circular-report">Download all</button>
        </div>
        <div class="form-group col-lg-2" style="margin-top: 25px;">
            <button class="btn btn-primary" onclick="ExportToExcel(this, 'Download Circular')" data-tableid="vendor-pricing-circular">Export table to excel</button>
        </div>
    </div>

    <div class="vendorpricecircularview">
    </div>

    <hr/>
    <div class="row">
        <div class="col-lg-12">
            <h4>Download Vendor Pricing Changes Report</h4>
        </div>
        <div class="form-group col-lg-2">
            <label>Start Date</label>
            <input type="date" class="form-control" id="pricingChangesStartDate"/>
        </div>
        <div class="form-group col-lg-2">
            <label>End Date</label>
            <input type="date" class="form-control" id="pricingChangesEndDate"/>
        </div>
        <div class="form-group col-lg-3" style="margin-top: 25px;">
            <button type="button" class="btn btn-success download-vendor-pricing-changes">Download Pricing Changes</button>
        </div>
    </div>

</section>