Commit 0962e67bddafd88567e36c87def3beedaa30bf70
Exists in
develop
Merge branch 'develop' into 'develop'
Develop See merge request !115
Showing
2 changed files
Show diff stats
src/app/interfaces/IComanda.ts
src/app/modules/comanda/comanda.component.html
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 | }"> |
51 | 51 | <!-- DETALLE Y CANTIDAD --> |
52 | 52 | <p> |
53 | - <small>{{detalle.DetLar.toUpperCase()}}</small><br> | |
53 | + <small>{{detalle.MKT_DESC ? detalle.MKT_DESC.toUpperCase() : detalle.DetArt.toUpperCase()}}</small><br> | |
54 | 54 | <small>CANT.{{detalle.cantidad}}</small> |
55 | 55 | </p> |
56 | 56 | <div *ngFor="let componente of detalle.componentes"> |
... | ... | @@ -72,13 +72,13 @@ |
72 | 72 | (click)="updateComanda(comanda, 2, 'En elaboracion')"> |
73 | 73 | <div class="row justify-content-between"> |
74 | 74 | <div></div> |
75 | - <p class="ml-4" style="color: #fff;">Elaborar</p> | |
75 | + <p class="ml-4 text-white">Elaborar</p> | |
76 | 76 | <img |
77 | - draggable="false" | |
78 | - ondragstart="return false;" | |
79 | - (contextmenu)="false" | |
80 | - class="icon-30 mr-2" | |
81 | - src="assets/img/ir.svg"> | |
77 | + draggable="false" | |
78 | + ondragstart="return false;" | |
79 | + (contextmenu)="false" | |
80 | + class="icon-30 mr-2" | |
81 | + src="assets/img/ir.svg"> | |
82 | 82 | </div> |
83 | 83 | </button> |
84 | 84 | <button |