BibliotecaPesquisaCliente.php
4.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
#error_reporting(E_ALL);
#ini_set("display_errors", 1);
/**
* i-Educar - Sistema de gestão escolar
*
* Copyright (C) 2006 Prefeitura Municipal de Itajaí
* <ctima@itajai.sc.gov.br>
*
* Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Geral GNU conforme publicada pela Free
* Software Foundation; tanto a versão 2 da Licença, como (a seu critério)
* qualquer versão posterior.
*
* Este programa é distribuído na expectativa de que seja útil, porém, SEM
* NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU
* ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral
* do GNU para mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto
* com este programa; se não, escreva para a Free Software Foundation, Inc., no
* endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
*
* @author Lucas D'Avila <lucasdavila@portabilis.com.br>
* @category i-Educar
* @license @@license@@
* @package Portabilis
* @since Arquivo disponível desde a versão 1.1.0
* @version $Id$
*/
require_once 'lib/Portabilis/View/Helper/DynamicInput/Core.php';
/**
* Portabilis_View_Helper_DynamicInput_BibliotecaPesquisaCliente class.
*
* @author Lucas D'Avila <lucasdavila@portabilis.com.br>
* @category i-Educar
* @license @@license@@
* @package Portabilis
* @since Classe disponível desde a versão 1.1.0
* @version @@package_version@@
*/
class Portabilis_View_Helper_DynamicInput_BibliotecaPesquisaCliente extends Portabilis_View_Helper_DynamicInput_Core {
protected function getResourceId($id = null) {
if (! $id && $this->viewInstance->ref_cod_cliente)
$id = $this->viewInstance->ref_cod_cliente;
return $id;
}
public function bibliotecaPesquisaCliente($options = array()) {
$defaultOptions = array('id' => null, 'options' => array(), 'hiddenInputOptions' => array());
$options = $this->mergeOptions($options, $defaultOptions);
$inputHint = "<img border='0' onclick='pesquisaCliente();' id='lupa_pesquisa_cliente' name='lupa_pesquisa_cliente' src='imagens/lupa.png' />";
// input
$defaultInputOptions = array('id' => 'nome_cliente',
'label' => 'Cliente',
'value' => '',
'size' => '30',
'max_length' => '255',
'required' => true,
'expressao' => false,
'inline' => false,
'label_hint' => '',
'input_hint' => $inputHint,
'callback' => '',
'event' => 'onKeyUp',
'disabled' => true);
$inputOptions = $this->mergeOptions($options['options'], $defaultInputOptions);
call_user_func_array(array($this->viewInstance, 'campoTexto'), $inputOptions);
// hidden input
$defaultHiddenInputOptions = array('id' => 'ref_cod_cliente',
'value' => $this->getResourceId($options['id']));
$hiddenInputOptions = $this->mergeOptions($options['hiddenInputOptions'], $defaultHiddenInputOptions);
call_user_func_array(array($this->viewInstance, 'campoOculto'), $hiddenInputOptions);
// js
Portabilis_View_Helper_Application::embedJavascript($this->viewInstance, '
var resetCliente = function(){
$("#ref_cod_cliente").val("");
$("#nome_cliente").val("");
}
$("#ref_cod_biblioteca").change(resetCliente);', true);
Portabilis_View_Helper_Application::embedJavascript($this->viewInstance, "
function pesquisaCliente() {
var additionalFields = getElementFor('biblioteca');
var exceptFields = getElementFor('nome_cliente');
if (validatesPresenseOfValueInRequiredFields(additionalFields, exceptFields)) {
var bibliotecaId = getElementFor('biblioteca').val();
var attrIdName = getElementFor('cliente').attr('id');
pesquisa_valores_popless('educar_pesquisa_cliente_lst.php?campo1='+attrIdName+'&campo2=nome_cliente&ref_cod_biblioteca='+bibliotecaId);
}
}
");
}
}