mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01: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
|
||||
|
||||
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()
|
||||
|
Loading…
Reference in New Issue
Block a user