New: add trigger PAYMENT_DELETE

This commit is contained in:
Regis Houssin
2011-06-16 10:32:41 +00:00
parent b22a7ce335
commit 403302e5b5
2 changed files with 19 additions and 1 deletions

View File

@@ -372,6 +372,10 @@ class InterfaceDemo
dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
}
elseif ($action == 'PAYMENT_ADD_TO_BANK')
{
dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
}
elseif ($action == 'PAYMENT_DELETE')
{
dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
}