| 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 |
<section class="wrapper">
|
| 30080 |
amit.gupta |
55 |
<div class="row">
|
|
|
56 |
<div class="col-lg-12">
|
|
|
57 |
<h3 class="page-header"><i class="icon_document_alt"></i>SCHEME</h3>
|
|
|
58 |
<ol class="breadcrumb">
|
|
|
59 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
60 |
<li><i class="icon_document_alt"></i>CREATE</li>
|
|
|
61 |
</ol>
|
|
|
62 |
</div>
|
|
|
63 |
</div>
|
|
|
64 |
<form id="create-scheme-form">
|
|
|
65 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
|
|
66 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Scheme Information</h4>
|
|
|
67 |
<div>
|
|
|
68 |
<div class="row">
|
|
|
69 |
<div class="col-lg-2 form-group">
|
|
|
70 |
<input placeholder="Name" id="schemeName" name="schemeName" type="text" value=""
|
|
|
71 |
class="form-control input-sm">
|
|
|
72 |
</div>
|
|
|
73 |
<div class="col-lg-2 form-group">
|
| 34317 |
amit.gupta |
74 |
<select class="form-control input-sm stockTransactionType" name="stockTransactionType">
|
|
|
75 |
<option value="" disabled selected>Transaction Type</option>
|
|
|
76 |
<option value="IN">IN</option>
|
|
|
77 |
<option value="OUT">OUT</option>
|
| 30080 |
amit.gupta |
78 |
</select>
|
|
|
79 |
</div>
|
|
|
80 |
<div class="col-lg-2 form-group">
|
| 34317 |
amit.gupta |
81 |
<select class="form-control input-sm amountType" id="amountType" name="amountType"
|
| 30080 |
amit.gupta |
82 |
placeholder="Amount Type">
|
|
|
83 |
<option value="" disabled selected>Amount Type</option>
|
|
|
84 |
<option value="PERCENTAGE">Percentage</option>
|
|
|
85 |
<option value="FIXED">Fixed</option>
|
|
|
86 |
</select>
|
|
|
87 |
</div>
|
|
|
88 |
<div class="col-lg-2 form-group">
|
| 34317 |
amit.gupta |
89 |
<select class="form-control input-sm" id="schemeType" name="schemeType" placeholder="Type">
|
|
|
90 |
<option value="" disabled selected>Type</option>
|
|
|
91 |
#foreach($schemeType in $schemeTypes )
|
|
|
92 |
<option data-stocktransactiontype="$schemeType.getTransactionType()"
|
|
|
93 |
data-amounttype="$schemeType.getAmountType()"
|
|
|
94 |
value="$schemeType">$schemeType.getValue()</option>
|
|
|
95 |
#end
|
|
|
96 |
</select>
|
|
|
97 |
</div>
|
|
|
98 |
<div class="col-lg-2 form-group">
|
| 30080 |
amit.gupta |
99 |
<input placeholder="Amount" id="schemeAmount" name="schemeAmount" type="number"
|
|
|
100 |
class="form-control input-sm">
|
|
|
101 |
</div>
|
|
|
102 |
</div>
|
| 30454 |
amit.gupta |
103 |
<div class="row form-group">
|
|
|
104 |
<label class="checkbox-inline"><input id="cashbackScheme" type="checkbox" value="" disabled>Cashback
|
|
|
105 |
Scheme</label>
|
|
|
106 |
</div>
|
| 30080 |
amit.gupta |
107 |
<div class="row">
|
|
|
108 |
<div class="col-lg-3 form-inline">
|
|
|
109 |
<div class="form-group">
|
|
|
110 |
<label for="schemeDuration">Scheme Duration :</label>
|
|
|
111 |
<input id="schemeDuration" name="dateRange" type="text" value=""
|
|
|
112 |
class="form-control input-sm">
|
|
|
113 |
</div>
|
|
|
114 |
</div>
|
| 31170 |
amit.gupta |
115 |
<div class="col-lg-3">
|
|
|
116 |
<select class="criteria-regionids form-control" multiple="multiple">
|
|
|
117 |
#foreach($region in $regionList)
|
|
|
118 |
<option value="$region.getId()" #if($region.getId()==5)
|
|
|
119 |
selected#end>$region.getName()</option>
|
|
|
120 |
#end
|
|
|
121 |
</select>
|
|
|
122 |
</div>
|
|
|
123 |
</div>
|
|
|
124 |
<div class="row">
|
|
|
125 |
<div class="col-lg-2">
|
|
|
126 |
<select class="form-control input-sm" id="category-list" onchange="categoryChanged()"
|
|
|
127 |
placeholder="Brands">
|
|
|
128 |
#foreach($category in $categories)
|
|
|
129 |
<option value="$category.getId()">$category.getLabel()</option>
|
|
|
130 |
#end
|
|
|
131 |
</select>
|
|
|
132 |
</div>
|
| 30080 |
amit.gupta |
133 |
|
| 31170 |
amit.gupta |
134 |
<div class="col-lg-2" id="brand-list">
|
| 30080 |
amit.gupta |
135 |
</div>
|
| 31170 |
amit.gupta |
136 |
<div class="col-lg-2" id="tag-listing-items-description-container">
|
|
|
137 |
<select class="form-control input-sm" class="catalogItemsDescription"
|
|
|
138 |
placeholder="itemsDescription" multiple="multiple">
|
|
|
139 |
</select>
|
|
|
140 |
</div>
|
|
|
141 |
<div class="col-lg-2">
|
|
|
142 |
<select class="form-control input-sm" id="retailerType" name="retailerType">
|
|
|
143 |
<option value="" disabled selected>Retailer Type</option>
|
|
|
144 |
#foreach($retailerType in $retailerTypes)
|
|
|
145 |
<option value="$retailerType">$retailerType</option>
|
|
|
146 |
#end
|
|
|
147 |
</select>
|
|
|
148 |
</div>
|
|
|
149 |
<div class="col-lg-2">
|
|
|
150 |
<input class="btn btn-primary new-scheme" type="submit" value="Create Scheme">
|
|
|
151 |
</div>
|
| 30080 |
amit.gupta |
152 |
</div>
|
|
|
153 |
</div>
|
|
|
154 |
</div>
|
|
|
155 |
</form>
|
|
|
156 |
|
| 29587 |
manish |
157 |
</section>
|
|
|
158 |
<section>
|
| 29899 |
tejbeer |
159 |
|
| 30080 |
amit.gupta |
160 |
#if($fullAccesss)
|
|
|
161 |
<form style="padding: 14px;">
|
|
|
162 |
<div style="background:white;background-color:white;padding:12px;">
|
|
|
163 |
<h4 class="modelHeaderCustom" style="font-size:16px;">PROCESS INVESTMENT PAYOUT $month</h4>
|
|
|
164 |
<div class="row" style="padding: 24px;">
|
| 29587 |
manish |
165 |
|
| 30080 |
amit.gupta |
166 |
<div class="col-lg-4">
|
|
|
167 |
<label for="processInvestmentDryRun">Process Investment Dry Run Sheet:</label>
|
|
|
168 |
<input class="btn btn-primary processInvestmentDryRun" type="button" value="Download Sheet">
|
|
|
169 |
</div>
|
| 29587 |
manish |
170 |
|
| 30080 |
amit.gupta |
171 |
<div class="col-lg-4">
|
|
|
172 |
<label for="monthyInvestment">Partner Wise Monthy Investment Summary:</label>
|
|
|
173 |
<input class="btn btn-primary monthy-investment" type="button" value="Download Sheet">
|
|
|
174 |
</div>
|
| 29587 |
manish |
175 |
|
| 30080 |
amit.gupta |
176 |
<div class="col-lg-4">
|
|
|
177 |
<label for="processInvestment">Process Investment Payout :</label>
|
|
|
178 |
<input class="btn btn-primary process-investment" type="button" value="Process">
|
|
|
179 |
</div>
|
|
|
180 |
</div>
|
| 29587 |
manish |
181 |
|
| 30080 |
amit.gupta |
182 |
</div>
|
|
|
183 |
</form>
|
|
|
184 |
#end
|
| 31170 |
amit.gupta |
185 |
</section>
|
|
|
186 |
|
|
|
187 |
<script>
|
|
|
188 |
$('.criteria-regionids').multiselect({
|
|
|
189 |
maxHeight: 400,
|
|
|
190 |
buttonWidth: '240px',
|
|
|
191 |
numberDisplayed: 1,
|
|
|
192 |
nonSelectedText: 'Regions',
|
|
|
193 |
nSelectedText: ' - Regions Selected',
|
|
|
194 |
allSelectedText: 'All Regions Selected',
|
|
|
195 |
enableFiltering: true,
|
|
|
196 |
enableCaseInsensitiveFiltering: true,
|
|
|
197 |
});
|
|
|
198 |
</script>
|