Esempio n. 1
0
 public function getListaPuestosDoc($datos)
 {
     $o_DRrhh = new DRrhh();
     $rs = $o_DRrhh->getListaPuestos($datos);
     $array = $rs;
     $j = 0;
     foreach ($array as $fila) {
         $array[$j][2] = $array[$j][0] . '|' . $array[$j][1] . '|';
         $j++;
     }
     return $array;
 }