| Line 72... |
Line 72... |
| 72 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Description</h4></td>
|
72 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Description</h4></td>
|
| 73 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Quantity</h4></dt>
|
73 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Quantity</h4></dt>
|
| 74 |
<td><h4 class="grnProductInfo modelHeaderCustom">Serial Number</h4></td>
|
74 |
<td><h4 class="grnProductInfo modelHeaderCustom">Serial Number</h4></td>
|
| 75 |
<td><h4 class="grnProductInfo modelHeaderCustom">Insurance Amount</h4></td>
|
75 |
<td><h4 class="grnProductInfo modelHeaderCustom">Insurance Amount</h4></td>
|
| 76 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Unit Price</h4></td>
|
76 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Unit Price</h4></td>
|
| - |
|
77 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Discount</h4></td>
|
| 77 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Total Price</h4></td>
|
78 |
<td><h4 class="grnProductInfo modelHeaderCustom table-align-center">Total Price</h4></td>
|
| 78 |
</tr>
|
79 |
</tr>
|
| 79 |
|
80 |
|
| 80 |
#foreach ($cartItem in $cartObj)
|
81 |
#foreach ($cartItem in $cartObj)
|
| 81 |
#if($cartItem.getQuantity() == 1)
|
82 |
#if($cartItem.getQuantity() == 1)
|
| Line 95... |
Line 96... |
| 95 |
#else
|
96 |
#else
|
| 96 |
<td class = "table-align-center"><div class="input-group"><input type="number" itemId="$cartItem.getItemId()" value = "0" name="discountAmount" class="discountAmount form-control" readonly></div></td>
|
97 |
<td class = "table-align-center"><div class="input-group"><input type="number" itemId="$cartItem.getItemId()" value = "0" name="discountAmount" class="discountAmount form-control" readonly></div></td>
|
| 97 |
#end
|
98 |
#end
|
| 98 |
<td class = "table-align-center"><input name="totalPrice" class="totalPrice form-control" itemId="$cartItem.getItemId()" type="number" value="0" readonly></td>
|
99 |
<td class = "table-align-center"><input name="totalPrice" class="totalPrice form-control" itemId="$cartItem.getItemId()" type="number" value="0" readonly></td>
|
| 99 |
</tr>
|
100 |
</tr>
|
| 100 |
s #else
|
101 |
#else
|
| 101 |
#if($cartItem.getItemType() =="SERIALIZED")
|
102 |
#if($cartItem.getItemType() =="SERIALIZED")
|
| 102 |
#set($start = 1)
|
103 |
#set($start = 1)
|
| 103 |
#set($end = $cartItem.getQuantity())
|
104 |
#set($end = $cartItem.getQuantity())
|
| 104 |
#set($range = [$start..$end])
|
105 |
#set($range = [$start..$end])
|
| 105 |
|
106 |
|