public static function requestDeleteFabricante() { try { $fabricante = $_POST['fabricante']; $id_empreendimento = $_POST['id_empreendimento']; $ReferenciaIntegracaoDao = new ReferenciaIntegracaoDao(); $ReferenciaIntegracaoTO = new ReferenciaIntegracaoTO(); $ReferenciaIntegracaoTO->sistema_integrado = 'PrestaShop'; $ReferenciaIntegracaoTO->tabela = 'tbl_fabricante'; $ReferenciaIntegracaoTO->id_item_referencia = $fabricante['id']; $ReferenciaIntegracaoTO->tipo = 'fabricante'; $ReferenciaIntegracaoTO->id_empreendimento = $id_empreendimento; $referencia = $ReferenciaIntegracaoDao->refExists($ReferenciaIntegracaoTO, true); if ($referencia) { $FabricanteDao = new FabricanteDao(); if (!$FabricanteDao->deleteFabricante($referencia['id_item'])) { throw new Exception('Erro ao deletar fabricante', 1); } $obj = new stdClass(); $obj->flg_excluido = 1; $ReferenciaIntegracaoDao->updateRef($obj, 'id=' . $referencia['id']); } else { throw new Exception('Não existe uma referencia para o fabricante #' . $fabricante['id'], 1); } } 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 deleteFabricante($id) { $FabricanteDao = new FabricanteDao(); if (is_numeric($id)) { if ($FabricanteDao->deleteFabricante($id)) { Flight::halt(200, ''); } else { Flight::halt(500, 'erro ao excluir'); } } else { Flight::halt(406, 'parametro recusado'); } }