public function consultardataAction() { try { $SesionUsuarioPlugin = $this->SesionUsuarioPlugin(); $EntityManagerPlugin = $this->EntityManagerPlugin(); $ClienteBO = new ClienteBO(); $EstadosBO = new EstadosBO(); $PaisBO = new PaisBO(); $UsuarioBO = new UsuarioBO(); //$GrupoDispoCabBO = new GrupoDispoCabBO(); $ClienteBO->setEntityManager($EntityManagerPlugin->getEntityManager()); $PaisBO->setEntityManager($EntityManagerPlugin->getEntityManager()); $UsuarioBO->setEntityManager($EntityManagerPlugin->getEntityManager()); $EstadosBO->setEntityManager($EntityManagerPlugin->getEntityManager()); //$GrupoDispoCabBO->setEntityManager($EntityManagerPlugin->getEntityManager()); $respuesta = $SesionUsuarioPlugin->isLoginAdmin(); if ($respuesta == false) { return false; } $body = $this->getRequest()->getContent(); $json = json_decode($body, true); $cliente_id = $json['cliente_id']; $row = $ClienteBO->consultar($cliente_id, \Application\Constants\ResultType::MATRIZ); $response = new \stdClass(); $response->row = $row; $response->cbo_pais_id = $PaisBO->getComboPais($row['pais_id'], "<Seleccione>"); //$response->cbo_usuario_vendedor_id = $UsuarioBO->getComboTodosVendedores($row['usuario_vendedor_id'], "<Seleccione>"); $response->cbo_usuario_vendedor_id = $UsuarioBO->getComboVendedoresAdmin($row['usuario_vendedor_id'], "<Seleccione>"); //$response->cbo_grupo_dispo = $GrupoDispoCabBO->getComboGrupoDispo($row['grupo_precio_cab_id'], "<Seleccione>"); $response->cbo_estado = \Application\Classes\ComboGeneral::getComboEstado($row['estado'], ""); $response->cbo_estado_id = $EstadosBO->getComboEstados($row['estados_id'], "<Seleccione>"); $response->cbo_formato_estado_cta = \Application\Classes\ComboGeneral::getComboFormatoEnvio($row['formato_estado_cta'], ""); $response->respuesta_code = 'OK'; $response->respuesta_mensaje = ''; $json = new JsonModel(get_object_vars($response)); return $json; //false } catch (\Exception $e) { $excepcion_msg = utf8_encode($this->ExcepcionPlugin()->getMessageFormat($e)); $response = $this->getResponse(); $response->setStatusCode(500); $response->setContent($excepcion_msg); return $response; } }
public function consultardataAction() { try { $SesionUsuarioPlugin = $this->SesionUsuarioPlugin(); $EntityManagerPlugin = $this->EntityManagerPlugin(); $MarcacionBO = new MarcacionBO(); $PaisBO = new PaisBO(); $TipoCajaBO = new TipoCajaBO(); $MarcacionBO->setEntityManager($EntityManagerPlugin->getEntityManager()); $PaisBO->setEntityManager($EntityManagerPlugin->getEntityManager()); $TipoCajaBO->setEntityManager($EntityManagerPlugin->getEntityManager()); $respuesta = $SesionUsuarioPlugin->isLoginAdmin(); if ($respuesta == false) { return false; } $body = $this->getRequest()->getContent(); $json = json_decode($body, true); $marcacion_sec = $json['marcacion_sec']; $row = $MarcacionBO->consultar($marcacion_sec, \Application\Constants\ResultType::MATRIZ); $response = new \stdClass(); $response->row = $row; $response->cbo_pais_id = $PaisBO->getComboPais($row['pais_id'], "<Seleccione>"); $response->cbo_tipo_caja = $TipoCajaBO->getCombo($row['tipo_caja_default_id'], "<Seleccione>"); $response->cbo_estado = \Application\Classes\ComboGeneral::getComboEstado($row['estado'], ""); $response->respuesta_code = 'OK'; $response->respuesta_mensaje = ''; $json = new JsonModel(get_object_vars($response)); return $json; //false } catch (\Exception $e) { $excepcion_msg = utf8_encode($this->ExcepcionPlugin()->getMessageFormat($e)); $response = $this->getResponse(); $response->setStatusCode(500); $response->setContent($excepcion_msg); return $response; } }