Subversion Repositories SmartDukaan

Rev

Rev 27538 | Rev 27550 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

                        <div class="col-lg-12">
                                 <table id="warehouseBrandItemStock" class="table table-striped table-advance table-hover">
                                 <thead>
                                <tr>
                                    <th>W/H Name</th>
                                        <th>Item</th>
                                        <th>Unit Price</th>
                                        <th>Stock Qty</th>
                                        <th>Stock Value</th>
                                        <th>Pending Indent</th>
                                        <th>Tertiary</th>
                                        <th>&lt;10</th>
                                        <th>&lt;20</th>
                                        <th>&lt;30</th>
                                        <th>&gt;30</th>
                                        
                                 </tr>
                                 </thead>
                                <tbody>
                                    #foreach($key in $warehouseWiseItemStock)
                                        <tr>
                                        <td>$key.getWarehouseName()</td>
                                     <td>$key.getBrand() $key.getModelName() $key.getModelNumber() $key.getColor()</td>
                                     <td>$key.getUnitPrice()</td>
                                     <td>$key.getStockQty()</td>
                                     <td class="currency">$key.getStockValue()</td> 
                                      <td>$key.getPendingIndent()</td>
                                      <td>$key.getTertiary()</td>
                                       <td>$key.getDlt10()</td>
                                        <td>$key.getD10to20()</td>
                                         <td>$key.getD20to30()</td>
                                         <td>$key.getDgt30()</td>
                                        </tr>
                                         #end
                                        
                            </tbody>
                        </table>
                        </div>
                        
<script type="text/javascript">
$(document).ready(function() {
    indentable = $('#warehouseBrandItemStock').DataTable();
});



</script>