| 22860 |
ashik.ali |
1 |
<style>
|
|
|
2 |
.row{
|
|
|
3 |
margin:0 auto;
|
|
|
4 |
}
|
|
|
5 |
.modal-content{
|
|
|
6 |
background : white;
|
|
|
7 |
}
|
|
|
8 |
.modelHeaderCustom{
|
|
|
9 |
font-size:14px;
|
|
|
10 |
font-weight:bold;
|
|
|
11 |
}
|
|
|
12 |
.border-highlight{
|
|
|
13 |
border : 3px solid red;
|
|
|
14 |
}
|
|
|
15 |
hr{
|
|
|
16 |
background-color:#007aff;
|
|
|
17 |
border:none;
|
|
|
18 |
height:1px;
|
|
|
19 |
background:#007aff;
|
|
|
20 |
}
|
|
|
21 |
.control-label {
|
|
|
22 |
margin-top: 0;
|
|
|
23 |
margin-bottom: 0;
|
|
|
24 |
padding-top: 7px;
|
|
|
25 |
font-weight:bold;
|
|
|
26 |
font-size:14px;
|
|
|
27 |
}
|
|
|
28 |
.form-group{
|
|
|
29 |
border-bottom: 1px solid #eff2f7;
|
|
|
30 |
padding-bottom: 15px;
|
|
|
31 |
margin-bottom: 15px;
|
|
|
32 |
}
|
|
|
33 |
.right{
|
|
|
34 |
float:right;
|
|
|
35 |
}
|
|
|
36 |
.form-control{
|
|
|
37 |
color:black;
|
|
|
38 |
text-transform:uppercase;
|
|
|
39 |
}
|
|
|
40 |
.table-align-center{
|
|
|
41 |
text-align:center;
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
</style>
|
|
|
45 |
|
|
|
46 |
<script type="text/javascript">
|
|
|
47 |
var cartItemIndex = 0;
|
|
|
48 |
</script>
|
|
|
49 |
|
|
|
50 |
<section class="wrapper">
|
|
|
51 |
<div class="row">
|
|
|
52 |
<div class="col-lg-12">
|
|
|
53 |
<h3 class="page-header"><i class="icon_document_alt"></i>SCHEME</h3>
|
|
|
54 |
<ol class="breadcrumb">
|
|
|
55 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
56 |
<li><i class="icon_document_alt"></i>SCHEME</li>
|
|
|
57 |
</ol>
|
|
|
58 |
</div>
|
|
|
59 |
</div>
|
|
|
60 |
<form id="create-scheme-form">
|
|
|
61 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
|
|
62 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Scheme Information</h4>
|
|
|
63 |
<div>
|
|
|
64 |
<div class = "row">
|
|
|
65 |
<div class="col-lg-2 form-group">
|
|
|
66 |
<input placeholder="Name" id="schemeName" name="schemeName" type="text" value="" class="form-control input-sm">
|
|
|
67 |
</div>
|
|
|
68 |
<div class="col-lg-2 form-group">
|
|
|
69 |
<input placeholder="Description" id="description" name="description" type="text" value="" class="form-control input-sm">
|
|
|
70 |
</div>
|
|
|
71 |
<div class="col-lg-2 form-group">
|
|
|
72 |
<select class="form-control input-sm" id = "schemeType" name = "schemeType" placeholder="Type">
|
|
|
73 |
<option value="" disabled selected>Type</option>
|
|
|
74 |
<option value="IN">In</option>
|
|
|
75 |
<option value="OUT">Out</option>
|
|
|
76 |
</select>
|
|
|
77 |
</div>
|
|
|
78 |
<div class="col-lg-2 form-group">
|
|
|
79 |
<select class="form-control input-sm" id = "amountType" name = "amountType" placeholder="Amount Type">
|
|
|
80 |
<option value="" disabled selected>Amount Type</option>
|
|
|
81 |
<option value="PERCENTAGE">Percentage</option>
|
|
|
82 |
<option value="FIXED">Fixed</option>
|
|
|
83 |
</select>
|
|
|
84 |
</div>
|
|
|
85 |
<div class="col-lg-2 form-group">
|
|
|
86 |
<input placeholder = "Amount" id="schemeAmount" name="schemeAmount" type="number" value="0" class="form-control phone input-sm">
|
|
|
87 |
</div>
|
|
|
88 |
<div class="col-lg-2 form-group">
|
|
|
89 |
<input placeholder = "Start Date" id="startDate" name="startDate" type="datetime-local" value="" class="form-control input-sm">
|
|
|
90 |
</div>
|
|
|
91 |
</div>
|
|
|
92 |
<div class="row">
|
|
|
93 |
<div class="col-lg-2 form-group">
|
|
|
94 |
<input placeholder = "End Date" id="endDate" name="endDate" type="datetime-local" value="" class="form-control input-sm">
|
|
|
95 |
</div>
|
|
|
96 |
<div class="col-lg-3 form-group">
|
|
|
97 |
<input placeholder="Item Ids" id="itemIds" name="itemIds" type="text" value="" pattern="^[0-9]{1,10}(?:,[0-9]{1,4})*$" title="Comma Seperated Positive Integer Item Ids" class="form-control input-sm">
|
|
|
98 |
</div>
|
|
|
99 |
<div class="col-lg-1 form-group">
|
|
|
100 |
<span><input placeholder = "Active" id="schemeActive" name="schemeActive" type="checkbox" value="false">Active</span>
|
|
|
101 |
</div>
|
|
|
102 |
<div class="col-lg-2 form-group">
|
|
|
103 |
<span><input placeholder = "Retailer All" id="retailerAll" name="retailerAll" type="checkbox" value="true" checked>Retailer All</span>
|
|
|
104 |
</div>
|
|
|
105 |
<div class="col-lg-2" id="retailer-ids">
|
|
|
106 |
|
|
|
107 |
</div>
|
|
|
108 |
</div>
|
|
|
109 |
</div>
|
|
|
110 |
</div>
|
|
|
111 |
|
|
|
112 |
<div id="create-scheme" style="padding:10px;">
|
|
|
113 |
<div class="row">
|
|
|
114 |
<div class="col-xs-3" style="float:right;">
|
|
|
115 |
<button class="btn btn-primary new-scheme" type="submit" style="width:100%;border-radius:0px;">Create Scheme</button>
|
|
|
116 |
</div>
|
|
|
117 |
</div>
|
|
|
118 |
</div>
|
|
|
119 |
</form>
|
|
|
120 |
</section>
|
|
|
121 |
<script type="text/javascript" src="${rc.contextPath}/resources/js/scheme.js"></script>
|