PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
configuration
/
shipping
/
methods
<div class="form-group"> <label><?php $this->t('LBL_SHIPPING_DISPLAY_NAME') ?></label> <div class="controls"> <input type="text" ng-model="data.name" value="" required maxlength="255"/> </div> </div> <div class="form-group"> <label><?php $this->t('LBL_SHIPPING_SHIP_BY_ORDER_DEFAULT_COST') ?></label> <div class="controls"> <input type="text" ng-model="data.cost" required number maxlength="255"/> </div> </div> <div class="form-group"> <label><?php $this->t('LBL_SHIPPING_SHIP_BY_ORDER_SHIPPING_TABLE') ?></label> <div class="controls"> <button class="btn btn-primary btn-xs font-plus" ng-click="addTableRow()"></button> <table class=""> <tr ng-repeat="table in tables"> <td> <?php $this->t('LBL_FROM') ?> </td> <td> <div class="input-group"> <div class="input-group-addon" ng-hide="curr_symbol_left.length==0">{{curr_symbol_left}}</div> <input type="text" ng-model="table.form" ng-change="changeTable()" required number/> <div class="input-group-addon" ng-hide="curr_symbol_right.length==0">{{curr_symbol_right}}</div> </div> </td> <td> <?php $this->t('LBL_SHIPPING_FEE_IS') ?> </td> <td> <div class="input-group"> <div class="input-group-addon" ng-hide="curr_symbol_left.length==0">{{curr_symbol_left}}</div> <input type="text" ng-model="table.fee" ng-change="changeTable()" required number /> <div class="input-group-addon" ng-hide="curr_symbol_right.length==0">{{curr_symbol_right}}</div> </div> </td> </tr> </table> <input type="text" ng-model="data.table" maxlength="255" style="display:none"/> </div> </div> <div class="form-group"> <label><?php $this->t('LBL_SHIPPING_SHIP_BY_ORDER_HANDLING_FEE') ?></label> <div class="controls"> <input type="text" ng-model="data.fee" number maxlength="255"/> </div> </div>
[+]
..
[-] ship_by_order_total.php
[edit]
[-] ship_by_weight.php
[edit]
[-] flat_rate.php
[edit]