Commit 0197afc4cc4461318fa312b788f8845899625fda

Authored by Marcelo Puebla
1 parent 5b96c07780
Exists in develop

Fix

En logica de stock
src/app/modules/seleccion-articulos/seleccion-articulos.component.html
... ... @@ -49,7 +49,7 @@
49 49 ondragstart="return false;"
50 50 (contextmenu)="false"
51 51 *ngIf="articulo.ExiVta < 1"
52   - class="position-fixed right-0"
  52 + class="w-50 position-fixed right-0"
53 53 src="assets/img/sin-stock.svg">
54 54 <img
55 55 draggable="false"
src/app/modules/seleccion-articulos/seleccion-articulos.component.ts
... ... @@ -107,8 +107,9 @@ export class SeleccionArticulosComponent implements OnInit, AfterViewInit, OnDes
107 107 });
108 108 this.modalRef.content.onClose
109 109 .subscribe(() => this.modalRef = null);
  110 + } else {
  111 + this.getByID(articulo.id);
110 112 }
111   - this.getByID(articulo.id);
112 113 }
113 114  
114 115 getByID(id: number) {