| 30232 |
amit.gupta |
1 |
<style>
|
|
|
2 |
select.income-select > option:disabled {
|
|
|
3 |
color: white !important;
|
|
|
4 |
}
|
|
|
5 |
</style>
|
|
|
6 |
<div class="col-lg-9">
|
| 30234 |
amit.gupta |
7 |
<div class="info-box light-salmon-bg" style="height: 145px;">
|
| 30232 |
amit.gupta |
8 |
<i class="fas fa-coins"></i>
|
| 30411 |
amit.gupta |
9 |
<h3 style="margin-top:-2px;margin-bottom:12px"><strong class="total-income-calc">MY INCOME :</strong>
|
| 30232 |
amit.gupta |
10 |
|
|
|
11 |
<select id="month-wish-total-income" name="month-wish-total-income" placeholder="months"
|
|
|
12 |
style="margin:auto;background-color: transparent;color: white;" class="income-select">
|
|
|
13 |
<option value="" disabled selected style="background-color:#4682B4;color: white">month</option>
|
|
|
14 |
#foreach($mVM in $monthValueMap.entrySet())
|
|
|
15 |
#if($mVM.getKey()== $month )
|
|
|
16 |
<option value="$mVM.getKey()" selected disabled
|
|
|
17 |
style="background-color:#4682B4;color: white">$mVM.getValue()</option>
|
|
|
18 |
#else
|
|
|
19 |
<option value="$mVM.getKey()"
|
|
|
20 |
style="background-color:#4682B4;color: white">$mVM.getValue()</option>
|
|
|
21 |
#end
|
|
|
22 |
#end
|
|
|
23 |
</select>
|
|
|
24 |
|
|
|
25 |
</h3>
|
| 30411 |
amit.gupta |
26 |
<div class="row total-income-calc">
|
|
|
27 |
<div class="col-lg-3">
|
| 30675 |
amit.gupta |
28 |
<div style="margin-top:10px" class="count currency">$nf.format($totalIncome)</div>
|
| 30411 |
amit.gupta |
29 |
<div class="title" style="margin-left:5px;">Total Income</div>
|
|
|
30 |
</div>
|
|
|
31 |
<div class="col-lg-2">
|
|
|
32 |
<i class="fk_more fa fa-angle-double-right flash" style="margin: -6px;"></i>
|
|
|
33 |
</div>
|
|
|
34 |
<div class="col-lg-2">
|
|
|
35 |
<div style="margin-top:8px" class="count currency">$creditedIncome</div>
|
|
|
36 |
<div class="title" style="margin-left:5px; cursor:pointer;">Credited Income</div>
|
|
|
37 |
</div>
|
|
|
38 |
<div class="col-lg-2">
|
|
|
39 |
<div style="margin-top:8px" class="count currency">$pendingTotalIncome</div>
|
|
|
40 |
<div class="title" style="margin-left:5px; cursor:pointer;">Pending Income</div>
|
|
|
41 |
</div>
|
| 30232 |
amit.gupta |
42 |
</div>
|
|
|
43 |
</div>
|
|
|
44 |
</div>
|