mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-01 05:54:36 -04:00
Fixes for testS
This commit is contained in:
parent
f4a66dd75b
commit
d6b58fe5b8
@ -44,17 +44,19 @@ class TriggeredActions extends AbstractService
|
|||||||
{
|
{
|
||||||
//the request may have buried in it additional actions we should automatically perform on the invoice
|
//the request may have buried in it additional actions we should automatically perform on the invoice
|
||||||
|
|
||||||
if($request->has('send_email')) {
|
if($this->request->has('send_email')) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if($request->has('auto_bill')) {
|
if($this->request->has('auto_bill')) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if($request->has('paid')) {
|
if($this->request->has('paid')) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this->invoice;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function sendEmail()
|
private function sendEmail()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user