Subversion Repositories SmartDukaan

Rev

Rev 24220 | Details | Compare with Previous | Last modification | View Log | RSS feed

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