function agregarSales($salesId, $idOficina)
 {
     $con = new ConexionDash();
     $sql = "UPDATE oficina SET id_support='{$salesId}' WHERE oficina_id='{$idOficina}'";
     $result = $con->sql($sql);
     return $result;
 }
 function obtenerFiltro()
 {
     $con = new ConexionDash();
     $filtros = "";
     $filtro_prefijo = "";
     $filtro_tipoUsu = "";
     $filtro_oficina = "";
     if ($this->prefijo != '0') {
         $filtro_prefijo = "and prefijo_rep='{$this->prefijo}'";
     }
     if ($this->tipoUsuario != '0') {
         $filtro_tipoUsu = "and login_tipo='{$this->tipoUsuario}'";
     }
     if ($this->oficinaId != '0') {
         $filtro_oficina = "and oficina_id='{$this->oficinaId}'";
     }
     //$filtros=$filtro_tipoUsu.$filtro_prefijo;
     $filtros = $filtro_tipoUsu . $filtro_prefijo . $filtro_oficina;
     // echo $filtros;
     $sql = "SELECT id_rep,prefijo_rep, nombre_rep, ape_rep, tel1_rep, tel2_rep, email_rep, oficina_id, fecha_rep, manager_id, login_tipo FROM representante WHERE   ( login_tipo='{$this->tipoUsuario}' OR oficina_id='{$this->oficinaId}' ) {$filtros} ";
     $result = $con->sql($sql);
     return $result;
 }