Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
29719 manish 1
 <section class="wrapper">
2
    <div class="row">
3
        <div class="col-lg-12">
29727 manish 4
            <h3 class="page-header"><i class="icon_document_alt"></i>Dispatched ORDER STATUS</h3>
29719 manish 5
            <ol class="breadcrumb">
6
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
29727 manish 7
                <li><i class="icon_document_alt"></i>Dispatched Order Status</li>
29719 manish 8
            </ol>
9
        </div>
10
    </div>
11
 
12
    <div class="col-lg-12">
13
        <table class="table table-border table-condensed table-bordered" id="shippedOrderStatus" style="width:100%">
14
 
15
      <thead class="row htable">
16
 
17
            <tr style="color:black;">
18
            <th>Brand</th>
19
            <th>Model Name</th>
20
            <th>Model Number</th>
29734 manish 21
 
29719 manish 22
            <th>Color</th>
29734 manish 23
           <th>Quantity</th>
29719 manish 24
            <th>total Price</th>
25
            </tr>
26
      </thead>
27
            <tbody>
28
             #foreach($shippedOrderId in $shippedOrderIds )
29
            <tr id="trow2">
30
           #if($shippedLineItemMap.get($shippedOrderId).getBrand())
31
             <td>$shippedLineItemMap.get($shippedOrderId).getBrand()</td>
32
             #else
33
             <td></td>
34
             #end
35
              #if($shippedLineItemMap.get($shippedOrderId).getModelName())
36
              <td>$shippedLineItemMap.get($shippedOrderId).getModelName()</td>
37
              #else
38
              <td></td>
39
              #end
40
 
41
              #if($shippedLineItemMap.get($shippedOrderId).getModelNumber())
42
               <td>$shippedLineItemMap.get($shippedOrderId).getModelNumber()</td>
43
              #else
44
              <td></td>
45
              #end
46
              #if($shippedLineItemMap.get($shippedOrderId).getColor())
47
                <td>$shippedLineItemMap.get($shippedOrderId).getColor()</td>
48
                #else
49
              <td></td>
50
              #end
29734 manish 51
              #if($shippedLineItemMap.get($shippedOrderId).getQuantity())
52
                  <td>$shippedLineItemMap.get($shippedOrderId).getQuantity()</td>
53
                 #else
54
               <td></td>
55
               #end
29719 manish 56
               #if($shippedLineItemMap.get($shippedOrderId).getTotalPrice())
57
                  <td>$shippedLineItemMap.get($shippedOrderId).getTotalPrice()</td>
58
                   #else
59
              <td></td>
60
              #end
61
            </tr>
62
            #end
63
 
64
           </tbody>
65
     </div>
66
 
67
 
68
    </section>
69
 
70
 
71
    <script>
72
 
73
        var dtable = $('#shippedOrderStatus').DataTable(
74
                {
75
 
76
                    "bPaginate": true,
77
                    "bLengthChange": true,
78
                    "bFilter": true,
79
                    "bInfo": false,
80
                    "bAutoWidth": false,
81
                    "scrollX": true,
82
 
83
     });
84
 
85
 
86
 
87
    </script>
88