| 23528 |
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 |
<section class="wrapper">
|
|
|
47 |
<div class="row">
|
|
|
48 |
<div class="col-lg-12">
|
|
|
49 |
<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
|
|
|
50 |
<ol class="breadcrumb">
|
|
|
51 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
52 |
<li><i class="icon_document_alt"></i>CREATE COMMISSION</li>
|
|
|
53 |
</ol>
|
|
|
54 |
</div>
|
|
|
55 |
</div>
|
|
|
56 |
<form id="create-recharge-commission-form">
|
|
|
57 |
<div id="customer-details" style="background:white;background-color:white;padding:10px;">
|
|
|
58 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Recharge Commission Information</h4>
|
|
|
59 |
<div>
|
|
|
60 |
<div class = "row">
|
|
|
61 |
#if($operatorTypes)
|
|
|
62 |
<div class="col-lg-2 form-group">
|
|
|
63 |
<select class="form-control input-sm" id = "rechargeCommissionOperatorType" name = "rechargeCommissionOperatorType" placeholder="Operator Type">
|
|
|
64 |
#foreach($operatorType in $operatorTypes)
|
|
|
65 |
#if($operatorType == "PREPAID")
|
|
|
66 |
<option value="$operatorType" selected>$operatorType</option>
|
|
|
67 |
#else
|
|
|
68 |
<option value="$operatorType">$operatorType</option>
|
|
|
69 |
#end
|
|
|
70 |
#end
|
|
|
71 |
</select>
|
|
|
72 |
</div>
|
|
|
73 |
#end
|
|
|
74 |
<div class="col-lg-2 form-group">
|
|
|
75 |
<select class="form-control input-sm" id = "rechargeCommissionOperator" name = "rechargeCommissionOperator" placeholder="Recharge Operators">
|
|
|
76 |
<option value="" disabled selected>Recharge Operators</option>
|
|
|
77 |
#foreach($rechargeOperator in $rechargeOperators)
|
|
|
78 |
<option value="$rechargeOperator.getId()">$rechargeOperator.getName()</option>
|
|
|
79 |
#end
|
|
|
80 |
</select>
|
|
|
81 |
</div>
|
|
|
82 |
|
|
|
83 |
<div class="col-lg-2 form-group">
|
|
|
84 |
<select class="form-control input-sm" id = "amountType" name = "amountType" placeholder="Amount Type">
|
|
|
85 |
<option value="" disabled selected>Amount Type</option>
|
|
|
86 |
<option value="PERCENTAGE">Percentage</option>
|
|
|
87 |
<option value="FIXED">Fixed</option>
|
|
|
88 |
</select>
|
|
|
89 |
</div>
|
|
|
90 |
|
|
|
91 |
<div class="col-lg-2 form-group">
|
|
|
92 |
<input placeholder="Amount" id="amount" name="amount" type="number" value="0" class="form-control input-sm">
|
|
|
93 |
</div>
|
|
|
94 |
<div class="col-lg-2" style="float:right;">
|
|
|
95 |
<input class="btn btn-primary create-recharge-commission-button" type="submit" style="width:100%;border-radius:0px;" value="Create">
|
|
|
96 |
</div>
|
|
|
97 |
</div>
|
|
|
98 |
</div>
|
|
|
99 |
</div>
|
|
|
100 |
|
|
|
101 |
</form>
|
|
|
102 |
</section>
|
| 23941 |
amit.gupta |
103 |
<script type="text/javascript" src="resources/js/create-recharge-commission.js?v=2"></script>
|