Subversion Repositories SmartDukaan

Rev

Rev 4386 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div id="bottom">
        <table border="1" cellspacing="0" width="2500">
        <thead>
                <tr>
                <th>AWB Number</th>
                <th>AWB Date</th>
                <th>Order No</th>
                <th>Name</th>
                <th>Address 1</th>
                <th>Address 2</th>
                <th>City</th>
                <th>State</th>
                <th>Pin Code</th>
                <th>Telephone No</th>
                <th>Paymode</th>
                <th>Amount to be Collected</th>
                <th>Shipment Value</th>
                <th>Item ID</th>
                <th>Packet Weight(in Kg)</th>
                <th>Product Name</th>
                <th>Pickup Location</th>
                <th>Customer A/C Code</th>
                </tr>
                </thead>
                <tbody>
                        #foreach($detailedAwb in $action.getDetailedAWBs())
                                <tr>
                                <td>$detailedAwb.getAwbNumber()</td>
                                <td>$detailedAwb.getAwbDate()</td>
                                        #if($detailedAwb.getMasterOrderId()=='-')
                                                <td>$detailedAwb.getOrderId()</td>
                                        #else
                                                <td>$detailedAwb.getMasterOrderId()</td>
                                        #end
                                <td>$detailedAwb.getCustomerName()</td>
                    <td>$detailedAwb.getAddress1()</td>
                    <td>$detailedAwb.getAddress2()</td>
                    <td>$detailedAwb.getCity()</td>
                                <td>$detailedAwb.getState()</td>
                                <td>$detailedAwb.getPinCode()</td>
                                <td>$detailedAwb.getPhoneNumber()</td>
                                <td>$detailedAwb.getPaymentMode()</td>
                                <td>$detailedAwb.getAmountToCollect()</td>
                                <td>$detailedAwb.getShipmentValue()</td>
                                <td>$detailedAwb.getItemId()</td>
                    <td>$detailedAwb.getPacketWeight()</td>
                                <td>$detailedAwb.getProductName()</td>
                    <td>$detailedAwb.getPickupLocation()</td>
                                <td>$detailedAwb.getAccountCode()</td>
                                </tr>
                        #end
                </tbody>
        </table>
</div>