openstamanager/modules/banche/src/Banca.php

106 lines
3.1 KiB
PHP

<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace Modules\Banche;
use Common\SimpleModelTrait;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Modules\Anagrafiche\Anagrafica;
use Modules\Anagrafiche\Nazione;
class Banca extends Model
{
use SimpleModelTrait;
use SoftDeletes;
protected $table = 'co_banche';
/**
* Crea una nuovo banca.
*
* @param string $nome
* @param string $iban
* @param string $bic
*
* @return self
*/
public static function build(?Anagrafica $anagrafica = null, $nome = null, $iban = null, $bic = null)
{
$model = new static();
// Informazioni di base
$model->anagrafica()->associate($anagrafica);
$model->nome = $nome;
$model->iban = $iban;
$model->bic = $bic;
// Salvataggio delle informazioni
$model->save();
return $model;
}
public function anagrafica()
{
return $this->belongsTo(Anagrafica::class, 'id_anagrafica');
}
public function save(array $options = [])
{
$this->fixPredefined();
// Camponenti IBAN
$iban = new IBAN($this->iban);
$nazione = Nazione::where('iso2', '=', $iban->getNation())->first();
$this->id_nazione = $nazione->id;
$this->iban = $iban->getIban();
$this->bank_code = $iban->getBankCode();
$this->branch_code = $iban->getBranchCode();
$this->account_number = $iban->getAccountNumber();
$this->check_digits = $iban->getCheckDigits();
$this->national_check_digits = $iban->getNationalCheckDigits();
return parent::save($options);
}
protected function fixPredefined()
{
$predefined = isset($this->predefined) ? $this->predefined : false;
// Selezione automatica per primo record
$count = self::where('id_anagrafica', $this->id_anagrafica)
->where('id', '!=', $this->id)
->count();
if (empty($predefined) && empty($count)) {
$predefined = true;
}
if (!empty($predefined)) {
self::where('id_anagrafica', $this->id_anagrafica)
->where('id', '!=', $this->id)
->update([
'predefined' => 0,
]);
$this->attributes['predefined'] = $predefined;
}
}
}