PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
order
<div class="panel table-responsive"> <table id="order-items" class="table" style="width: 100%;"> <tr class="header"> <th style=""><?php echo Language::term('title_item', 'Item'); ?></th> <th style="text-align: center; min-width: 50px;"><?php echo Language::term('title_sku', 'SKU'); ?></th> <th style="text-align: center; min-width: 50px;"><?php echo Language::term('title_weight', 'Weight'); ?></th> <th style="text-align: center; min-width: 50px;"><?php echo Language::term('title_qty', 'Qty'); ?></th> <th style="text-align: center; min-width: 50px;"><?php echo Language::term('title_unit_price', 'Unit Price'); ?></th> <th style="text-align: center; min-width: 50px;"><?php echo Language::term('title_tax', 'Tax'); ?></th> <th> </th> </tr> <tr class="item" ng-repeat="item in data.items"> <td> <a href="/shop/id/{{item.product_id}}">{{item.name}}</a> </td> <td>{{item.sku}}</td> <td style="text-align: center;"> <div class="input-group"> <input type="text" ng-model="item.weight" class="form-control"/> <div class="input-group-btn"><?php echo cmm_functions::form3_draw_weight_classes_list('item.weight_class', true); ?></div > </div> </td> <td style="text-align: center;"> <input type="text" ng-model="item.quantity" class="form-control" ng-change="calculate_total()"/> </td> <td style="text-align: right;"> <div class="input-group"> <input type="text" ng-model="item.price" class="form-control" 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="item.tax" class="form-control" ng-change="calculate_total()"/> <span class="input-group-addon">{{data.currency_code}}</span> </div> </td> <td><a class="remove" ng-click="removeProduct($index)" href="javascript:void(0);" title="<?php echo Language::term('title_remove', 'Remove'); ?>"><i class="fa fa-times-circle" style="color: #cc3333;"></i></a></td> </tr> </table> </div> <div class="panel"> <div class="panel-title"><?php echo Language::term('text_product', 'Add Product(s)'); ?></div> <div class="panel-body"> <div class="form-horizontal"> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo Language::term('entry_product', 'Choose Product(s)'); ?></label> <div class="col-sm-10"> <input type="text" ng-model="product_to_add" placeholder="" typeahead-min-length="0" typeahead-on-select="selectProduct_ToAdd(product_to_add)" uib-typeahead="product as product.name for product in getProducts($viewValue)" typeahead-loading="loadingLocations" typeahead-no-results="noResults" class="form-control"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo Language::term('entry_quantity', 'Quantity'); ?></label> <div class="col-sm-10"> <input type="text" ng-model="qty_to_add" class="form-control" /> </div> </div> <div class="text-right"> <button class="btn btn-primary" ng-disabled="product_id_to_add==0" ng-click="addProduct()" ><i class="fa fa-plus"></i> <?php echo Language::term('button_product_add', 'Add Product'); ?></button> </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]