Blame view
app/partials/FuelVendors/FuelVendors.controller.js
877 Bytes
4bb02bb84
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
'use strict'; //Load controller angular.module('acufuel') .controller('FuelVendorsController', ['$scope',function($scope) { $scope.vendorList = [{ "companyName": "Name and inc", "phone":"1010101010", "contact":"jimmy", "status":'Active', "source": "tenant", "allIn" : "$123" },{ "companyName": "Name and inc", "phone":"1010101010", "contact":"jimmy", "status":'Active', "source": "tenant", "allIn" : "$123" },{ "companyName": "Name and inc", "Fleet": 3, "phone":"1010101010", "contact":"jimmy", "Base":"Kiad", "status":'Inactive', "source": "tenant", "allIn" : "$123" },{ "companyName": "Name and inc", "phone":"1010101010", "contact":"jimmy", "status":'Active', "source": "tenant", "allIn" : "$123" }] }]); |