Commit 70200a3caecf48c68637320043382f201d99b38c
1 parent
731e27f5e1
Exists in
master
minor change
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
app/partials/enterFuelOrder/enterFuelOrder.html
... | ... | @@ -59,11 +59,11 @@ |
59 | 59 | |
60 | 60 | <div class="customInputWrap"> |
61 | 61 | <div class="col-md-3 text-right"> |
62 | - <label>Price Quote</label> | |
62 | + <label>Product</label> | |
63 | 63 | </div> |
64 | 64 | <div class="col-md-8 col-md-offset-1"> |
65 | 65 | <select class="form-control" ng-model="order.priceQuote" required> |
66 | - <option value="" selected disabled>Select Price Quote</option> | |
66 | + <option value="" selected disabled>Select Product</option> | |
67 | 67 | <option ng-repeat="margin in marginList" value="{{margin}}">${{margin.papTotal | number : 2}} {{margin.productName}}</option> |
68 | 68 | </select> |
69 | 69 | </div> | ... | ... |
app/partials/fuelOrders/fuelOrders.html
... | ... | @@ -648,11 +648,11 @@ |
648 | 648 | </div> |
649 | 649 | <div class="col-md-6"> |
650 | 650 | <div class="pull-left" style="width: 110px;"> |
651 | - <label class="new-input-label"><b>Price Quote</b></label> | |
651 | + <label class="new-input-label"><b>Product</b></label> | |
652 | 652 | </div> |
653 | 653 | <div class="pull-left" style="width: calc(100% - 110px);"> |
654 | 654 | <select ui-select2 style="width: 100%;" ng-model="order.priceQuote" ng-change="setCost(order.priceQuote)" class="price-quote-select"> |
655 | - <option value="" selected disabled>Select Price Quote</option> | |
655 | + <option value="" selected disabled>Select Product</option> | |
656 | 656 | <option ng-repeat="margin in marginList" value="{{margin}}">${{margin.papTotal | number : 4}} {{margin.productName}}</option> |
657 | 657 | </select> |
658 | 658 | </div> | ... | ... |