Commit 3c3ef9928796dc11aa43a13e7448b9a201f4f5e9
1 parent
d9226bca8a
Exists in
develop
Fix
Comanda
Showing
2 changed files
with
8 additions
and
7 deletions
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 |