diff --git a/src/js/controller.js b/src/js/controller.js
index a9c1759..05b8ff1 100644
--- a/src/js/controller.js
+++ b/src/js/controller.js
@@ -32,6 +32,7 @@ angular.module('focaAbmPreciosCondiciones')
$scope, focaAbmPreciosCondicionesService,
$routeParams, $location, $uibModal
) {
+ $scope.mostrarPlazos = $routeParams.id > 0;
focaAbmPreciosCondicionesService.obtenerPrecioCondicion($routeParams.id)
.then(function(datos) {
$scope.precioCondicion = {
diff --git a/src/views/foca-abm-precios-condiciones-item.html b/src/views/foca-abm-precios-condiciones-item.html
index 168ce7e..490bd08 100644
--- a/src/views/foca-abm-precios-condiciones-item.html
+++ b/src/views/foca-abm-precios-condiciones-item.html
@@ -9,6 +9,7 @@
type="text"
name="codigo"
ng-model="precioCondicion.codigo"
+ autocomplete="off"
/>
@@ -20,6 +21,7 @@
type="text"
name="nombre"
ng-model="precioCondicion.nombre"
+ autocomplete="off"
/>
@@ -31,6 +33,7 @@
type="text"
name="nombre"
ng-model="precioCondicion.descripcion"
+ autocomplete="off"
/>
@@ -42,37 +45,42 @@
type="number"
name="nombre"
ng-model="precioCondicion.idListaPrecio"
+ autocomplete="off"
/>
-