public function getcomboMarcacionAgenciacargaAction()
 {
     try {
         $EntityManagerPlugin = $this->EntityManagerPlugin();
         $ClienteAgenciaCargaBO = new ClienteAgenciaCargaBO();
         $MarcacionBO = new MarcacionBO();
         $ClienteAgenciaCargaBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $MarcacionBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $SesionUsuarioPlugin = $this->SesionUsuarioPlugin();
         $SesionUsuarioPlugin->isLoginClienteVendedor();
         $body = $this->getRequest()->getContent();
         $json = json_decode($body, true);
         //var_dump($json); exit;
         $marcacion_texto_primer_elemento = $json['marcacion_texto_primer_elemento'];
         $agenciacarga_texto_primer_elemento = $json['agenciacarga_texto_primer_elemento'];
         $cliente_id = $SesionUsuarioPlugin->getUserClienteId();
         $marcacion_sec = null;
         $agencia_carga_id = null;
         $marcacion_opciones = $MarcacionBO->getComboActivosPorClienteId($cliente_id, $marcacion_sec, $marcacion_texto_primer_elemento);
         $agenciacarga_opciones = $ClienteAgenciaCargaBO->getComboAgencia($cliente_id, $agencia_carga_id, $agenciacarga_texto_primer_elemento);
         $response = new \stdClass();
         $response->marcacion_opciones = $marcacion_opciones;
         $response->agenciacarga_opciones = $agenciacarga_opciones;
         $response->respuesta_code = 'OK';
         $json = new JsonModel(get_object_vars($response));
         return $json;
     } 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 eliminarAction()
 {
     try {
         $SesionUsuarioPlugin = $this->SesionUsuarioPlugin();
         $usuario_id = $SesionUsuarioPlugin->getUsuarioId();
         $EntityManagerPlugin = $this->EntityManagerPlugin();
         $ClienteAgenciaCargaBO = new ClienteAgenciaCargaBO();
         $ClienteAgenciaCargaBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $respuesta = $SesionUsuarioPlugin->isLoginAdmin();
         if ($respuesta == false) {
             return false;
         }
         //Recibe las variables del Json
         $body = $this->getRequest()->getContent();
         $json = json_decode($body, true);
         $formData = $json['formData'];
         $cliente_id = $formData['cliente_id'];
         $grid_data = $json['grid_data'];
         //Prepara el Buffer de datos antes de llamar al BO
         $ArrClienteAgenciaCargaData = array();
         foreach ($grid_data as $reg) {
             $ClienteAgenciaCargaData = new ClienteAgenciaCargaData();
             $ClienteAgenciaCargaData->setClienteId($cliente_id);
             $ClienteAgenciaCargaData->setAgenciaCargaId($reg['agencia_carga_id']);
             $ArrClienteAgenciaCargaData[] = $ClienteAgenciaCargaData;
         }
         //end foreach
         //Graba
         $result = $ClienteAgenciaCargaBO->eliminar($ArrClienteAgenciaCargaData);
         //Retorna la informacion resultante por JSON
         $response = new \stdClass();
         $response->respuesta_code = 'OK';
         /*$response->validacion_code 		= $result['validacion_code'];
         	 $response->respuesta_mensaje	= $result['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;
     }
 }