Commit 85bdbd3de799bf75d75631eb23656c0207381583
1 parent
e10102e20c
Exists in
master
and in
1 other branch
no permitir mas de 100 caracteres
Showing
1 changed file
with
18 additions
and
5 deletions
Show diff stats
src/views/nota-pedido.html
| ... | ... | @@ -82,9 +82,16 @@ |
| 82 | 82 | ng-show="show || key == (articulosTabla.length - 1)" |
| 83 | 83 | > |
| 84 | 84 | <td class="tabla-articulo-numero" ng-bind="key + 1"></td> |
| 85 | - <td class="tabla-articulo-codigo" ng-bind="articulo.sector + '-' + articulo.codigo"></td> | |
| 86 | - <td class="tabla-articulo-descripcion" ng-bind="articulo.descripcion"></td> | |
| 87 | - <td class="tabla-articulo-cantidad text-right"><input | |
| 85 | + <td | |
| 86 | + class="tabla-articulo-codigo" | |
| 87 | + ng-bind="articulo.sector + '-' + articulo.codigo" | |
| 88 | + ></td> | |
| 89 | + <td | |
| 90 | + class="tabla-articulo-descripcion" | |
| 91 | + ng-bind="articulo.descripcion" | |
| 92 | + ></td> | |
| 93 | + <td class="tabla-articulo-cantidad text-right"> | |
| 94 | + <input | |
| 88 | 95 | ng-show="articulo.edit" |
| 89 | 96 | ng-model="articulo.cantidad" |
| 90 | 97 | class="form-control" |
| ... | ... | @@ -101,7 +108,10 @@ |
| 101 | 108 | ng-bind="articulo.cantidad"> |
| 102 | 109 | </i> |
| 103 | 110 | </td> |
| 104 | - <td class="tabla-articulo-precio text-right" ng-bind="articulo.precio | currency: '$'"></td> | |
| 111 | + <td | |
| 112 | + class="tabla-articulo-precio text-right" | |
| 113 | + ng-bind="articulo.precio | currency: '$'" | |
| 114 | + ></td> | |
| 105 | 115 | <td |
| 106 | 116 | class="tabla-articulo-subtotal text-right" |
| 107 | 117 | ng-bind="(articulo.precio * articulo.cantidad) | currency: '$'"> |
| ... | ... | @@ -118,7 +128,10 @@ |
| 118 | 128 | </tbody> |
| 119 | 129 | <tfoot> |
| 120 | 130 | <tr ng-show="!cargando"> |
| 121 | - <td class="tabla-articulo-numero align-middle" ng-bind="articulosTabla.length + 1"></td> | |
| 131 | + <td | |
| 132 | + class="tabla-articulo-numero align-middle" | |
| 133 | + ng-bind="articulosTabla.length + 1" | |
| 134 | + ></td> | |
| 122 | 135 | <td class="tabla-articulo-codigo"> |
| 123 | 136 | <input |
| 124 | 137 | class="form-control" |