Commit 6adc2d52cef9f1a4c50404b38871c5b5886a5cb1
1 parent
8272c62be8
Exists in
master
and in
1 other branch
Codigo identado en service.
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
src/js/service.js
1 | angular.module('focaModalPrecioCondicion') | 1 | angular.module('focaModalPrecioCondicion') |
2 | .service('focaModalPrecioCondicionService', [ | 2 | .service('focaModalPrecioCondicionService', [ |
3 | '$http', | 3 | '$http', |
4 | 'API_ENDPOINT', | 4 | 'API_ENDPOINT', |
5 | function($http, API_ENDPOINT) { | 5 | function ($http, API_ENDPOINT) { |
6 | return { | 6 | return { |
7 | getPlazosByIdPrecioCondicion: function(id) { | 7 | getPlazosByIdPrecioCondicion: function (id) { |
8 | return $http.get(API_ENDPOINT.URL + '/plazo-pago/precio-condicion/' + id); | 8 | return $http.get(API_ENDPOINT.URL + '/plazo-pago/precio-condicion/' + id); |
9 | }, | 9 | }, |
10 | getPreciosCondiciones: function() { | 10 | getPreciosCondiciones: function () { |
11 | return $http.get(API_ENDPOINT.URL + '/precio-condicion/plazo-pago'); | 11 | return $http.get(API_ENDPOINT.URL + '/precio-condicion/plazo-pago'); |
12 | }, | 12 | }, |
13 | getPreciosCondicionesByIdListaPrecio: function(idListaPrecio) { | 13 | getPreciosCondicionesByIdListaPrecio: function (idListaPrecio) { |
14 | return $http.get(API_ENDPOINT.URL + '/precio-condicion/plazo-pago/' + | 14 | return $http.get(API_ENDPOINT.URL + '/precio-condicion/plazo-pago/' + |
15 | idListaPrecio); | 15 | idListaPrecio); |
16 | } | 16 | } |
17 | }; | 17 | }; |
18 | } | 18 | } |
19 | ]); | 19 | ]); |
20 | 20 |