Commit 3604ba8cb5a51166854653b0ce71e66a9cdd7d58
1 parent
961a97a2fa
Exists in
master
updates
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
app/js/app.js
... | ... | @@ -138,9 +138,9 @@ |
138 | 138 | }) |
139 | 139 | |
140 | 140 | .state("app.account", { |
141 | - url: "/account", | |
142 | - templateUrl: "partials/account/account.html", | |
143 | - controller: "accountController", | |
141 | + url: "/vendors", | |
142 | + templateUrl: "partials/FuelVendors/FuelVendors.html", | |
143 | + controller: "FuelVendorsController", | |
144 | 144 | data: { |
145 | 145 | authorizedRoles: ["FBO"], |
146 | 146 | } | ... | ... |
app/partials/viewFuelVendor/viewFuelVendor.html
... | ... | @@ -236,7 +236,7 @@ |
236 | 236 | <td>{{fuel.name}}</td> |
237 | 237 | <td>${{fuel.fuelPricing.cost}}</td> |
238 | 238 | <td>${{fuel.fuelPricing.papMargin}}</td> |
239 | - <td style="color:#55AF8B;">${{fuel.fuelPricing.papTotal}}</td> | |
239 | + <td style="color:#55AF8B;">${{fuel.fuelPricing.papTotal | number : 4 }}</td> | |
240 | 240 | <td style="color:#F90">{{fuel.fuelPricing.expirationDate}}</td> |
241 | 241 | </tr> |
242 | 242 | </tbody> | ... | ... |