Subversion Repositories SmartDukaan

Rev

Rev 32116 | Rev 32351 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
32074 tejbeer 1
 
2
  <script>
3
   $(document).ready(function () {
4
 
5
      var dtable = $('#vendor-pricing-circular').DataTable({
6
 
7
 
8
       });
9
 
10
    }); 
11
 
12
 </script>
13
 
14
 
15
 <div class="col-lg-12">
16
            <table id="vendor-pricing-circular" class="table table-striped table-advance table-hover" >
17
              <thead>
18
                <tr>
19
                 <th> Catalog Id</th>
20
                 <th> Model </th>
21
                 <th> TP</th>  
22
                 <th> DP</th>  
23
                 <th> MOP</th>  
24
                 <th> Effected On</th>
25
                </tr>
26
              </thead> 
27
 
28
              <tbody> 
29
 
30
 
31
                #foreach($vendorCatalogPricing in $vendorCatalogPricings)
32116 tejbeer 32
                <tr>
32074 tejbeer 33
                <td>$vendorCatalogPricing.getCatalogId()</td>
34
                <td>$itemMap.get($vendorCatalogPricing.getCatalogId()).get(0).getItemDescription()</td>
35
                <td>$vendorCatalogPricing.getTransferPrice()</td>
36
                <td>$vendorCatalogPricing.getDealerPrice()</td>
37
                <td>$vendorCatalogPricing.getMop()</td>
32261 tejbeer 38
                <td data-t="s" data-v="$vendorCatalogPricing.getEffectedOn()">$vendorCatalogPricing.getEffectedOn().format($dateFormatter)</td>
32116 tejbeer 39
               </tr>
32074 tejbeer 40
                 #end
41
 
42
             </tbody>
43
             </table>
44
  </div>
45
 
46