mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:37:32 -05:00 
			
		
		
		
	* fix typo * php-cs traits * CS fixer pass * Password protect User routes * Implement checks to prevent editing a deleted record * Clean up payment flows * Fixes for tests
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			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\Invoice;
 | 
						|
 | 
						|
use App\Jobs\Client\UpdateClientBalance;
 | 
						|
use App\Jobs\Client\UpdateClientPaidToDate;
 | 
						|
use App\Jobs\Company\UpdateCompanyLedgerWithInvoice;
 | 
						|
use App\Jobs\Company\UpdateCompanyLedgerWithPayment;
 | 
						|
use App\Jobs\Util\SystemLogger;
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
use App\Models\Company;
 | 
						|
use App\Models\Invoice;
 | 
						|
use App\Models\Payment;
 | 
						|
use App\Models\SystemLog;
 | 
						|
use App\Utils\Traits\SystemLogTrait;
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Contracts\Queue\ShouldQueue;
 | 
						|
use Illuminate\Foundation\Bus\Dispatchable;
 | 
						|
use Illuminate\Queue\InteractsWithQueue;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class ReverseInvoicePayment implements ShouldQueue
 | 
						|
{
 | 
						|
    use SystemLogTrait, Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
 | 
						|
 | 
						|
    public $payment;
 | 
						|
    
 | 
						|
    private $company;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create the event listener.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct(Payment $payment, Company $company)
 | 
						|
    {
 | 
						|
        $this->payment = $payment;
 | 
						|
        $this->company = $company;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handle the event.
 | 
						|
     *
 | 
						|
     * @param  object  $event
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function handle()
 | 
						|
    {
 | 
						|
        MultiDB::setDB($this->company->db);
 | 
						|
 | 
						|
        $invoices = $this->payment->invoices()->get();
 | 
						|
        $client = $this->payment->client;
 | 
						|
 | 
						|
        $invoices->each(function ($invoice) {
 | 
						|
            if ($invoice->pivot->amount > 0) {
 | 
						|
                $invoice->status_id = Invoice::STATUS_SENT;
 | 
						|
                $invoice->balance = $invoice->pivot->amount;
 | 
						|
                $invoice->save();
 | 
						|
            }
 | 
						|
        });
 | 
						|
 | 
						|
        UpdateCompanyLedgerWithPayment::dispatchNow($this->payment, ($this->payment->amount), $this->company);
 | 
						|
 | 
						|
        UpdateClientBalance::dispatchNow($client, $this->payment->amount, $this->company);
 | 
						|
 | 
						|
        UpdateClientPaidToDate::dispatchNow($client, $this->payment->amount*-1, $this->company);
 | 
						|
    }
 | 
						|
}
 |