diff --git a/src/app/interfaces/IArticulo.ts b/src/app/interfaces/IArticulo.ts index 774dd28..e968ba0 100644 --- a/src/app/interfaces/IArticulo.ts +++ b/src/app/interfaces/IArticulo.ts @@ -30,6 +30,7 @@ export interface IArticulo { CODP?: number; SECA?: number; SECP?: number; + MKT_DESC?: string; } export interface ICodigoBarra { diff --git a/src/app/shared/promocion/promocion.component.html b/src/app/shared/promocion/promocion.component.html index a7e1f1b..6cdf7c2 100644 --- a/src/app/shared/promocion/promocion.component.html +++ b/src/app/shared/promocion/promocion.component.html @@ -9,7 +9,7 @@ src="assets/img/icono-cancelar-blanco.svg">
{{articulosPromo[0].DetArt}}
+{{articulosPromo[0].MKT_DESC ? articulosPromo[0].MKT_DESC.toUpperCase() : articulosPromo[0].DetArt.toUpperCase()}}
{{promo.DetArt}}
+{{promo.MKT_DESC ? promo.MKT_DESC.toUpperCase() : promo.DetArt.toUpperCase()}}
{{promo.PreVen | currency}}
diff --git a/src/app/shared/sinonimo/sinonimo.component.html b/src/app/shared/sinonimo/sinonimo.component.html index 76f1938..72241b1 100644 --- a/src/app/shared/sinonimo/sinonimo.component.html +++ b/src/app/shared/sinonimo/sinonimo.component.html @@ -7,7 +7,7 @@ (click)="close()" class="btn-effect icon-30 mt-2 mr-2 position-absolute right-0 top-0 z-index" src="assets/img/icono-cancelar-blanco.svg"> -{{articulo.DetArt}}
+{{ articulo.MKT_DESC ? articulo.MKT_DESC.toUpperCase() : articulo.DetArt.toUpperCase() }}