Allow sending emails even when the invoice is a draft

This commit is contained in:
Chl 2021-11-28 01:00:40 +01:00
parent 4c49334c31
commit faa9dcaa6c
2 changed files with 6 additions and 3 deletions

View file

@ -90,9 +90,9 @@ class Actionssendrecurringinvoicebymail
return -1; return -1;
} }
// We only send the mail when the invoice is not a draft // Abort sending when inactive
// and the sending is enabled for the template. // (draft invoice or explictly disabled)
if ($object->brouillon || !$mailObject->active) { if (!$mailObject->active) {
return 0; return 0;
} }

View file

@ -368,6 +368,9 @@ class SRIBMCustomMailInfo extends CommonObject
$this->subject = $template->topic; $this->subject = $template->topic;
$this->body = $template->content; $this->body = $template->content;
$this->addmaindocfile = $template->joinfiles; $this->addmaindocfile = $template->joinfiles;
// By default, we don't send emails when the generated invoice is
// still a draft.
$this->active = $this->fac_rec_object->auto_validate;
} }
return 1; return 1;