Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">&times;</button>
        <h4 class="modal-title">PO Detail</h4>
</div>
<div class="modal-body" style="height: 400px; overflow: auto;">
        <div class="row">
                <div class="col-lg-12">

                        <table class="table  table-advance" id="po-item-detail">
                                <tbody>
                                        <tr>
                                                <th>Item</th>
                                                <th>Quantity</th>

                                        </tr>

                                        #foreach($sp in $spd )
                                        <tr>
                                                <td>$items.get($sp.getItemId()).getItemDescription()</td>
                                                <td>$sp.getQuantity()</td>

                                        </tr>
                                        #end
                                </tbody>
                        </table>
                </div>
        </div>
</div>

<div class="modal-footer">
        <button type="button" data-dismiss="modal"
                class="btn btn-default view-close">Close</button>

</div>