2016-07-14 22:37:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Ninja\Repositories;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-11-05 23:37:04 +01:00
|
|
|
use DB;
|
|
|
|
use App\Models\TaxRate;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* Class TaxRateRepository
|
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
class TaxRateRepository extends BaseRepository
|
2015-03-16 22:45:25 +01:00
|
|
|
{
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
public function getClassName()
|
|
|
|
{
|
|
|
|
return 'App\Models\TaxRate';
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* @param $accountId
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* @param array $data
|
|
|
|
* @param TaxRate|null $taxRate
|
|
|
|
*
|
|
|
|
* @return TaxRate|mixed
|
|
|
|
*/
|
|
|
|
public function save(array $data, TaxRate $taxRate = null)
|
2016-02-03 15:03:56 +01:00
|
|
|
{
|
2016-05-02 19:42:13 +02:00
|
|
|
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();
|
2016-02-03 15:03:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$taxRate->fill($data);
|
|
|
|
$taxRate->save();
|
|
|
|
|
|
|
|
return $taxRate;
|
|
|
|
}
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|