PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
order
<?php Yii::app()->ecommerce->loadLanguageFile('sale/order'); ?> <div ng-repeat="(name, error) in errors" class="alert alert-danger"> <span ng-repeat="err in error" class="error">{{err}}</span> </div> <uib-tabset> <uib-tab heading="<?php echo Language::term('tab_general'); ?>"> <div class="form-horizontal"> <div class="form-group"> <label class="col-md-2"><?php echo Language::term('entry_currency'); ?></label> <div class="col-md-10"> <?php echo cmm_functions::form3_draw_currencies_list('data.currency_code', true); ?> </div> <span ng-repeat="error in errors.currency_code "class="error">{{error}}</span> </div> <div class="form-group"> <label class="col-md-2"><?php echo Language::term('entry_currency_value', 'Currency Value'); ?></label> <div class="col-md-10"><input type="text" ng-model="data.currency_value"/></div> <span ng-repeat="error in errors.currency_value "class="error">{{error}}</span> </div> </div> </uib-tab> <uib-tab heading="<?php echo Language::term('tab_payment'); ?>"> <?php include 'orderdetail_customer.php'; ?> </uib-tab> <uib-tab heading="<?php echo Language::term('tab_shipping'); ?>"> <?php include 'orderdetail_shipping_address.php'; ?> </uib-tab> <uib-tab heading="<?php echo Language::term('tab_product'); ?>"> <?php include 'orderdetail_product.php'; ?> </uib-tab> <uib-tab heading="<?php echo Language::term('tab_total'); ?>"> <?php include 'orderdetail_total.php'; ?> <?php include 'orderdetail_comment.php'; ?> </uib-tab> <?php $payment_module_id = $order['payment_module_id']; $filePath = dirname(__FILE__). DIRECTORY_SEPARATOR . '/payment/'.$payment_module_id.'.php'; if(file_exists($filePath)) { include $filePath; } ?> </uib-tabset>
[+]
..
[-] 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]