Commit 310952efb73b329f94a627c2121c121fbc8a41a7

Authored by Benjamin Rodriguez
1 parent 0f818e5c28
Exists in develop

combo en mayusculas y ingredientes en minusculas en comanda

src/app/modules/comanda/comanda.component.html
... ... @@ -50,12 +50,12 @@
50 50 }">
51 51 <!-- DETALLE Y CANTIDAD -->
52 52 <p>
53   - <small>{{detalle.DetLar}}</small><br>
  53 + <small>{{detalle.DetLar.toUpperCase()}}</small><br>
54 54 <small>CANT.{{detalle.cantidad}}</small>
55 55 </p>
56 56 <div *ngFor="let componente of detalle.componentes">
57 57 <p *ngIf="componente.DetArt !== 'Producto ingrediente general'">
58   - <small>{{componente.DetArt.toUpperCase()}}</small>
  58 + <small>{{componente.DetArt.toLowerCase()}}</small>
59 59 </p>
60 60 </div>
61 61 </div>