Commit bcfe9f7368229009536da4c54696e43190f2cec2
Exists in
master
and in
1 other branch
Merge branch 'master' into 'master'
agrego importe a resultados See merge request !4
Showing
1 changed file
Show diff stats
src/views/foca-modal-nota-pedido.html
... | ... | @@ -85,6 +85,7 @@ |
85 | 85 | <th>Fecha</th> |
86 | 86 | <th>Cliente</th> |
87 | 87 | <th>Comprobante</th> |
88 | + <th class="text-right">Importe</th> | |
88 | 89 | <th></th> |
89 | 90 | </tr> |
90 | 91 | </thead> |
... | ... | @@ -100,6 +101,7 @@ |
100 | 101 | <td ng-bind="notaPedido.fechaCarga | date : 'dd/MM/yyyy'"></td> |
101 | 102 | <td ng-bind="notaPedido.nombreCliente"></td> |
102 | 103 | <td ng-bind="[notaPedido.sucursal, notaPedido.numeroNotaPedido] | comprobante"></td> |
104 | + <td ng-bind="notaPedido.total | number: 2" class="text-right"></td> | |
103 | 105 | <td> |
104 | 106 | <button |
105 | 107 | type="button" |