Files
crm.twinpol.com/modules/EcmTransactions/RemoveRelations.php

8 lines
251 B
PHP
Raw Permalink Normal View History

2025-05-12 15:44:39 +00:00
<?php
if($_REQUEST['record']!=''){
$t=new EcmTransaction();
$t->retrieve($_REQUEST['record']);
$t->RemoveRelations();
}
header('Location: index.php?module=EcmTransactions&action=DetailView&record='.$_REQUEST['record']);
?>