From 6e29f73b8d2e20c8f8023356db87e2c546f03ef4 Mon Sep 17 00:00:00 2001 From: Pablo Marco del Pont Date: Fri, 26 Oct 2018 18:06:42 -0300 Subject: [PATCH] =?UTF-8?q?-=20Agregu=C3=A9=20bot=C3=B3n=20Proveedor.=20-?= =?UTF-8?q?=20Mov=C3=AD=20bot=C3=B3n=20Totales=20a=20la=20parte=20inferior?= =?UTF-8?q?=20derecha.=20-=20Mov=C3=AD=20el=20t=C3=ADtulo=20a=20la=20izqui?= =?UTF-8?q?erda.=20-=20Mov=C3=AD=20el=20n=C3=BAmero=20de=20comprobante=20a?= =?UTF-8?q?l=20centro.=20-=20Mov=C3=AD=20la=20fecha=20a=20la=20derecha.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/js/controller.js | 2 +- src/views/nota-pedido.html | 19 +++++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/js/controller.js b/src/js/controller.js index e311dfc..796d88a 100644 --- a/src/js/controller.js +++ b/src/js/controller.js @@ -8,12 +8,12 @@ angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl', $scope.botonera = [ {texto: 'Vendedor', accion: function() {$scope.seleccionarVendedor();}}, {texto: 'Cliente', accion: function() {$scope.seleccionarCliente();}}, + {texto: 'Proveedor', accion: function() {}}, {texto: 'Moneda', accion: function() {$scope.abrirModalMoneda();}}, { texto: 'Precios y condiciones', accion: function() {$scope.abrirModalListaPrecio();}}, {texto: 'Flete', accion: function() {$scope.abrirModalFlete();}}, - {texto: 'Totales', accion: function() {}}, {texto: '', accion: function() {}}, {texto: '', accion: function() {}} ]; diff --git a/src/views/nota-pedido.html b/src/views/nota-pedido.html index 2adf390..4efa613 100644 --- a/src/views/nota-pedido.html +++ b/src/views/nota-pedido.html @@ -5,13 +5,13 @@
-
- {{ now | date:'dd/MM/yyyy HH:mm'}} +
+
NOTA DE PEDIDO
-
-
NOTA DE PEDIDO
+
Nº {{puntoVenta}}-{{comprobante}}
+
+ Fecha: {{ now | date:'dd/MM/yyyy HH:mm'}}
-
Nº {{puntoVenta}}-{{comprobante}}
@@ -166,7 +166,14 @@

{{getTotal() | currency: '$'}}

- + + + -- 1.9.1