Commit 6adc2d52cef9f1a4c50404b38871c5b5886a5cb1

Authored by Marcelo Puebla
1 parent 8272c62be8
Exists in master

Codigo identado en service.

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
... ... @@ -2,15 +2,15 @@ angular.module('focaModalPrecioCondicion')
2 2 .service('focaModalPrecioCondicionService', [
3 3 '$http',
4 4 'API_ENDPOINT',
5   - function($http, API_ENDPOINT) {
  5 + function ($http, API_ENDPOINT) {
6 6 return {
7   - getPlazosByIdPrecioCondicion: function(id) {
  7 + getPlazosByIdPrecioCondicion: function (id) {
8 8 return $http.get(API_ENDPOINT.URL + '/plazo-pago/precio-condicion/' + id);
9 9 },
10   - getPreciosCondiciones: function() {
  10 + getPreciosCondiciones: function () {
11 11 return $http.get(API_ENDPOINT.URL + '/precio-condicion/plazo-pago');
12 12 },
13   - getPreciosCondicionesByIdListaPrecio: function(idListaPrecio) {
  13 + getPreciosCondicionesByIdListaPrecio: function (idListaPrecio) {
14 14 return $http.get(API_ENDPOINT.URL + '/precio-condicion/plazo-pago/' +
15 15 idListaPrecio);
16 16 }