public function getComboDataGridAction()
 {
     try {
         $EntityManagerPlugin = $this->EntityManagerPlugin();
         $GradoBO = new GradoBO();
         $GradoBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $request = $this->getRequest();
         $opciones = utf8_encode($GradoBO->getComboDataGrid());
         $response = $this->getResponse();
         $response->setContent($opciones);
         return $response;
     } 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 initcontrolsAction()
 {
     try {
         $EntityManagerPlugin = $this->EntityManagerPlugin();
         $SesionUsuarioPlugin = $this->SesionUsuarioPlugin();
         $SesionUsuarioPlugin->isLoginAdmin();
         $body = $this->getRequest()->getContent();
         $json = json_decode($body, true);
         $opcion = $json['opcion'];
         switch ($opcion) {
             case 'mantenimiento':
                 $InventarioBO = new InventarioBO();
                 $TipoCajaBO = new TipoCajaBO();
                 $InventarioBO->setEntityManager($EntityManagerPlugin->getEntityManager());
                 $TipoCajaBO->setEntityManager($EntityManagerPlugin->getEntityManager());
                 $inventario_1er_elemento = $json['inventario_1er_elemento'];
                 $inventario_id = null;
                 $tipo_caja_1er_elemento = $json['tipo_caja_1er_elemento'];
                 $tipo_caja_id = null;
                 $inventario_opciones = $InventarioBO->getCombo($inventario_id, $inventario_1er_elemento);
                 $tipocaja_opciones = $TipoCajaBO->getCombo($tipo_caja_id, $tipo_caja_1er_elemento);
                 $response = new \stdClass();
                 $response->inventario_opciones = $inventario_opciones;
                 $response->tipocaja_opciones = $tipocaja_opciones;
                 $response->respuesta_code = 'OK';
                 break;
             case 'actualizacion-masiva':
                 $TipoCajaMatrizBO = new TipoCajaMatrizBO();
                 $GradoBO = new GradoBO();
                 $TipoCajaMatrizBO->setEntityManager($EntityManagerPlugin->getEntityManager());
                 $GradoBO->setEntityManager($EntityManagerPlugin->getEntityManager());
                 $variedad_1er_elemento = $json['variedad_1er_elemento'];
                 $variedad_id = null;
                 $grado_1er_elemento = $json['grado_1er_elemento'];
                 $grado_id = null;
                 $inventario_id = $json['inventario_id'];
                 $tipo_caja_id = $json['tipo_caja_id'];
                 //Se debe de obtener las variedades de acuerdo al tipo de inventario  $inventario_id, $variedad_id, $variedad_1er_elemento
                 $variedad_opciones = $TipoCajaMatrizBO->getComboVariedad($tipo_caja_id, $inventario_id, $variedad_id, $variedad_1er_elemento);
                 $grado_opciones = $GradoBO->getCombo($grado_id, $grado_1er_elemento);
                 $response = new \stdClass();
                 $response->variedad_opciones = $variedad_opciones;
                 $response->grado_opciones = $grado_opciones;
                 $response->respuesta_code = 'OK';
                 break;
             case 'caja-matriz':
                 $TipoCajaBO = new TipoCajaBO();
                 $InventarioBO = new InventarioBO();
                 $TamanoBunchBO = new TamanoBunchBO();
                 $TipoCajaBO->setEntityManager($EntityManagerPlugin->getEntityManager());
                 $InventarioBO->setEntityManager($EntityManagerPlugin->getEntityManager());
                 $TamanoBunchBO->setEntityManager($EntityManagerPlugin->getEntityManager());
                 $tipo_caja_id = $json['tipo_caja_id'];
                 $inventario_id = $json['inventario_id'];
                 $tamano_bunch_id = $json['tamano_bunch_id'];
                 $inventario_opciones = $InventarioBO->getCombo($inventario_id);
                 $tipocaja_opciones = $TipoCajaBO->getCombo($tipo_caja_id);
                 $tamano_bunch_opciones = $TamanoBunchBO->getCombo($tamano_bunch_id);
                 $response = new \stdClass();
                 $response->tipocaja_opciones = $tipocaja_opciones;
                 $response->inventario_opciones = $inventario_opciones;
                 $response->tamano_bunch_opciones = $tamano_bunch_opciones;
                 $response->respuesta_code = 'OK';
         }
         //end switch
         $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 getcombosofertasAction()
 {
     try {
         $EntityManagerPlugin = $this->EntityManagerPlugin();
         $config = $this->getServiceLocator()->get('Config');
         $GrupoPrecioCabBO = new GrupoPrecioCabBO();
         $ProductoBO = new ProductoBO();
         $GradoBO = new GradoBO();
         $SesionUsuarioPlugin = $this->SesionUsuarioPlugin();
         $SesionUsuarioPlugin->isLoginAdmin();
         $GrupoPrecioCabBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $ProductoBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $GradoBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $body = $this->getRequest()->getContent();
         $json = json_decode($body, true);
         $grupo_precio_cab_id = $json['grupo_precio_cab_id'];
         $producto_combo_id = $json['producto_combo_id'];
         $variedad_id = null;
         $grado_id = null;
         $producto_combo_1er_elemento = $json['producto_combo_1er_elemento'];
         $producto_opciones = $ProductoBO->getComboProductoId($producto_combo_id, $producto_combo_1er_elemento);
         $variedad_opciones = $GrupoPrecioCabBO->getComboVariedad($producto_combo_id, $variedad_id, $grupo_precio_cab_id);
         $grado_opciones = $GradoBO->getCombo($grado_id);
         $response = new \stdClass();
         $response->producto_opciones = $producto_opciones;
         $response->variedad_opciones = $variedad_opciones;
         $response->grado_opciones = $grado_opciones;
         $response->respuesta_code = 'OK';
         $response->validacion_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 getCombosDataGridAction()
 {
     try {
         $EntityManagerPlugin = $this->EntityManagerPlugin();
         $TipoCajaBO = new TipoCajaBO();
         $InventarioBO = new InventarioBO();
         $GradoBO = new GradoBO();
         $TipoCajaBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $InventarioBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $GradoBO->setEntityManager($EntityManagerPlugin->getEntityManager());
         $request = $this->getRequest();
         $opciones_tipo_caja = utf8_encode($TipoCajaBO->getComboDataGrid());
         $opciones_inventario = utf8_encode($InventarioBO->getComboDataGrid());
         $opciones_grado = utf8_encode($GradoBO->getComboDataGrid());
         $response = new \stdClass();
         $response->respuesta_code = 'OK';
         $response->opciones_tipo_caja = $opciones_tipo_caja;
         $response->opciones_inventario = $opciones_inventario;
         $response->opciones_grado = $opciones_grado;
         $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;
     }
 }