Subversion Repositories SmartDukaan

Rev

Rev 31888 | 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>Observable Recommended Quantity</th>
                                                <th>Observable Minimum Quantity</th>
                                                
                                                <th>Region</th>
                                                <th>Created</th>
                                                <th>Remove</th>
                                        </tr>
                                        #if(!$focusedModels.isEmpty())
                                                        #foreach( $focusedModel in $focusedModels )
                                                        <tr class="focused-item-info" data="$focusedModel.getId()">
                                                                <td>$itemMap.get($focusedModel.getCatalogId()).getBrand()
                                                                        $itemMap.get($focusedModel.getCatalogId()).getModelName()
                                                                        $itemMap.get($focusedModel.getCatalogId()).getModelNumber()
                                                                        ($itemMap.get($focusedModel.getCatalogId()).getCatalogItemId())
                                                 </td>
                                                                <td>$focusedModel.getRecommendedQty()</td>
                                                                <td>$focusedModel.getMinimumQty()</td>
                                                                <td>$focusedModel.getObsRecommendedQty()</td>
                                                                <td>$focusedModel.getObsMinimumQty()</td>

                                                                <td>$regionMap.get($focusedModel.getRegionId()).getName()</td>
                                                                <td>$focusedModel.getCreatedTimestamp().format($dateTimeFormatter)</td>

                                                                <td>
                                                                        <button class="btn btn-primary remove-model" data-requestid="$focusedModel.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>