Commit bf919dbef4fe2e09c065add3c8ab720c0fa5c227
1 parent
8041e9183f
Exists in
master
observaciones con marqe
Showing
3 changed files
with
8 additions
and
5 deletions
Show diff stats
gulpfile.js
| ... | ... | @@ -21,7 +21,9 @@ var paths = { |
| 21 | 21 | dist: 'dist/' |
| 22 | 22 | }; |
| 23 | 23 | |
| 24 | -gulp.task('uglify', gulpSequence('clean', ['templates', 'uglify-spec'], 'uglify-app')); | |
| 24 | +gulp.task('uglify', function(callback) { | |
| 25 | + gulpSequence('clean', ['templates', 'uglify-spec'], 'uglify-app')(callback); | |
| 26 | +}); | |
| 25 | 27 | |
| 26 | 28 | gulp.task('templates', function() { |
| 27 | 29 | return pump( |
src/js/controller.js
| ... | ... | @@ -673,10 +673,6 @@ angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl', |
| 673 | 673 | focaModalService |
| 674 | 674 | .prompt(observacion) |
| 675 | 675 | .then(function(observaciones) { |
| 676 | - $scope.$broadcast('addCabecera', { | |
| 677 | - label: 'Observaciones:', | |
| 678 | - valor: observaciones | |
| 679 | - }); | |
| 680 | 676 | $scope.notaPedido.observaciones = observaciones; |
| 681 | 677 | }); |
| 682 | 678 | }; |
src/views/nota-pedido.html
| ... | ... | @@ -6,6 +6,11 @@ |
| 6 | 6 | class="mb-0 col-lg-12" |
| 7 | 7 | busqueda="seleccionarNotaPedido" |
| 8 | 8 | ></foca-cabecera-facturador> |
| 9 | + <marquee | |
| 10 | + bgcolor="#FF9900" | |
| 11 | + behavior="scroll" | |
| 12 | + direction="left" | |
| 13 | + >{{notaPedido.observaciones}}</marquee> | |
| 9 | 14 | <div class="col-lg-12"> |
| 10 | 15 | <div class="row"> |
| 11 | 16 | <div class="col-12 col-md-10 col-lg-10 border border-light rounded"> |