Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
22860 ashik.ali 1
<style>
30080 amit.gupta 2
    .row {
3
        margin: 0 auto;
4
    }
22860 ashik.ali 5
 
30080 amit.gupta 6
    .modal-content {
7
        background: white;
8
    }
9
 
10
    .modelHeaderCustom {
11
        font-size: 14px;
12
        font-weight: bold;
13
    }
14
 
15
    .border-highlight {
16
        border: 3px solid red;
17
    }
18
 
19
    hr {
20
        background-color: #007aff;
21
        border: none;
22
        height: 1px;
23
        background: #007aff;
24
    }
25
 
26
    .control-label {
27
        margin-top: 0;
28
        margin-bottom: 0;
29
        padding-top: 7px;
30
        font-weight: bold;
31
        font-size: 14px;
32
    }
33
 
34
    .form-group {
35
        border-bottom: 1px solid #eff2f7;
36
        padding-bottom: 15px;
37
        margin-bottom: 15px;
38
    }
39
 
40
    .right {
41
        float: right;
42
    }
43
 
44
    .form-control {
45
        color: black;
46
    }
47
 
48
    .table-align-center {
49
        text-align: center;
50
    }
51
 
22860 ashik.ali 52
</style>
53
 
54
<script type="text/javascript">
23914 govind 55
 
30080 amit.gupta 56
    $(document).ready(function () {
23914 govind 57
        $('#tag-listing-brands').multiselect({
30080 amit.gupta 58
            includeSelectAllOption: true,
59
            multiple: true,
60
            maxHeight: 200,
61
            buttonWidth: '180px',
62
            numberDisplayed: 1,
63
            nonSelectedText: 'Brands',
64
            nSelectedText: ' - Brands Selected',
65
            allSelectedText: 'All Brands Selected',
66
            enableFiltering: true,
67
            enableCaseInsensitiveFiltering: true
23914 govind 68
        });
30080 amit.gupta 69
        configureTagListingItemsDescriptionDropDown();
23914 govind 70
    });
30080 amit.gupta 71
 
72
    $(function () {
73
        $('input[name="dateRange"]').daterangepicker(getRangedDatePicker(), dateRangeCallback);
74
    });
75
 
76
 
22860 ashik.ali 77
</script>
78
 
79
<section class="wrapper">
30080 amit.gupta 80
    <div class="row">
81
        <div class="col-lg-12">
82
            <h3 class="page-header"><i class="icon_document_alt"></i>SCHEME</h3>
83
            <ol class="breadcrumb">
84
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
85
                <li><i class="icon_document_alt"></i>CREATE</li>
86
            </ol>
87
        </div>
88
    </div>
89
    <form id="create-scheme-form">
90
        <div id="customer-details" style="background:white;background-color:white;padding:10px;">
91
            <h4 class="modelHeaderCustom" style="font-size:22px;">Scheme Information</h4>
92
            <div>
93
                <div class="row">
94
                    <div class="col-lg-2 form-group">
95
                        <input placeholder="Name" id="schemeName" name="schemeName" type="text" value=""
96
                               class="form-control input-sm">
97
                    </div>
98
                    <div class="col-lg-3 form-group">
99
                        <input placeholder="Description" id="description" name="description" type="text" value=""
100
                               class="form-control input-sm">
101
                    </div>
102
                    <div class="col-lg-2 form-group">
103
                        <select class="form-control input-sm" id="schemeType" name="schemeType" placeholder="Type">
104
                            <option value="" disabled selected>Type</option>
105
 
106
                            #if($fullAccesss)
107
                                <option value="IN">In</option>
108
                                <option value="HYGEINE">Hygeine</option>
109
                                <option value="ACTIVATION">Activation</option>
110
                                <option value="CATEGORY">Category</option>
111
                                <option value="TERTIARY">Tertiary</option>
112
                            #else
113
 
114
                                <option value="ACTIVATION">Activation</option>
115
 
116
 
117
                            #end
118
                        </select>
119
                    </div>
120
                    <div class="col-lg-2 form-group">
121
                        <select class="form-control input-sm" id="amountType" name="amountType"
122
                                placeholder="Amount Type">
123
                            <option value="" disabled selected>Amount Type</option>
124
                            <option value="PERCENTAGE">Percentage</option>
125
                            <option value="FIXED">Fixed</option>
126
                        </select>
127
                    </div>
128
                    <div class="col-lg-2 form-group">
129
                        <input placeholder="Amount" id="schemeAmount" name="schemeAmount" type="number"
130
                               class="form-control input-sm">
131
                    </div>
132
                    <div class="col-lg-2 form-group checkbox">
133
                        <label><input id="cashbackScheme" type="checkbox" value="">Cashback Scheme</label>
134
                    </div>
135
 
136
                </div>
137
                <div class="row">
138
                    <div class="col-lg-3 form-inline">
139
                        <div class="form-group">
140
                            <label for="schemeDuration">Scheme Duration :</label>
141
                            <input id="schemeDuration" name="dateRange" type="text" value=""
142
                                   class="form-control input-sm">
143
                        </div>
144
                    </div>
145
                    <div class="row">
146
 
147
                        <div class="col-lg-2">
148
                            <select class="form-control input-sm" id="tag-listing-brands" onchange="selectedbrand()"
149
                                    placeholder="Brands" multiple="multiple">
150
                                #foreach($brand in $brands)
151
                                    <option value="$brand">$brand</option>
152
                                #end
153
                            </select>
154
                        </div>
155
                        <div class="col-lg-2" id="tag-listing-items-description-container">
156
                            <select class="form-control input-sm" class="tagListingItemsDescription"
157
                                    placeholder="itemsDescription" multiple="multiple">
158
                            </select>
159
                        </div>
160
                        <div class="col-lg-2">
161
                            <select class="form-control input-sm" id="retailerType" name="retailerType">
162
                                <option value="" disabled selected>Retailer Type</option>
163
                                #foreach($retailerType in $retailerTypes)
164
                                    <option value="$retailerType">$retailerType</option>
165
                                #end
166
                            </select>
167
                        </div>
168
                        <div class="col-lg-2">
169
                            <input class="btn btn-primary new-scheme" type="submit" value="Create Scheme">
170
                        </div>
171
                    </div>
172
                </div>
173
            </div>
174
        </div>
175
    </form>
176
 
29587 manish 177
</section>
178
<section>
29899 tejbeer 179
 
30080 amit.gupta 180
    #if($fullAccesss)
181
        <form style="padding: 14px;">
182
            <div style="background:white;background-color:white;padding:12px;">
183
                <h4 class="modelHeaderCustom" style="font-size:16px;">PROCESS INVESTMENT PAYOUT $month</h4>
184
                <div class="row" style="padding: 24px;">
29587 manish 185
 
30080 amit.gupta 186
                    <div class="col-lg-4">
187
                        <label for="processInvestmentDryRun">Process Investment Dry Run Sheet:</label>
188
                        <input class="btn btn-primary processInvestmentDryRun" type="button" value="Download Sheet">
189
                    </div>
29587 manish 190
 
30080 amit.gupta 191
                    <div class="col-lg-4">
192
                        <label for="monthyInvestment">Partner Wise Monthy Investment Summary:</label>
193
                        <input class="btn btn-primary monthy-investment" type="button" value="Download Sheet">
194
                    </div>
29587 manish 195
 
30080 amit.gupta 196
                    <div class="col-lg-4">
197
                        <label for="processInvestment">Process Investment Payout :</label>
198
                        <input class="btn btn-primary process-investment" type="button" value="Process">
199
                    </div>
200
                </div>
29587 manish 201
 
30080 amit.gupta 202
            </div>
203
        </form>
204
    #end
205
</section>
206
 
207