]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Dependencia.php
MECON_Dependencia ahora guarda en un atributo el id de la base cuando se instancia
[mecon/meconlib.git] / lib / MECON / Dependencia.php
index c3e30478c816e5428bfd06ed42f0b0371e186a82..6cc0637127473621e8c7d3c494c754fcd5a332c6 100644 (file)
@@ -51,6 +51,14 @@ class MECON_Dependencia {
      */
     var $nombre_breve;
 
+    /**
+     * Id de la dependencia en la base.
+     *
+     * @var    int $dependencia_id
+     * @access public
+     */
+    var $dependencia_id = null;
+
     // ~X2C
 
     // +X2C Operation 147
@@ -60,14 +68,14 @@ class MECON_Dependencia {
      * @return void
      * @access public
      */
-    function dependencia($codep) // ~X2C
+    function MECON_Dependencia($codep) // ~X2C
     {
         $this->codep = $codep;
         $dsn = 'mysql://intranet:intranet@intranet-db.mecon.ar/CODEP';
         $db = DB::connect($dsn);
         if (DB::isError($db))
             die ($db->getMessage("No pudo conectarse a la base"));
-        $sql = "SELECT nombre, nombre_breve
+        $sql = "SELECT nombre, nombre_breve, dependencia_id
                FROM Dependencias
                WHERE codigo_actual = '$this->codep' AND
                dependencia_esta_activa = 1";
@@ -78,6 +86,7 @@ class MECON_Dependencia {
             $row = $result->fetchRow(DB_FETCHMODE_ASSOC);
             $this->nombre = $row['nombre'];
             $this->nombre_breve = $row['nombre_breve'];
+            $this->dependencia_id = $row['dependencia_id'];
         }
     }
     // -X2C