| 28451 |
tejbeer |
1 |
<div class="row col-lg-6">
|
|
|
2 |
<h3 style="margin-top: -2px; margin-bottom: 24px">
|
|
|
3 |
<strong>Accessories Brand Wise Report</strong>
|
|
|
4 |
</h3>
|
|
|
5 |
</div>
|
|
|
6 |
|
|
|
7 |
<table class="table table-striped table-advance table-hover">
|
|
|
8 |
<tbody>
|
|
|
9 |
<tr>
|
|
|
10 |
<th>Brand</th>
|
|
|
11 |
<th>LMS</th>
|
|
|
12 |
<th>LMS Qty</th>
|
|
|
13 |
<th>LMTD</th>
|
|
|
14 |
<th>LMTD Qty</th>
|
|
|
15 |
<th>MTD</th>
|
|
|
16 |
<th>MTD Qty</th>
|
|
|
17 |
</tr>
|
|
|
18 |
#foreach($salekey in $accessoriesBrandSales)
|
|
|
19 |
<tr
|
|
|
20 |
onclick="getWarehouseWiseAccessoriesBrandPartnerSale(`$salekey.getBrand()`)">
|
|
|
21 |
<td>$salekey.getBrand()</td> #if($salekey.getLms())
|
|
|
22 |
<td class="currency">$salekey.getLms()</td> #else
|
|
|
23 |
<td>0</td> #end #if($salekey.getLmsQty())
|
|
|
24 |
<td class="currency">$salekey.getLmsQty()</td> #else
|
|
|
25 |
<td>0</td> #end #if($salekey.getLmtd())
|
|
|
26 |
<td class="currency">$salekey.getLmtd()</td> #else
|
|
|
27 |
<td>0</td> #end #if($salekey.getLmtdQty())
|
|
|
28 |
<td class="currency">$salekey.getLmtdQty()</td> #else
|
|
|
29 |
<td>0</td> #end #if($salekey.getMtd())
|
|
|
30 |
<td class="currency">$salekey.getMtd()</td> #else
|
|
|
31 |
<td>0</td> #end #if($salekey.getMtdQty())
|
|
|
32 |
<td class="currency">$salekey.getMtdQty()</td> #else
|
|
|
33 |
<td>0</td> #end
|
|
|
34 |
</tr>
|
|
|
35 |
#end
|
|
|
36 |
|
|
|
37 |
</tbody>
|
|
|
38 |
</table>
|
|
|
39 |
</div>
|