| 28451 |
tejbeer |
1 |
|
|
|
2 |
<div class="col-lg-12">
|
| 35549 |
ranu |
3 |
<div class="row col-lg-12">
|
| 35561 |
ranu |
4 |
<h3 style="margin-top:4px; margin-bottom: 10px;font-size: 19px;">
|
| 28451 |
tejbeer |
5 |
<strong>Mobile Brand Wise Report</strong>
|
|
|
6 |
</h3>
|
|
|
7 |
</div>
|
|
|
8 |
|
|
|
9 |
<table class="table table-striped table-advance table-hover">
|
|
|
10 |
<tbody>
|
|
|
11 |
<tr>
|
|
|
12 |
<th>Brand</th>
|
|
|
13 |
<th>LMS</th>
|
|
|
14 |
<th>LMS Qty</th>
|
|
|
15 |
<th>LMTD</th>
|
|
|
16 |
<th>LMTD Qty</th>
|
|
|
17 |
<th>MTD</th>
|
|
|
18 |
<th>MTD Qty</th>
|
|
|
19 |
<th>MTD UA</th>
|
|
|
20 |
<th>MTD UA Qty</th>
|
|
|
21 |
|
|
|
22 |
</tr>
|
|
|
23 |
#foreach($salekey in $brandSalesMap.keySet())
|
|
|
24 |
<tr
|
|
|
25 |
onclick="getWarehouseWiseBrandPartnerSale(`$brandSalesMap.get($salekey).getBrand()`)">
|
|
|
26 |
<td>$brandSalesMap.get($salekey).getBrand()</td>
|
|
|
27 |
|
|
|
28 |
#if($brandSalesMap.get($salekey).getLms())
|
|
|
29 |
<td class="currency">$brandSalesMap.get($salekey).getLms()</td>
|
|
|
30 |
#else
|
|
|
31 |
<td>0</td> #end #if($brandSalesMap.get($salekey).getLmsQty())
|
|
|
32 |
<td class="currency">$brandSalesMap.get($salekey).getLmsQty()</td>
|
|
|
33 |
#else
|
|
|
34 |
<td>0</td> #end #if($brandSalesMap.get($salekey).getLmtd())
|
|
|
35 |
<td class="currency">$brandSalesMap.get($salekey).getLmtd()</td>
|
|
|
36 |
#else
|
|
|
37 |
<td>0</td> #end #if($brandSalesMap.get($salekey).getLmtdQty())
|
|
|
38 |
<td class="currency">$brandSalesMap.get($salekey).getLmtdQty()</td>
|
|
|
39 |
#else
|
|
|
40 |
<td>0</td> #end #if($brandSalesMap.get($salekey).getMtd())
|
|
|
41 |
<td class="currency">$brandSalesMap.get($salekey).getMtd()</td>
|
|
|
42 |
#else
|
|
|
43 |
<td>0</td> #end #if($brandSalesMap.get($salekey).getMtdQty())
|
|
|
44 |
<td class="currency">$brandSalesMap.get($salekey).getMtdQty()</td>
|
|
|
45 |
#else
|
|
|
46 |
<td>0</td> #end #if($brandSalesMap.get($salekey).getAmtd())
|
|
|
47 |
<td class="currency">$brandSalesMap.get($salekey).getAmtd()</td>
|
|
|
48 |
#else
|
|
|
49 |
<td>0</td> #end #if($brandSalesMap.get($salekey).getUamtdQty())
|
|
|
50 |
<td>$brandSalesMap.get($salekey).getUamtdQty()</td> #else
|
|
|
51 |
<td>0</td> #end
|
|
|
52 |
|
|
|
53 |
</tr>
|
|
|
54 |
#end
|
|
|
55 |
|
|
|
56 |
</tbody>
|
|
|
57 |
</table>
|
|
|
58 |
|
|
|
59 |
</div>
|
|
|
60 |
|