Commit 4167e0d1d70073d15d8d72848e8f595096929016

Authored by Eric Fernandez
1 parent 9a622b9828
Exists in master and in 1 other branch develop

fix simbolo moneda

Showing 1 changed file with 10 additions and 10 deletions   Show diff stats
src/views/nota-pedido.html
... ... @@ -172,12 +172,12 @@
172 172 class="selectable"
173 173 ng-click="idLista == -1 && cambioEdit(articulo, 'precio')"
174 174 ng-hide="articulo.editPrecio"
175   - ng-bind="articulo.precio | currency: notaPedido.moneda.simbolo : 4">
  175 + ng-bind="articulo.precio | currency: notaPedido.moneda.SIMBOLO : 4">
176 176 </i>
177 177 </td>
178 178 <td
179 179 class="col text-right"
180   - ng-bind="(articulo.precio * articulo.cantidad) | currency: notaPedido.moneda.simbolo">
  180 + ng-bind="(articulo.precio * articulo.cantidad) | currency: notaPedido.moneda.SIMBOLO">
181 181 </td>
182 182 <td class="text-center">
183 183 <button
... ... @@ -232,7 +232,7 @@
232 232 <td class="col text-right">
233 233 <input
234 234 class="form-control"
235   - ng-value="articuloACargar.precio | currency: notaPedido.moneda.simbolo : 4"
  235 + ng-value="articuloACargar.precio | currency: notaPedido.moneda.SIMBOLO : 4"
236 236 ng-show="idLista != -1"
237 237 readonly
238 238 >
... ... @@ -251,7 +251,7 @@
251 251 <td class="col text-right">
252 252 <input
253 253 class="form-control"
254   - ng-value="getSubTotal() | currency: notaPedido.moneda.simbolo"
  254 + ng-value="getSubTotal() | currency: notaPedido.moneda.SIMBOLO"
255 255 readonly
256 256 ></td>
257 257 <td class="text-center align-middle">
... ... @@ -282,7 +282,7 @@
282 282 <h3>Total:</h3>
283 283 </td>
284 284 <td class="table-celda-total text-right no-border-top" colspan="1">
285   - <h3>{{getTotal() | currency: notaPedido.moneda.simbolo}}</h3>
  285 + <h3>{{getTotal() | currency: notaPedido.moneda.SIMBOLO}}</h3>
286 286 </td>
287 287 <td class="text-right no-border-top">
288 288 <button
... ... @@ -344,11 +344,11 @@
344 344 <span ng-bind="'x' + articulo.cantidad"></span>
345 345 </div>
346 346 <div class="col-3 px-1 text-right">
347   - <span ng-bind="articulo.precio | currency: notaPedido.moneda.simbolo : 4"></span>
  347 + <span ng-bind="articulo.precio | currency: notaPedido.moneda.SIMBOLO : 4"></span>
348 348 </div>
349 349 <div class="col px-1 text-right">
350 350 <span
351   - ng-bind="(articulo.precio * articulo.cantidad) | currency: notaPedido.moneda.simbolo"
  351 + ng-bind="(articulo.precio * articulo.cantidad) | currency: notaPedido.moneda.SIMBOLO"
352 352 >
353 353 </span>
354 354 </div>
... ... @@ -396,11 +396,11 @@
396 396 >
397 397 </div>
398 398 <div class="col-3 px-1 text-right">
399   - <span ng-bind="articuloACargar.precio | currency: notaPedido.moneda.simbolo : 4"></span>
  399 + <span ng-bind="articuloACargar.precio | currency: notaPedido.moneda.SIMBOLO : 4"></span>
400 400 </div>
401 401 <div class="col px-1 text-right">
402 402 <span
403   - ng-bind="getSubTotal() | currency: notaPedido.moneda.simbolo"
  403 + ng-bind="getSubTotal() | currency: notaPedido.moneda.SIMBOLO"
404 404 >
405 405 </span>
406 406 </div>
... ... @@ -458,7 +458,7 @@
458 458 <h3>Total:</h3>
459 459 </td>
460 460 <td class="table-celda-total text-right no-border-top">
461   - <h3>{{getTotal() | currency: notaPedido.moneda.simbolo}}</h3>
  461 + <h3>{{getTotal() | currency: notaPedido.moneda.SIMBOLO}}</h3>
462 462 </td>
463 463 </tr>
464 464 </tfoot>