Subversion Repositories SmartDukaan

Rev

Rev 31805 | Rev 31917 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28102 tejbeer 1
<script type="text/javascript">
29951 amit.gupta 2
    $(document).ready(function () {
3
        $('#brands').multiselect({
4
            includeSelectAllOption: true,
5
            maxHeight: 200,
6
            multiple: true,
7
            buttonWidth: '180px',
8
            numberDisplayed: 1,
9
            nonSelectedText: 'Brands',
10
            nSelectedText: ' - Brands Selected',
11
            allSelectedText: 'All Brand Selected',
12
            enableFiltering: true,
13
            enableCaseInsensitiveFiltering: true
14
        });
28102 tejbeer 15
 
29951 amit.gupta 16
    });
28102 tejbeer 17
</script>
18
 
19
<section class="wrapper">
29951 amit.gupta 20
    <div class="row">
21
        <div class="col-lg-12">
22
            <h3 class="page-header">
23
                <i class="icon_document_alt"></i>PRICE CIRCULAR
24
            </h3>
25
            <ol class="breadcrumb">
26
                <li><i class="fa fa-home"></i><a
27
                        href="${rc.contextPath}/dashboard">Home</a></li>
30143 amit.gupta 28
                <li><i class="icon_document_alt"></i>PRICE CIRCULAR</li>
31805 amit.gupta 29
                <!--Training Video -->
30
                <li><a href="#videoModal" class="btn btn-danger" data-toggle="modal" data-src="ZBMBDe1XtlA"><span
31
                        class="glyphicon glyphicon-play-circle"></span> Play Video</a></li>
29951 amit.gupta 32
            </ol>
33
        </div>
34
    </div>
28102 tejbeer 35
 
29951 amit.gupta 36
    <div class="row">
37
        <div class="col-lg-12">
28102 tejbeer 38
 
29951 amit.gupta 39
            <div class="col-lg-2">
40
                <div class="col-lg-2 form-group">
28102 tejbeer 41
 
29951 amit.gupta 42
                    <select class="form-control input-sm" id="brands" name="brands"
43
                            placeholder="Brands">
44
                        <option value="" disabled selected>Brands</option> #foreach($brand
45
                    in $brands)
46
                        <option value="$brand">$brand</option> #end
47
                    </select>
28102 tejbeer 48
 
29951 amit.gupta 49
                </div>
50
            </div>
51
            #if($isAdmin)
52
                <div class="col-lg-3">
53
                    <input placeholder="Enter Partner Name" type="text" class="typeahead form-control"
54
                           id="partner-circular" name="Partners" data-provide="typeahead" value=""
55
                           autocomplete="off">
56
                </div>
57
                <script type="text/javascript">
58
                    $(function () {
59
                        getPartnerAheadOptions($("#partner-circular"), function (selectedPartner) {
60
                            partnerId = selectedPartner.partnerId;
61
                        });
62
                    });
63
                </script>
64
            #end
28102 tejbeer 65
 
30250 amit.gupta 66
            <div class="col-lg-4">
67
                <div class="col-lg-12 form-group">
28102 tejbeer 68
 
29951 amit.gupta 69
                    <button class="btn btn-primary submit-circular-request"
70
                            type="button">Submit
71
                    </button>
28102 tejbeer 72
 
31903 amit.gupta 73
                    <button class="btn btn-primary" onclick="ExportToExcel(this, 'xlsx', 'Download Circular', false)"
74
                            data-tableid="circular-table">Export
75
                        table to excel
76
                    </button>
77
 
30250 amit.gupta 78
                    #if($isAdmin)
79
                        <button class="btn btn-primary download-nlc"
80
                                type="button">Download NLC
81
                        </button>
82
                    #end
29951 amit.gupta 83
                </div>
84
            </div>
28102 tejbeer 85
 
29951 amit.gupta 86
        </div>
28102 tejbeer 87
 
29951 amit.gupta 88
    </div>
28102 tejbeer 89
 
90
 
29951 amit.gupta 91
    <div class="price-circular-container"></div>
28102 tejbeer 92
</section>