Commit a19a44aa9fa7150a836473e3bf13fe2f79b7a379

Authored by Marcelo Puebla
1 parent 69c4cb8cef
Exists in master and in 1 other branch validar_pve

Cambio en ruta para traer promociones.

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/app/services/producto.service.ts
... ... @@ -25,8 +25,8 @@ export class ProductoService {
25 25 }
26 26  
27 27 getPromocion(sector, codigo): Observable<any> {
28   - // var url = `${appSettings.apiUrl}/promociones/incluir-articulo/${sector}/${codigo}`;
29   - var url = `${appSettings.apiUrl}/promociones/incluir-articulo/${3}/${25}`;
  28 +
  29 + var url = `${appSettings.apiUrl}/promociones/incluir-articulo/${sector}/${codigo}`;
30 30 return this.http.get(url);
31 31 }
32 32