Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="row col-lg-6">
        <h3 style="margin-top: -2px; margin-bottom: 24px">
                <strong>Accessories Brand Wise Report</strong>
        </h3>
</div>

<table class="table table-striped table-advance table-hover">
        <tbody>
                <tr>
                        <th>Brand</th>
                        <th>LMS</th>
                        <th>LMS Qty</th>
                        <th>LMTD</th>
                        <th>LMTD Qty</th>
                        <th>MTD</th>
                        <th>MTD Qty</th>
                </tr>
                #foreach($salekey in $accessoriesBrandSales)
                <tr
                        onclick="getWarehouseWiseAccessoriesBrandPartnerSale(`$salekey.getBrand()`)">
                        <td>$salekey.getBrand()</td> #if($salekey.getLms())
                        <td class="currency">$salekey.getLms()</td> #else
                        <td>0</td> #end #if($salekey.getLmsQty())
                        <td class="currency">$salekey.getLmsQty()</td> #else
                        <td>0</td> #end #if($salekey.getLmtd())
                        <td class="currency">$salekey.getLmtd()</td> #else
                        <td>0</td> #end #if($salekey.getLmtdQty())
                        <td class="currency">$salekey.getLmtdQty()</td> #else
                        <td>0</td> #end #if($salekey.getMtd())
                        <td class="currency">$salekey.getMtd()</td> #else
                        <td>0</td> #end #if($salekey.getMtdQty())
                        <td class="currency">$salekey.getMtdQty()</td> #else
                        <td>0</td> #end
                </tr>
                #end

        </tbody>
</table>
</div>