Commit 1e131e1342fec22a00da06e20698401194632a00
1 parent
badd873503
Exists in
develop
Fix
Quitados metodos sin uso
Showing
2 changed files
with
0 additions
and
16 deletions
Show diff stats
src/app/modules/carrito/carrito.component.ts
... | ... | @@ -53,14 +53,6 @@ export class CarritoComponent implements OnInit, OnDestroy { |
53 | 53 | this.articuloService.deleteArticulo(index); |
54 | 54 | } |
55 | 55 | |
56 | - substractCant(articulo: IArticulo) { | |
57 | - this.articuloService.substractCant(articulo); | |
58 | - } | |
59 | - | |
60 | - addCant(articulo: IArticulo) { | |
61 | - this.articuloService.addCant(articulo); | |
62 | - } | |
63 | - | |
64 | 56 | goBack() { |
65 | 57 | this.location.back(); |
66 | 58 | } |
src/app/modules/seleccion-articulos/seleccion-articulos.component.ts
... | ... | @@ -208,14 +208,6 @@ export class SeleccionArticulosComponent implements OnInit, OnDestroy { |
208 | 208 | this.articuloService.deleteArticulo(index); |
209 | 209 | } |
210 | 210 | |
211 | - substractCant(articulo: IArticulo) { | |
212 | - this.articuloService.substractCant(articulo); | |
213 | - } | |
214 | - | |
215 | - addCant(articulo: IArticulo) { | |
216 | - this.articuloService.addCant(articulo); | |
217 | - } | |
218 | - | |
219 | 211 | increaseShow() { |
220 | 212 | this.showQuantity += 100; |
221 | 213 | } |