Commit cf8a87c861c06a3b95494eda12d8a927e07b2928

Authored by Marcelo Puebla
1 parent abf50a674a
Exists in master and in 1 other branch develop

Agregada nueva columna en la vista.

Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
src/views/modal-busqueda-productos.html
... ... @@ -44,6 +44,7 @@
44 44 <tr>
45 45 <th ng-hide="soloMostrar">Código</th>
46 46 <th>Descripción</th>
  47 + <th class="text-right">P. Lista</th>
47 48 <th class="text-right">P. Base</th>
48 49 <th ng-hide="soloMostrar"></th>
49 50 </tr>
... ... @@ -61,6 +62,7 @@
61 62 ng-hide="soloMostrar"></td>
62 63 <td ng-bind="producto.descripcion"></td>
63 64 <td class="text-right" ng-bind="producto.precio | number: 2"></td>
  65 + <td class="text-right" ng-bind="producto.precioBase | number: 2"></td>
64 66 <td class="d-md-none text-primary">
65 67 <i class="fa fa-circle-thin" aria-hidden="true"></i>
66 68 </td>