1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Repositories/ExpenseRepository.php

162 lines
4.0 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Repositories;
use App\Factory\ExpenseFactory;
2022-05-11 08:29:56 +02:00
use App\Libraries\Currency\Conversion\CurrencyApi;
use App\Models\Expense;
use App\Utils\Traits\GeneratesCounter;
use Carbon\Exceptions\InvalidFormatException;
use Illuminate\Database\QueryException;
2023-02-16 02:36:09 +01:00
use Illuminate\Support\Carbon;
/**
* ExpenseRepository.
*/
class ExpenseRepository extends BaseRepository
{
use GeneratesCounter;
private $completed = true;
/**
* Saves the expense and its contacts.
*
* @param array $data The data
* @param \App\Models\Expense $expense The expense
*
2023-02-16 02:36:09 +01:00
* @return \App\Models\Expense
*/
public function save(array $data, Expense $expense): Expense
{
$expense->fill($data);
2022-05-11 08:29:56 +02:00
if (!$expense->id) {
2022-05-11 08:29:56 +02:00
$expense = $this->processExchangeRates($data, $expense);
}
2022-05-11 08:29:56 +02:00
2023-02-16 02:36:09 +01:00
if (empty($expense->number)) {
$expense = $this->findAndSaveNumber($expense);
2023-02-16 02:36:09 +01:00
}
2023-02-01 04:12:44 +01:00
$expense->saveQuietly();
2020-10-12 22:42:02 +02:00
if (array_key_exists('documents', $data)) {
$this->saveDocuments($data['documents'], $expense);
}
return $expense;
}
/**
* Store expenses in bulk.
*
* @param array $expense
*
2020-11-03 14:34:24 +01:00
* @return \App\Models\Expense|null
*/
public function create($expense): ?Expense
{
2023-10-09 06:16:35 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
return $this->save(
$expense,
2023-10-09 06:16:35 +02:00
ExpenseFactory::create($user->company()->id, $user->id)
);
}
2022-05-11 08:29:56 +02:00
/**
2023-02-16 02:36:09 +01:00
* @param mixed $data
* @param mixed $expense
* @return Expense
* @throws InvalidFormatException
*/
public function processExchangeRates($data, $expense): Expense
2022-05-11 08:29:56 +02:00
{
if (array_key_exists('exchange_rate', $data) && isset($data['exchange_rate']) && $data['exchange_rate'] != 1) {
2022-05-11 08:29:56 +02:00
return $expense;
}
$expense_currency = $data['currency_id'];
$company_currency = $expense->company->settings->currency_id;
if ($company_currency != $expense_currency) {
$exchange_rate = new CurrencyApi();
$expense->exchange_rate = $exchange_rate->exchangeRate($expense_currency, $company_currency, Carbon::parse($expense->date));
return $expense;
}
2022-05-11 08:29:56 +02:00
return $expense;
}
public function delete($expense) :Expense
{
if ($expense->transaction()->exists()) {
$exp_ids = collect(explode(',', $expense->transaction->expense_id))->filter(function ($id) use ($expense) {
return $id != $expense->hashed_id;
})->implode(',');
$expense->transaction_id = null;
$expense->saveQuietly();
$expense->transaction->expense_id = $exp_ids;
2023-08-29 05:40:35 +02:00
if(strlen($exp_ids) <= 2) {
$expense->transaction->status_id = 1;
}
$expense->transaction->saveQuietly();
}
parent::delete($expense);
return $expense;
}
/**
* Handle race conditions when creating expense numbers
*
* @param Expense $expense
* @return \App\Models\Expense
*/
private function findAndSaveNumber($expense): Expense
{
$x = 1;
do {
try {
$expense->number = $this->getNextExpenseNumber($expense);
$expense->saveQuietly();
$this->completed = false;
} catch (QueryException $e) {
$x++;
2023-02-16 02:36:09 +01:00
if ($x > 50) {
$this->completed = false;
2023-02-16 02:36:09 +01:00
}
}
} while ($this->completed);
return $expense;
}
}