From 94a0db6cc62aea163454939f0d26adaff07e5b79 Mon Sep 17 00:00:00 2001 From: InFog Date: Fri, 1 Jul 2011 15:11:22 -0300 Subject: [PATCH] Aplicadas abas no cadastro de clientes. Falta melhorar um pouco o visual (refs #26) --- application/views/clientes/dados.php | 200 ++++++++++++---------- application/views/clientes/formulario.php | 152 ++++++++-------- application/views/index.php | 2 + js/clientes/dados.js | 31 +--- js/clientes/formulario.js | 4 +- 5 files changed, 194 insertions(+), 195 deletions(-) diff --git a/application/views/clientes/dados.php b/application/views/clientes/dados.php index 4612d49..7792b88 100644 --- a/application/views/clientes/dados.php +++ b/application/views/clientes/dados.php @@ -1,97 +1,107 @@

-
-

Dados adicionais:

- - +
+ +
+ + + + + + + + + + + + + + + + + + + + +
Dados Básicos
Nome:
Telefone:
E-mail
Observações
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Endereço
Contato:
Telefone alternativo:
Celular:
Logradouro:
Número:
Complemento:
Bairro:
Cidade:
Estado:
CEP:
+
+
+ + + + + + + + + + + + + + + + + + + + +
Detalhes
Razão Social
CPF:
CNPJ:
Documento:
+
- - - - - - - - - - - - - - - - - - - - -
Dados Básicos
Nome:
Telefone:
E-mail
Observações
- - \ No newline at end of file diff --git a/application/views/clientes/formulario.php b/application/views/clientes/formulario.php index 13c8eea..55ce635 100644 --- a/application/views/clientes/formulario.php +++ b/application/views/clientes/formulario.php @@ -1,76 +1,90 @@

-
-

Dados adicionais:

- - -
-
- Dados básicos - - - - -
- - +
+ +
+
+ Dados básicos + + + + +
+
+
+
+ Endereço + + + + + + + + + + +
+
+
+
+ Detalhes + + + + +
+
+
-
\ No newline at end of file + diff --git a/application/views/index.php b/application/views/index.php index c55f865..1babb24 100644 --- a/application/views/index.php +++ b/application/views/index.php @@ -11,6 +11,7 @@ + + diff --git a/js/clientes/dados.js b/js/clientes/dados.js index b6d45dd..2e53b64 100644 --- a/js/clientes/dados.js +++ b/js/clientes/dados.js @@ -6,33 +6,6 @@ * @require jQuery > 1.5 */ -var campos_endereco = false; -var campos_detalhes = false; - $(document).ready( function() { - $('#btn_exibir_endereco').click( function() { - if (! campos_endereco) { - $('#campos_endereco').show('slow'); - $('#btn_exibir_endereco').val('Esconder endereço'); - campos_endereco = true; - } - else { - $('#campos_endereco').hide('slow'); - $('#btn_exibir_endereco').val('Exibir endereço'); - campos_endereco = false; - } - }); - - $('#btn_exibir_detalhes').click( function() { - if (! campos_detalhes) { - $('#campos_detalhes').show('slow'); - $('#btn_exibir_detalhes').val('Esconder detalhes'); - campos_detalhes = true; - } - else { - $('#campos_detalhes').hide('slow'); - $('#btn_exibir_detalhes').val('Exibir detalhes'); - campos_detalhes = false; - } - }); -}); \ No newline at end of file + $('#abas').tabs(); +}); diff --git a/js/clientes/formulario.js b/js/clientes/formulario.js index 8ae8a37..0931841 100644 --- a/js/clientes/formulario.js +++ b/js/clientes/formulario.js @@ -64,10 +64,10 @@ $(document).ready( function() { theme_advanced_statusbar_location : "bottom", theme_advanced_resizing : true, - width : "720", + width : "680", height : "200", language : "pt" }); -}); \ No newline at end of file +});