Skip to content
Snippets Groups Projects
Commit b1cf164e authored by Regis Houssin's avatar Regis Houssin
Browse files

Add a common function to delete the linked contact

parent be94ad3d
No related branches found
No related tags found
No related merge requests found
......@@ -517,8 +517,23 @@ class Fichinter extends CommonObject
function delete($user)
{
global $conf;
$error=0;
$this->db->begin();
if (! $error)
{
// Delete linked contacts
$res = $this->delete_linked_contact();
if ($res < 0)
{
$this->error='ErrorFailToDeleteLinkedContact';
//$error++;
$this->db->rollback();
return 0;
}
}
$sql = "DELETE FROM ".MAIN_DB_PREFIX."fichinterdet";
$sql.= " WHERE fk_fichinter = ".$this->id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment