Commit af5dab89fef96bc5a52dc34b3e2261f3a7535bf5
1 parent
5634823744
Exists in
master
and in
1 other branch
lineas que sobrepasan los 100 caracteres
Showing
1 changed file
with
18 additions
and
3 deletions
Show diff stats
src/views/nota-pedido.html
| ... | ... | @@ -174,7 +174,13 @@ |
| 174 | 174 | </div> |
| 175 | 175 | </div> |
| 176 | 176 | <div class="col-auto my-2"> |
| 177 | - <button ng-click="crearNotaPedido()" type="button" title="Crear nota pedido" class="btn btn-primary float-right">Guardar</button> | |
| 177 | + <button | |
| 178 | + ng-click="crearNotaPedido()" | |
| 179 | + type="button" | |
| 180 | + title="Crear nota pedido" | |
| 181 | + class="btn btn-primary float-right"> | |
| 182 | + Guardar | |
| 183 | + </button> | |
| 178 | 184 | </div> |
| 179 | 185 | </div> |
| 180 | 186 | <div class="row"> |
| ... | ... | @@ -201,7 +207,11 @@ |
| 201 | 207 | </thead> |
| 202 | 208 | <tbody> |
| 203 | 209 | <tr ng-show="cargando"> |
| 204 | - <td colspan="2"><input placeholder="Seleccione Articulo" class="form-control" readonly ng-click="seleccionarArticulo()"></td> | |
| 210 | + <td colspan="2"><input | |
| 211 | + placeholder="Seleccione Articulo" | |
| 212 | + class="form-control" | |
| 213 | + readonly | |
| 214 | + ng-click="seleccionarArticulo()"></td> | |
| 205 | 215 | <td></td> |
| 206 | 216 | <td></td> |
| 207 | 217 | <td></td> |
| ... | ... | @@ -256,7 +266,12 @@ |
| 256 | 266 | min="1" |
| 257 | 267 | foca-focus="articulo.edit" |
| 258 | 268 | ng-keypress="editarArticulo($event.keyCode, articulo)"> |
| 259 | - <i class="selectable" ng-click="cambioEdit(articulo)" ng-hide="articulo.edit" ng-bind="articulo.cantidad"></i> | |
| 269 | + <i | |
| 270 | + class="selectable" | |
| 271 | + ng-click="cambioEdit(articulo)" | |
| 272 | + ng-hide="articulo.edit" | |
| 273 | + ng-bind="articulo.cantidad"> | |
| 274 | + </i> | |
| 260 | 275 | </td> |
| 261 | 276 | <td ng-bind="(articulo.precio * articulo.cantidad) | currency: '$'"></td> |
| 262 | 277 | <td class="text-center"> |