mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
f59585dd62
* Update client paid to date job: * Backup Invoice HTML when invoice is marked as sent and paid * Store HTML of invoice when invoice was paid * Fix foreign keys in db schema * V2 Endpoints for Company Migrations * Fixes for tests
51 lines
878 B
PHP
51 lines
878 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Jobs\Client;
|
|
|
|
|
|
use App\Models\Client;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
class UpdateClientPaidToDate
|
|
{
|
|
use Dispatchable;
|
|
|
|
protected $amount;
|
|
|
|
protected $client;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
|
|
public function __construct(Client $client, $amount)
|
|
{
|
|
$this->amount = $amount;
|
|
$this->client = $client;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
|
|
$this->client->paid_to_date += $this->amount;
|
|
$this->client->save();
|
|
|
|
}
|
|
}
|