PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
order
<table id="order-info" class="dataTable"> <tr> <td style="vertical-align: top;"> <h3><?php echo Language::term('title_payment_information', 'Payment Information'); ?></h3> <table> <tr> <td><?php echo Language::term('title_option_id', 'Option ID'); ?><br /> <select ng-model="data.payment_option.id" class="form-control" > <option ng-selected="{{data.payment_option.id == item.id}}" ng-repeat="item in paymentModules" value="{{item.id}}">{{item.title}}</option> </select> </td> <td><?php echo Language::term('title_transaction_id', 'Transaction ID'); ?><br /> <?php echo cmm_functions::form3_draw_text_field('data.payment_transaction_id', true); ?></td> </tr> </table> </td> <td class="border-left" style="vertical-align: top;"> <h3><?php echo Language::term('title_shipping_information', 'Shipping Information'); ?></h3> <table> <tr> <td><?php echo Language::term('title_option_id', 'Option ID'); ?><br /> <select ng-model="data.shipping_option.id" class="form-control"> <option ng-selected="{{data.shipping_option.id == item.id}}" ng-repeat="item in shippingModules" value="{{item.id}}">{{item.title}}</option> </select> </td> <td><?php echo Language::term('title_weight', 'Weight'); ?><br /> <?php echo cmm_weight::format($order->data['weight_total'], $order->data['weight_class']) ?></td> <td><?php echo Language::term('title_tracking_id', 'Tracking ID'); ?><br /> <?php echo cmm_functions::form3_draw_text_field('data.shipping_tracking_id', true); ?></td> </tr> <tr> </tr> </table> </td> </tr> </table>
[+]
..
[-] orderdetail_info.php
[edit]
[-] paypal_order.php
[edit]
[-] order.php
[edit]
[+]
payment
[-] orderdetail_comment.php
[edit]
[-] orderdetail_product.php
[edit]
[-] orderdetail_customer.php
[edit]
[-] order_invoice.php
[edit]
[-] status_tab.php
[edit]
[-] payment_status_tab.php
[edit]
[-] cart_tab.php
[edit]
[-] orderdetail_shipping_address.php
[edit]
[-] order_detail - Copy.php
[edit]
[-] order_detail.php
[edit]
[-] orderdetail_total.php
[edit]