PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
order
<div class="panel table-responsive"> <table id="order-total" width="100%" class="table"> <tr class="header"> <th style="text-align: center;"><?php echo Language::term('title_module_id', 'Module ID'); ?></th> <th style="text-align: center;"><?php echo Language::term('title_title', 'Title'); ?></th> <th style="text-align: center;"><?php echo Language::term('title_value', 'Value'); ?></th> <th style="text-align: center;"><?php echo Language::term('title_tax', 'Tax'); ?></th> <th> </th> </tr> <tr class="" style="font-size: 1.5em;" ng-repeat="ot in data.order_total|filter:filterOrderTotal"> <td style="text-align: right;"> <select class="form-control" ng-model="ot.module_id"> <option ng-selected="{{ot.module_id== item.id}}" ng-repeat="item in order_totalModules|filter:filterOrderTotalModule" value="{{item.id}}">{{item.title}}</option> </select> </td> <td style="text-align: right;"><input type="text" ng-model="ot.title" class="form-control"></td> <td style="text-align: right;"> <div class="input-group"> <input type="text" ng-model="ot.value" class="formcontrol" ng-change="calculate_total()"/> <span class="input-group-addon">{{data.currency_code}}</span> </div> </td> <td style="text-align: right;"> <div class="input-group"> <input type="text" ng-model="ot.tax" class="form-control" ng-change="calculate_total()"/> <span class="input-group-addon">{{data.currency_code}}</span> </div> </td> <td><button class="btn btn-danger" ng-click="removeOrderTotalItem($index)" title="<?php echo Language::term('title_remove', 'Remove'); ?>"><i class="fa fa-times-circle fa-lg"></i></a></td> </tr> <tr> <td colspan="6"><button class="btn btn-primary" ng-click="addOrderTotalItem()" title="<?php echo Language::term('title_insert_', 'Insert'); ?>"><i class="fa fa-plus-circle"></i></button></td> </tr> <tr class="" style="font-size: 1.5em;" ng-repeat="ot in data.order_total|filter:{module_id:'ot_subtotal'}:true"> <td colspan="6" style="text-align: right;">{{ot.title}}: <strong class="total">{{currencyService.format(ot.value*1 + ot.tax*1, 0, 0, data.currency_code, data.currency_value)}}</strong></td> </tr> <tr class="" style="font-size: 1.5em;" ng-repeat="ot in data.order_total|filter:{module_id:'ot_total'}:true"> <td colspan="6" style="text-align: right;">{{ot.title}}: <strong class="total">{{currencyService.format(ot.value*1 + ot.tax*1, 0, 0, data.currency_code, data.currency_value)}}</strong></td> </tr> </table> </div> <div class="panel"> <div class="panel-title"><?php echo Language::term('text_order_detail'); ?></div> <div class="panel-body"> <div class="form-horizontal"> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo Language::term('text_payment_method'); ?></label> <div class="col-sm-10"> <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> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo Language::term('text_transaction_id', 'Transaction ID'); ?></label> <div class="col-sm-10"> <input type="text" class="form-control" ng-model="data.payment_transaction_id"/> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo Language::term('text_shipping_method'); ?></label> <div class="col-sm-10"> <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> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo Language::term('text_weight', 'Total Weight'); ?></label> <div class="col-sm-10"> <input type="text" class="form-control" ng-model="data.weight_total"/> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo Language::term('text_tracking_id', 'Tracking ID'); ?></label> <div class="col-sm-10"> <input type="text" class="form-control" ng-model="data.shipping_tracking_id"/> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo Language::term('entry_order_status'); ?></label> <div class="col-sm-10"> <select ng-model="data.order_status_id" class="form-control"> <option value="0"><?php echo Language::term('title_select', 'Select');?></option> <option ng-selected="{{data.order_status_id== item.id}}" ng-repeat="item in order_statuses" value="{{item.id}}">{{item.name}}</option> </select></p> </div> </div> </div> </div> </div>
[+]
..
[-] 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]