Subversion Repositories SmartDukaan

Rev

Rev 27081 | Go to most recent revision | 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 Name</th>
                                                <th>Recommended Quantity </th>
                                                <th>Minimum Quantity</th>
                                                <th>Region</th>
                                                <th>Created</th>
                                                <th>Remove</th>
                                        </tr>
                                        #if(!$focusedModels.isEmpty())
                                         #foreach( $request in $focusedModels )
                                           <tr class="focused-item-info" data="$request.getId()">
                                                 <td>$itemMap.get($request.getCatalogId()).getBrand() 
                                                 $itemMap.get($request.getCatalogId()).getModelName()
                                                 $itemMap.get($request.getCatalogId()).getModelNumber()
                                                 ($itemMap.get($request.getCatalogId()).getCatalogItemId())
                                                 </td>
                                                 <td>$request.getRecommendedQty()</td>
                                                 <td>$request.getMinimumQty()</td>
                                                 <td>$regionMap.get($request.getRegionId()).getName()</td>
                                                  <td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
                                                  
                                                   <td><button class="btn btn-primary remove-model"  data-requestid="$request.getId()" type="button" >Remove</button></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>