Subversion Repositories SmartDukaan

Rev

Rev 24992 | 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 Id</th>
                                                <th>Description</th>
                                                <th>Advance Amount</th>
                                                <th>Tentative Amount</th>
                                                <th>Created On</th>
                                                <th>Status</th>
                                        </tr>
                                        #if(!$prebookingListings.isEmpty())
                                                #foreach( $prebookingListing in $prebookingListings )
                                                        <tr class="prebooking-listing-details" data="$prebookingListing.getId()">
                                                                <td>$prebookingListing.getCatalogId()</td>
                                                                <td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
                                                                <td class="currency">$prebookingListing.getAdvanceAmount()</td>
                                                                <td class="currency">$prebookingListing.getTentativeAmount()</td>
                                                                <td>$prebookingListing.getFormattedCreateTimestamp()</td>
                                                            <td>$statusMap.get($prebookingListing.getId())</td>
                                                        </tr>
                                                #end
                                        #else
                                                <tr>
                                                        <td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                                                </tr>
                                        #end
                                </tbody>
                        </table>
                </div>
            </div>