Commit f7458e1596aac8b82bd83db3d9f9d463fb1a7593
Exists in
master
Merge branch 'master' into 'develop'
Master(mpuebla) See merge request !9
Showing
2 changed files
Show diff stats
src/js/controller.js
| ... | ... | @@ -427,16 +427,18 @@ angular.module('focaCrearFactura').controller('facturaController', [ |
| 427 | 427 | |
| 428 | 428 | $scope.botoneraProductos.push({ |
| 429 | 429 | label: producto.DetArt, |
| 430 | - image: 'buscarProductos.png' | |
| 430 | + image: producto.nombreImagen, | |
| 431 | + imageDefault: 'productoDefault.png' | |
| 431 | 432 | }); |
| 432 | - | |
| 433 | - | |
| 433 | + | |
| 434 | + | |
| 434 | 435 | crearFuncionesProductos(producto); |
| 435 | - | |
| 436 | + | |
| 436 | 437 | }); |
| 437 | 438 | $scope.botoneraProductos.push({ |
| 438 | 439 | label: 'Busqueda Productos', |
| 439 | - image: 'buscarProductos.png' | |
| 440 | + image: 'buscarProductos.png', | |
| 441 | + imageDefault: 'productoDefault.png' | |
| 440 | 442 | }); |
| 441 | 443 | }); |
| 442 | 444 | } |
src/views/factura.html
| ... | ... | @@ -12,9 +12,9 @@ |
| 12 | 12 | direction="left" |
| 13 | 13 | ng-bind="factura.observaciones" |
| 14 | 14 | ></marquee> |
| 15 | - <div class="col-lg-12 p-2"> | |
| 15 | + <div class="col-12 col-lg-10 p-2"> | |
| 16 | 16 | <div class="row border border-light rounded m-0"> |
| 17 | - <div class="col-12 col-md-10 col-lg-10"> | |
| 17 | + <div class="col-12 col-sm-12"> | |
| 18 | 18 | <div class="row p-1 botonera-secundaria px-3 py-2"> |
| 19 | 19 | <div class="col-12"> |
| 20 | 20 | <foca-botonera-facturador |