public static function requestDeleteCategoria() { try { $categoria = $_POST['categoria']; $id_empreendimento = $_POST['id_empreendimento']; $CategoriaDao = new CategoriaDao(); $ReferenciaIntegracaoDao = new ReferenciaIntegracaoDao(); $ReferenciaIntegracaoTO = new ReferenciaIntegracaoTO(); $ReferenciaIntegracaoTO->sistema_integrado = 'PrestaShop'; $ReferenciaIntegracaoTO->tabela = 'tbl_categorias'; $ReferenciaIntegracaoTO->id_item_referencia = $categoria['id']; $ReferenciaIntegracaoTO->tipo = 'categoria'; $ReferenciaIntegracaoTO->id_empreendimento = $id_empreendimento; $referencia = $ReferenciaIntegracaoDao->refExists($ReferenciaIntegracaoTO, true); if (!$referencia) { throw new Exception('Não existe uma referencia para a categoria #' . $categoria['id'], 1); } if (!$CategoriaDao->deleteCategoria($referencia['id_item'])) { throw new Exception('Não ao excluir categoria', 1); } $obj = new stdClass(); $obj->flg_excluido = 1; $ReferenciaIntegracaoDao->updateRef($obj, 'id=' . $referencia['id']); } catch (Exception $e) { $log = new KLogger("logs/logErrorPrestaShop.txt", KLogger::DEBUG); $log->LogError($e->getMessage() . ' - line:' . $e->getLine()); $log->LogDebug(json_encode($_POST)); $log->LogJunp(); Flight::halt(500, $e->getMessage()); } }
public static function deleteCategoria($id) { $CategoriaDao = new CategoriaDao(); if (is_numeric($id)) { if ($CategoriaDao->deleteCategoria($id)) { Flight::halt(200, ''); } else { Flight::halt(500, 'erro ao excluir'); } } else { Flight::halt(406, 'parametro recusado'); } }