From 1f1509cd913ce2de6807f5907833e3550722169b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Sklar?= Date: Tue, 15 Jul 2003 18:56:42 +0000 Subject: [PATCH] Agregue los archivos para el uso del servicio Legajos de Personal. --- .../local_lib/Intranet_Legajos_Estudios.php | 96 +++++++++++++ .../Intranet_Legajos_ExperienciaLaboral.php | 126 +++++++++++++++++ .../local_lib/Intranet_Legajos_Familiares.php | 127 ++++++++++++++++++ 3 files changed, 349 insertions(+) create mode 100644 sistema/local_lib/Intranet_Legajos_Estudios.php create mode 100644 sistema/local_lib/Intranet_Legajos_ExperienciaLaboral.php create mode 100644 sistema/local_lib/Intranet_Legajos_Familiares.php diff --git a/sistema/local_lib/Intranet_Legajos_Estudios.php b/sistema/local_lib/Intranet_Legajos_Estudios.php new file mode 100644 index 0000000..ce518f5 --- /dev/null +++ b/sistema/local_lib/Intranet_Legajos_Estudios.php @@ -0,0 +1,96 @@ + | +// +--------------------------------------------------------------------+ +// +// $Id$ +// + + + +// +X2C includes +require_once 'DB.php'; +// ~X2C + +// +X2C Class 163 :Intranet_Legajos_Estudios +/** + * Estudios del agente + * + * @access public + */ +class Intranet_Legajos_Estudios extends DB { + /** + * @var int $agente + * @access public + */ + var $agente; + + /** + * @var int $datos + * @access public + */ + var $datos; + + // ~X2C + + // +X2C Operation 166 + /** + * @param int $agente + * + * @return void + * @access public + */ + function Intranet_Legajos_Estudios($agente)// ~X2C + { + $this->agente = $agente; + $dsn = 'mysql://intranet:intranet@intranet-db/novedades'; + $db = DB::connect($dsn); + if (DB::isError($db)) + die ($db->getMessage("No pudo conectarse a la base")); + $sql = "SELECT * + FROM web005 + WHERE documento = $agente"; + $result = $db->query($sql); + if (DB::isError($result)) + die ($result->getMessage("Query mal hecho")); + + for ($fila = 0; $fila < $result->numRows(); $fila++) { + $this->datos[$fila] = $result->fetchRow(DB_FETCHMODE_ASSOC); + } + } + // -X2C + + // +X2C Operation 172 + /** + * @return void + * @access public + */ + function getEstudios()// ~X2C + { + return $this->datos; + } + // -X2C + +} // -X2C Class :Intranet_Legajos_Estudios +?> \ No newline at end of file diff --git a/sistema/local_lib/Intranet_Legajos_ExperienciaLaboral.php b/sistema/local_lib/Intranet_Legajos_ExperienciaLaboral.php new file mode 100644 index 0000000..eaded2a --- /dev/null +++ b/sistema/local_lib/Intranet_Legajos_ExperienciaLaboral.php @@ -0,0 +1,126 @@ + | +// +--------------------------------------------------------------------+ +// +// $Id$ +// + + + +// +X2C includes +require_once 'DB.php'; +// ~X2C + +// +X2C Class 155 :Intranet_Legajos_ExperienciaLaboral +/** + * Antigedad laboral del agente + * + * @access public + */ +class Intranet_Legajos_ExperienciaLaboral extends DB { + /** + * @var int $agente + * @access public + */ + var $agente; + + /** + * @var int $antiguedad + * @access public + */ + var $antiguedad; + + /** + * @var int $experiencia + * @access public + */ + var $experiencia; + + // ~X2C + + // +X2C Operation 159 + /** + * @param int $agente + * + * @return void + * @access public + */ + function Intranet_Legajos_ExperienciaLaboral($agente)// ~X2C + { + $this->agente = $agente; + $dsn = 'mysql://intranet:intranet@intranet-db/novedades'; + $db = DB::connect($dsn); + if (DB::isError($db)) + die ($db->getMessage("No pudo conectarse a la base")); + $sql = "SELECT * + FROM web032 + WHERE nrodoc = $agente + ORDER BY desde"; + $result_exp = $db->query($sql); + if (DB::isError($result_exp)) + die ($result_exp->getMessage("Query mal hecho")); + + for ($fila = 0; $fila < $result_exp->numRows(); $fila++) { + $this->experiencia[$fila] = $result_exp->fetchRow(DB_FETCHMODE_ASSOC); + } + + $sql = "SELECT * + FROM web031 + WHERE nrodoc = $agente"; + $result_ant = $db->query($sql); + if (DB::isError($result_ant)) + die ($result_ant->getMessage("Query mal hecho")); + + if ($result_ant->numRows() > 0) { + $this->antiguedad = $result_ant->fetchRow(DB_FETCHMODE_ASSOC); + } + + } + // -X2C + + // +X2C Operation 160 + /** + * @return void + * @access public + */ + function getAntiguedad()// ~X2C + { + return $this->antiguedad; + } + // -X2C + + // +X2C Operation 161 + /** + * @return void + * @access public + */ + function getExperiencia()// ~X2C + { + return $this->experiencia; + } + // -X2C + +} // -X2C Class :Intranet_Legajos_ExperienciaLaboral +?> diff --git a/sistema/local_lib/Intranet_Legajos_Familiares.php b/sistema/local_lib/Intranet_Legajos_Familiares.php new file mode 100644 index 0000000..041b9d3 --- /dev/null +++ b/sistema/local_lib/Intranet_Legajos_Familiares.php @@ -0,0 +1,127 @@ + | +// +--------------------------------------------------------------------+ +// +// $Id$ +// + + + +// +X2C includes +require_once 'DB.php'; +// ~X2C + +// +X2C Class 154 :Intranet_Legajos_Familiares +/** + * @access public + */ +class Intranet_Legajos_Familiares extends DB { + /** + * @var int $agente + * @access public + */ + var $agente; + + /** + * @var int $datos + * @access public + */ + var $datos; + + // ~X2C + + // +X2C Operation 169 + /** + * @param int $agente + * + * @return void + * @access public + */ + function Intranet_Legajos_Familiares($agente)// ~X2C + { + $this->agente = $agente; + $dsn = 'mysql://intranet:intranet@intranet-db/novedades'; + $db = DB::connect($dsn); + if (DB::isError($db)) + die ($db->getMessage("No pudo conectarse a la base")); + $sql = "SELECT * + FROM web004 + WHERE documento = $agente"; + $result = $db->query($sql); + if (DB::isError($result)) + die ($result->getMessage("Query mal hecho")); + + for ($fila = 0; $fila < $result->numRows(); $fila++) { + $this->datos[$fila] = $result->fetchRow(DB_FETCHMODE_ASSOC); + } + } + // -X2C + + // +X2C Operation 170 + /** + * @return void + * @access public + */ + function getHijos()// ~X2C + { + $fila = 0; + foreach (array_keys($this->datos) as $key) { + if($this->datos[$key]['parentesco']=="H") { + $aux[$fila]['nombre'] = $this->datos[$key]['nombre']; + $aux[$fila]['tipo_doc'] = $this->datos[$key]['tipodoc']; + $aux[$fila]['nro_doc'] = $this->datos[$key]['nrodoc']; + $aux[$fila]['fecha_nac'] = $this->datos[$key]['fecha_nac']; + $aux[$fila]['parentesco'] = $this->datos[$key]['parentesco']; + $fila++; + } + } + return $aux; + } + // -X2C + + // +X2C Operation 171 + /** + * @return void + * @access public + */ + function getFamiliares()// ~X2C + { + $fila = 0; + foreach (array_keys($this->datos) as $key) { + if($this->datos[$key]['parentesco']!="H") { + $aux[$fila]['nombre'] = $this->datos[$key]['nombre']; + $aux[$fila]['tipo_doc'] = $this->datos[$key]['tipodoc']; + $aux[$fila]['nro_doc'] = $this->datos[$key]['nrodoc']; + $aux[$fila]['fecha_nac'] = $this->datos[$key]['fecha_nac']; + $aux[$fila]['parentesco'] = $this->datos[$key]['parentesco']; + $fila++; + } + } + return $aux; + } + // -X2C + +} // -X2C Class :Intranet_Legajos_Familiares +?> -- 2.43.0