]> git.llucax.com Git - mecon/intranet.git/commitdiff
- Agregue los primeros archivos del servicio de muestra de las bandas horarias.
authorMatías Sklar <msklar@mecon.gov.ar>
Thu, 14 Aug 2003 19:11:54 +0000 (19:11 +0000)
committerMatías Sklar <msklar@mecon.gov.ar>
Thu, 14 Aug 2003 19:11:54 +0000 (19:11 +0000)
sistema/local_lib/Servicios/Bandas/Agente.php [new file with mode: 0644]
sistema/local_lib/Servicios/Bandas/Dependencia.php [new file with mode: 0644]

diff --git a/sistema/local_lib/Servicios/Bandas/Agente.php b/sistema/local_lib/Servicios/Bandas/Agente.php
new file mode 100644 (file)
index 0000000..389436f
--- /dev/null
@@ -0,0 +1,166 @@
+<?php
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// +--------------------------------------------------------------------+
+// |                      Ministerio de Economía                        |
+// |                             Intranet                              |
+// +--------------------------------------------------------------------+
+// | This file is part of Intranet.                                    |
+// |                                                                    |
+// | Intranet is free software; you can redistribute it and/or modify  |
+// | it under the terms of the GNU General Public License as published  |
+// | by the Free Software Foundation; either version 2 of the License,  |
+// | or (at your option) any later version.                             |
+// |                                                                    |
+// | Intranet is distributed in the hope that it will be useful, but   |
+// | WITHOUT ANY WARRANTY; without even the implied warranty of         |
+// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
+// | General Public License for more details.                           |
+// |                                                                    |
+// | You should have received a copy of the GNU General Public License  |
+// | along with Hooks; if not, write to the Free Software Foundation,   |
+// | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
+// +--------------------------------------------------------------------+
+// | Creado: Thu Aug 14 16:03:23 2003                                 
+// | Autor:  Matias Sklar <msklar@mecon.gov.ar>
+// +--------------------------------------------------------------------+
+//
+// $Id$
+//
+
+
+
+// +X2C includes
+require_once 'MECON/Agente.php';
+// ~X2C
+
+// +X2C Class 183 :Servicios_Bandas_Agente
+/**
+ * @access public
+ */
+class Servicios_Bandas_Agente extends Agente {
+    /**
+     * Todos los accesos del agente en el mes pedido
+     *
+     * @var    int $accesos
+     * @access private
+     */
+    var $_accesos = null;
+
+    /**
+     * @var    int $credencial
+     * @access private
+     */
+    var $_credencial;
+
+    // ~X2C
+
+    // +X2C Operation 194
+    /**
+     * @param  date $fecha 
+     *
+     * @return void
+     * @access public
+     */
+    function getCredencial($fecha = null) // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 197
+    /**
+     * @return void
+     * @access public
+     */
+    function getPromedioMensual() // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 198
+    /**
+     * @param  date $dia La fecha que se desea consultar
+     *
+     * @return void
+     * @access public
+     */
+    function getHoras($dia = null) // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 205
+    /**
+     * Método que devuelve todos los accesos de una persona en un rango de fechas
+     *
+     * @param  date $fecha_desde 
+     * @param  date $fecha_hasta 
+     *
+     * @return void
+     * @access public
+     */
+    function getAccesos($fecha_desde, $fecha_hasta) // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 207
+    /**
+     * Devuelve la cantidad de días laborales trabajados por el agente en el mes considerado
+     *
+     * @return void
+     * @access public
+     */
+    function getDiasLaborablesTrabajados() // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 208
+    /**
+     * Devuelve la cantidad de días trabajados por el agente en el mes considerado
+     *
+     * @return void
+     * @access public
+     */
+    function getDiasTrabajados() // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 212
+    /**
+     * Devuelve la cantidad de ausentes sin aviso del agente en el mes considerado
+     *
+     * @return int
+     * @access public
+     */
+    function getNASA() // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 213
+    /**
+     * Constructor de la clase
+     *
+     * @param  int $agente Número de documento del agente a instanciar
+     * @param  date $fecha Fecha utilizada para determinar el mes a mostrar
+     *
+     * @return void
+     * @access public
+     */
+    function Servicios_Bandas_Agente($agente = null, $fecha = null) // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+} // -X2C Class :Servicios_Bandas_Agente
+?>
\ No newline at end of file
diff --git a/sistema/local_lib/Servicios/Bandas/Dependencia.php b/sistema/local_lib/Servicios/Bandas/Dependencia.php
new file mode 100644 (file)
index 0000000..8c629b9
--- /dev/null
@@ -0,0 +1,105 @@
+<?php
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// +--------------------------------------------------------------------+
+// |                      Ministerio de Economía                        |
+// |                             Intranet                              |
+// +--------------------------------------------------------------------+
+// | This file is part of Intranet.                                    |
+// |                                                                    |
+// | Intranet is free software; you can redistribute it and/or modify  |
+// | it under the terms of the GNU General Public License as published  |
+// | by the Free Software Foundation; either version 2 of the License,  |
+// | or (at your option) any later version.                             |
+// |                                                                    |
+// | Intranet is distributed in the hope that it will be useful, but   |
+// | WITHOUT ANY WARRANTY; without even the implied warranty of         |
+// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
+// | General Public License for more details.                           |
+// |                                                                    |
+// | You should have received a copy of the GNU General Public License  |
+// | along with Hooks; if not, write to the Free Software Foundation,   |
+// | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
+// +--------------------------------------------------------------------+
+// | Creado: Thu Aug 14 16:03:23 2003                                 
+// | Autor:  Matias Sklar <msklar@mecon.gov.ar>
+// +--------------------------------------------------------------------+
+//
+// $Id$
+//
+
+
+
+// +X2C includes
+require_once 'MECON/Dependencia.php';
+// ~X2C
+
+// +X2C Class 200 :Servicios_Bandas_Dependencia
+/**
+ * Clase que representa una dependencia con bandas horarias
+ *
+ * @access public
+ */
+class Servicios_Bandas_Dependencia extends Dependencia {
+    // ~X2C
+
+    // +X2C Operation 202
+    /**
+     * Devuelve todos los agentes de la dependencia
+     *
+     * @param  int $codep 
+     * @param  Tipo_Agente $Tipo_agente 
+     *
+     * @return void
+     * @access public
+     */
+    function getAgentes($codep, $Tipo_agente) // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 203
+    /**
+     * Devuelve el promedio horario mensual de la dependencia en un mes en particular
+     *
+     * @param  Tipo_Agente $Tipo_agente 
+     *
+     * @return void
+     * @access public
+     */
+    function getPromedio($Tipo_agente = todos) // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 209
+    /**
+     * Devuelve la cantidad de ausentes sin aviso de la dependencia en un mes.
+     *
+     * @param  Tipo_Agente $Tipo_agente 
+     *
+     * @return void
+     * @access public
+     */
+    function getNASA($Tipo_agente = todos) // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 220
+    /**
+     * @param  date $fecha La fecha para determinar el mes a mostrar
+     *
+     * @return void
+     * @access public
+     */
+    function Servicios_Bandas_Dependencia($fecha = null) // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+} // -X2C Class :Servicios_Bandas_Dependencia
+?>
\ No newline at end of file