mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
89 lines
2.2 KiB
PHP
89 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Repositories;
|
|
|
|
use App\Models\TaxRate;
|
|
use DB;
|
|
use Utils;
|
|
|
|
class TaxRateRepository extends BaseRepository
|
|
{
|
|
public function getClassName()
|
|
{
|
|
return 'App\Models\TaxRate';
|
|
}
|
|
|
|
public function all()
|
|
{
|
|
return TaxRate::scope()->get();
|
|
}
|
|
|
|
public function find($accountId)
|
|
{
|
|
return DB::table('tax_rates')
|
|
->where('tax_rates.account_id', '=', $accountId)
|
|
->where('tax_rates.deleted_at', '=', null)
|
|
->select(
|
|
'tax_rates.public_id',
|
|
'tax_rates.name',
|
|
'tax_rates.rate',
|
|
'tax_rates.deleted_at',
|
|
'tax_rates.is_inclusive'
|
|
);
|
|
}
|
|
|
|
public function save($data, $taxRate = null)
|
|
{
|
|
if ($taxRate) {
|
|
// do nothing
|
|
} elseif (isset($data['public_id'])) {
|
|
$taxRate = TaxRate::scope($data['public_id'])->firstOrFail();
|
|
\Log::warning('Entity not set in tax rate repo save');
|
|
} else {
|
|
$taxRate = TaxRate::createNew();
|
|
}
|
|
|
|
$taxRate->fill($data);
|
|
$taxRate->save();
|
|
|
|
return $taxRate;
|
|
}
|
|
|
|
/*
|
|
public function save($taxRates)
|
|
{
|
|
$taxRateIds = [];
|
|
|
|
foreach ($taxRates as $record) {
|
|
if (!isset($record->rate) || (isset($record->is_deleted) && $record->is_deleted)) {
|
|
continue;
|
|
}
|
|
|
|
if (!isset($record->name) || !trim($record->name)) {
|
|
continue;
|
|
}
|
|
|
|
if ($record->public_id) {
|
|
$taxRate = TaxRate::scope($record->public_id)->firstOrFail();
|
|
} else {
|
|
$taxRate = TaxRate::createNew();
|
|
}
|
|
|
|
$taxRate->rate = Utils::parseFloat($record->rate);
|
|
$taxRate->name = trim($record->name);
|
|
$taxRate->save();
|
|
|
|
$taxRateIds[] = $taxRate->public_id;
|
|
}
|
|
|
|
$taxRates = TaxRate::scope()->get();
|
|
|
|
foreach ($taxRates as $taxRate) {
|
|
if (!in_array($taxRate->public_id, $taxRateIds)) {
|
|
$taxRate->delete();
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
}
|