Subversion Repositories SmartDukaan

Rev

Rev 33153 | 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 -->
33153 shampa 30
                #*<li><a href="#videoModal" class="btn btn-danger" data-toggle="modal" data-src="FgYsNbeno4o"><span
31
                        class="glyphicon glyphicon-play-circle"></span> Play Video</a></li>*#
29951 amit.gupta 32
            </ol>
33
        </div>
34
    </div>
32827 shampa 35
    <!--<a class="partner-price-circular" href="javascript:void(0);">NLC/Price Circular</a>-->
28102 tejbeer 36
 
29951 amit.gupta 37
    <div class="row">
38
        <div class="col-lg-12">
28102 tejbeer 39
 
29951 amit.gupta 40
            <div class="col-lg-2">
41
                <div class="col-lg-2 form-group">
28102 tejbeer 42
 
29951 amit.gupta 43
                    <select class="form-control input-sm" id="brands" name="brands"
44
                            placeholder="Brands">
45
                        <option value="" disabled selected>Brands</option> #foreach($brand
46
                    in $brands)
47
                        <option value="$brand">$brand</option> #end
48
                    </select>
28102 tejbeer 49
 
29951 amit.gupta 50
                </div>
51
            </div>
52
            #if($isAdmin)
53
                <div class="col-lg-3">
54
                    <input placeholder="Enter Partner Name" type="text" class="typeahead form-control"
55
                           id="partner-circular" name="Partners" data-provide="typeahead" value=""
56
                           autocomplete="off">
57
                </div>
58
                <script type="text/javascript">
59
                    $(function () {
60
                        getPartnerAheadOptions($("#partner-circular"), function (selectedPartner) {
61
                            partnerId = selectedPartner.partnerId;
62
                        });
63
                    });
64
                </script>
65
            #end
28102 tejbeer 66
 
30250 amit.gupta 67
            <div class="col-lg-4">
34524 ranu 68
                #if(!$isAnalysis)
69
                    <div class="col-lg-12 form-group">
70
                        <button class="btn btn-primary submit-circular-request"
71
                                type="button">Submit
72
                        </button>
28102 tejbeer 73
 
34524 ranu 74
                        <button class="btn btn-primary" onclick="ExportToExcel(this, 'Download Circular')"
75
                                data-tableid="circular-table">Export
76
                            table to excel
77
                        </button>
28102 tejbeer 78
 
34524 ranu 79
                        #if($isAdmin)
80
                            <button class="btn btn-primary download-nlc"
81
                                    type="button">Download NLC
82
                            </button>
83
                        #end
84
                    </div>
85
                #else
86
                    <div class="col-lg-12 form-group">
87
                        <button class="btn btn-primary analysis-submit-circular-request"
88
                                type="button" data-fofoid="$fofoId">Submit
89
                        </button>
31903 amit.gupta 90
 
34524 ranu 91
                        <button class="btn btn-primary" onclick="ExportToExcel(this, 'Download Circular')"
92
                                data-tableid="circular-table">Export
93
                            table to excel
30250 amit.gupta 94
                        </button>
34524 ranu 95
                    </div>
96
                #end
97
 
29951 amit.gupta 98
            </div>
28102 tejbeer 99
 
29951 amit.gupta 100
        </div>
28102 tejbeer 101
 
29951 amit.gupta 102
    </div>
28102 tejbeer 103
 
104
 
29951 amit.gupta 105
    <div class="price-circular-container"></div>
28102 tejbeer 106
</section>