Subversion Repositories SmartDukaan

Rev

Rev 7572 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7572 Rev 11890
Line 92... Line 92...
92
                                <th>Item</th>
92
                                <th>Item</th>
93
                                <th>Created</th>
93
                                <th>Created</th>
94
                                <th>Amount</th>
94
                                <th>Amount</th>
95
                                <th>Status</th>
95
                                <th>Status</th>
96
                                <th>Mobile No</th>
96
                                <th>Mobile No</th>
-
 
97
								<th>Email</th>
97
                            </tr>
98
                            </tr>
98
                        </thead>
99
                        </thead>
99
                        <tbody>
100
                        <tbody>
100
                            #foreach($order in $action.getOrders())
101
                            #foreach($order in $action.getOrders())
101
                            <tr id="order-row-$order.getId()">
102
                            <tr id="order-row-$order.getId()">
Line 119... Line 120...
119
                                <td class="truncated-text" truncatedTextWidth="230">$action.getProductName($order.getLineitems().get(0))</td>
120
                                <td class="truncated-text" truncatedTextWidth="230">$action.getProductName($order.getLineitems().get(0))</td>
120
                                <td class="truncated-text" truncatedTextWidth="135">$action.convertDate($order.getCreated_timestamp())</td>
121
                                <td class="truncated-text" truncatedTextWidth="135">$action.convertDate($order.getCreated_timestamp())</td>
121
                                <td>$order.getTotal_amount()</td>
122
                                <td>$order.getTotal_amount()</td>
122
                                <td class="truncated-text" truncatedTextWidth="140">$order.getStatus().toString()</td>
123
                                <td class="truncated-text" truncatedTextWidth="140">$order.getStatus().toString()</td>
123
                                <td>$order.getCustomer_mobilenumber()</td>
124
                                <td>$order.getCustomer_mobilenumber()</td>
-
 
125
								<td>$order.getCustomer_email()</td>
124
                            </tr>
126
                            </tr>
125
                            #end
127
                            #end
126
                            </tbody>
128
                            </tbody>
127
                    </table>
129
                    </table>
128
    		</div>
130
    		</div>