| 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();
|
| 30084 |
amit.gupta |
70 |
createSchemeOnReady();
|
| 23914 |
govind |
71 |
});
|
| 30080 |
amit.gupta |
72 |
|
|
|
73 |
$(function () {
|
|
|
74 |
$('input[name="dateRange"]').daterangepicker(getRangedDatePicker(), dateRangeCallback);
|
|
|
75 |
});
|
|
|
76 |
|
|
|
77 |
|
| 22860 |
ashik.ali |
78 |
</script>
|
|
|
79 |
|
|
|
80 |
<section class="wrapper">
|
| 30080 |
amit.gupta |
81 |
<div class="row">
|
|
|
82 |
<div class="col-lg-12">
|
|
|
83 |
<h3 class="page-header"><i class="icon_document_alt"></i>SCHEME</h3>
|
|
|
84 |
<ol class="breadcrumb">
|
|
|
85 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
86 |
<li><i class="icon_document_alt"></i>CREATE</li>
|
|
|
87 |
</ol>
|
|
|
88 |
</div>
|
|
|
89 |
</div>
|
|
|
90 |
<form id="create-scheme-form">
|
|
|
91 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
|
|
92 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Scheme Information</h4>
|
|
|
93 |
<div>
|
|
|
94 |
<div class="row">
|
|
|
95 |
<div class="col-lg-2 form-group">
|
|
|
96 |
<input placeholder="Name" id="schemeName" name="schemeName" type="text" value=""
|
|
|
97 |
class="form-control input-sm">
|
|
|
98 |
</div>
|
|
|
99 |
<div class="col-lg-3 form-group">
|
|
|
100 |
<input placeholder="Description" id="description" name="description" type="text" value=""
|
|
|
101 |
class="form-control input-sm">
|
|
|
102 |
</div>
|
|
|
103 |
<div class="col-lg-2 form-group">
|
|
|
104 |
<select class="form-control input-sm" id="schemeType" name="schemeType" placeholder="Type">
|
|
|
105 |
<option value="" disabled selected>Type</option>
|
|
|
106 |
|
|
|
107 |
#if($fullAccesss)
|
|
|
108 |
<option value="IN">In</option>
|
|
|
109 |
<option value="HYGEINE">Hygeine</option>
|
|
|
110 |
<option value="ACTIVATION">Activation</option>
|
|
|
111 |
<option value="CATEGORY">Category</option>
|
|
|
112 |
<option value="TERTIARY">Tertiary</option>
|
|
|
113 |
#else
|
|
|
114 |
|
|
|
115 |
<option value="ACTIVATION">Activation</option>
|
|
|
116 |
|
|
|
117 |
|
|
|
118 |
#end
|
|
|
119 |
</select>
|
|
|
120 |
</div>
|
|
|
121 |
<div class="col-lg-2 form-group">
|
|
|
122 |
<select class="form-control input-sm" id="amountType" name="amountType"
|
|
|
123 |
placeholder="Amount Type">
|
|
|
124 |
<option value="" disabled selected>Amount Type</option>
|
|
|
125 |
<option value="PERCENTAGE">Percentage</option>
|
|
|
126 |
<option value="FIXED">Fixed</option>
|
|
|
127 |
</select>
|
|
|
128 |
</div>
|
|
|
129 |
<div class="col-lg-2 form-group">
|
|
|
130 |
<input placeholder="Amount" id="schemeAmount" name="schemeAmount" type="number"
|
|
|
131 |
class="form-control input-sm">
|
|
|
132 |
</div>
|
|
|
133 |
<div class="col-lg-2 form-group checkbox">
|
|
|
134 |
<label><input id="cashbackScheme" type="checkbox" value="">Cashback Scheme</label>
|
|
|
135 |
</div>
|
|
|
136 |
|
|
|
137 |
</div>
|
|
|
138 |
<div class="row">
|
|
|
139 |
<div class="col-lg-3 form-inline">
|
|
|
140 |
<div class="form-group">
|
|
|
141 |
<label for="schemeDuration">Scheme Duration :</label>
|
|
|
142 |
<input id="schemeDuration" name="dateRange" type="text" value=""
|
|
|
143 |
class="form-control input-sm">
|
|
|
144 |
</div>
|
|
|
145 |
</div>
|
|
|
146 |
<div class="row">
|
|
|
147 |
|
|
|
148 |
<div class="col-lg-2">
|
|
|
149 |
<select class="form-control input-sm" id="tag-listing-brands" onchange="selectedbrand()"
|
|
|
150 |
placeholder="Brands" multiple="multiple">
|
|
|
151 |
#foreach($brand in $brands)
|
|
|
152 |
<option value="$brand">$brand</option>
|
|
|
153 |
#end
|
|
|
154 |
</select>
|
|
|
155 |
</div>
|
|
|
156 |
<div class="col-lg-2" id="tag-listing-items-description-container">
|
|
|
157 |
<select class="form-control input-sm" class="tagListingItemsDescription"
|
|
|
158 |
placeholder="itemsDescription" multiple="multiple">
|
|
|
159 |
</select>
|
|
|
160 |
</div>
|
|
|
161 |
<div class="col-lg-2">
|
|
|
162 |
<select class="form-control input-sm" id="retailerType" name="retailerType">
|
|
|
163 |
<option value="" disabled selected>Retailer Type</option>
|
|
|
164 |
#foreach($retailerType in $retailerTypes)
|
|
|
165 |
<option value="$retailerType">$retailerType</option>
|
|
|
166 |
#end
|
|
|
167 |
</select>
|
|
|
168 |
</div>
|
|
|
169 |
<div class="col-lg-2">
|
|
|
170 |
<input class="btn btn-primary new-scheme" type="submit" value="Create Scheme">
|
|
|
171 |
</div>
|
|
|
172 |
</div>
|
|
|
173 |
</div>
|
|
|
174 |
</div>
|
|
|
175 |
</div>
|
|
|
176 |
</form>
|
|
|
177 |
|
| 29587 |
manish |
178 |
</section>
|
|
|
179 |
<section>
|
| 29899 |
tejbeer |
180 |
|
| 30080 |
amit.gupta |
181 |
#if($fullAccesss)
|
|
|
182 |
<form style="padding: 14px;">
|
|
|
183 |
<div style="background:white;background-color:white;padding:12px;">
|
|
|
184 |
<h4 class="modelHeaderCustom" style="font-size:16px;">PROCESS INVESTMENT PAYOUT $month</h4>
|
|
|
185 |
<div class="row" style="padding: 24px;">
|
| 29587 |
manish |
186 |
|
| 30080 |
amit.gupta |
187 |
<div class="col-lg-4">
|
|
|
188 |
<label for="processInvestmentDryRun">Process Investment Dry Run Sheet:</label>
|
|
|
189 |
<input class="btn btn-primary processInvestmentDryRun" type="button" value="Download Sheet">
|
|
|
190 |
</div>
|
| 29587 |
manish |
191 |
|
| 30080 |
amit.gupta |
192 |
<div class="col-lg-4">
|
|
|
193 |
<label for="monthyInvestment">Partner Wise Monthy Investment Summary:</label>
|
|
|
194 |
<input class="btn btn-primary monthy-investment" type="button" value="Download Sheet">
|
|
|
195 |
</div>
|
| 29587 |
manish |
196 |
|
| 30080 |
amit.gupta |
197 |
<div class="col-lg-4">
|
|
|
198 |
<label for="processInvestment">Process Investment Payout :</label>
|
|
|
199 |
<input class="btn btn-primary process-investment" type="button" value="Process">
|
|
|
200 |
</div>
|
|
|
201 |
</div>
|
| 29587 |
manish |
202 |
|
| 30080 |
amit.gupta |
203 |
</div>
|
|
|
204 |
</form>
|
|
|
205 |
#end
|
|
|
206 |
</section>
|
|
|
207 |
|
|
|
208 |
|