Subversion Repositories SmartDukaan

Rev

Rev 21987 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="row">
        <div class="col-lg-12">
                <table class="table table-striped table-advance table-hover">
                        <tbody>
                                <tr>
                                        <th>Item Code</th>
                                        <th>Brand</th>
                                        <th>Model Name</th>
                                        <th>Model Number</th>
                                        <th>Color</th>
                                        <th>Type</th>
                                        <th>Quantity</th>
                                </tr>
                                 #foreach( $inventorySnapshot in $currentInventorySnapshot )
                                        <tr>
                                                <td>$inventorySnapshot.getItemId()</td>
                                                <td>$inventorySnapshot.getItem().getBrand()</td>
                                                <td>$inventorySnapshot.getItem().getModelName()</td>
                                                <td>$inventorySnapshot.getItem().getModelNumber()</td>
                                                <td>$inventorySnapshot.getItem().getColor()</td>
                                                <td>$inventorySnapshot.getItem().getType()</td>
                                                <td>$inventorySnapshot.getAvailability()</td>
                                        </tr>
                                 #end
                        </tbody>
                </table>
        </div>
</div>