Correzioni per l'utilizzo delle classi v2.4.10 (#676)
This commit is contained in:
parent
330cbb290c
commit
3d94b0d005
|
@ -66,7 +66,8 @@
|
|||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"": "src/"
|
||||
"": "src/",
|
||||
"Update\\": "update/"
|
||||
},
|
||||
"files": [
|
||||
"lib/functions.php",
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
<?php
|
||||
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Update\v2_4_10\Anagrafica;
|
||||
use Update\v2_4_10\Fattura;
|
||||
|
||||
// Fix del calcolo del bollo
|
||||
$fatture = \Modules\Fatture\Fattura::all();
|
||||
$fatture = Fattura::all();
|
||||
foreach ($fatture as $fattura) {
|
||||
$fattura->manageRigaMarcaDaBollo();
|
||||
}
|
||||
|
|
|
@ -219,7 +219,7 @@ foreach ($files as $key => $value) {
|
|||
|
||||
delete($files);
|
||||
|
||||
//Calcolo la descrizione per il nuovo campo descrizione in scadenzario
|
||||
// Calcolo la descrizione per il nuovo campo descrizione in scadenzario
|
||||
$rs = $dbo->fetchArray('SELECT * FROM co_scadenziario');
|
||||
|
||||
for ($i = 0; $i < sizeof($rs); ++$i) {
|
||||
|
|
|
@ -0,0 +1,291 @@
|
|||
<?php
|
||||
|
||||
namespace Update\v2_4_10;
|
||||
|
||||
use Common\Model;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
use Modules\Fatture\Fattura;
|
||||
use Modules\TipiIntervento\Tipo as TipoSessione;
|
||||
use Settings;
|
||||
use Traits\RecordTrait;
|
||||
use Util\Generator;
|
||||
|
||||
class Anagrafica extends Model
|
||||
{
|
||||
use RecordTrait;
|
||||
use SoftDeletes;
|
||||
|
||||
protected $table = 'an_anagrafiche';
|
||||
protected $primaryKey = 'idanagrafica';
|
||||
protected $module = 'Anagrafiche';
|
||||
|
||||
protected $guarded = [];
|
||||
|
||||
protected $appends = [
|
||||
'id',
|
||||
'partita_iva',
|
||||
];
|
||||
|
||||
protected $hidden = [
|
||||
'idanagrafica',
|
||||
'piva',
|
||||
];
|
||||
|
||||
/**
|
||||
* Crea una nuova anagrafica.
|
||||
*
|
||||
* @param string $ragione_sociale
|
||||
* @param array $tipologie
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public static function build($ragione_sociale, $nome = '', $cognome = '', array $tipologie = [])
|
||||
{
|
||||
$model = parent::build();
|
||||
|
||||
$model->ragione_sociale = $ragione_sociale;
|
||||
|
||||
$model->nome = $nome;
|
||||
$model->cognome = $cognome;
|
||||
|
||||
$model->codice = static::getNextCodice();
|
||||
$model->id_ritenuta_acconto_vendite = setting("Percentuale ritenuta d'acconto");
|
||||
$model->save();
|
||||
|
||||
$model->tipologie = $tipologie;
|
||||
$model->save();
|
||||
|
||||
return $model;
|
||||
}
|
||||
|
||||
public static function fromTipo($type)
|
||||
{
|
||||
$tipologia = TipoAnagrafica::where('descrizione', 'Tecnico')->first();
|
||||
|
||||
$anagrafiche = self::whereHas('tipi', function ($query) use ($tipologia) {
|
||||
$query->where('an_tipianagrafiche.idtipoanagrafica', '=', $tipologia->id);
|
||||
});
|
||||
|
||||
return $anagrafiche;
|
||||
}
|
||||
|
||||
public static function fixAzienda(Anagrafica $anagrafica)
|
||||
{
|
||||
Settings::setValue('Azienda predefinita', $anagrafica->id);
|
||||
}
|
||||
|
||||
public static function fixCliente(Anagrafica $anagrafica)
|
||||
{
|
||||
$database = database();
|
||||
|
||||
// Creo il relativo conto nel partitario se non esiste
|
||||
if (empty($anagrafica->idconto_cliente)) {
|
||||
// Calcolo prossimo numero cliente
|
||||
$rs = $database->fetchArray("SELECT MAX(CAST(co_pianodeiconti3.numero AS UNSIGNED)) AS max_numero FROM co_pianodeiconti3 INNER JOIN co_pianodeiconti2 ON co_pianodeiconti3.idpianodeiconti2=co_pianodeiconti2.id WHERE co_pianodeiconti2.descrizione='Crediti clienti e crediti diversi'");
|
||||
$new_numero = $rs[0]['max_numero'] + 1;
|
||||
$new_numero = str_pad($new_numero, 6, '0', STR_PAD_LEFT);
|
||||
|
||||
$database->query('INSERT INTO co_pianodeiconti3(numero, descrizione, idpianodeiconti2, can_delete, can_edit) VALUES('.prepare($new_numero).', '.prepare($anagrafica->ragione_sociale).", (SELECT id FROM co_pianodeiconti2 WHERE descrizione='Crediti clienti e crediti diversi'), 1, 1)");
|
||||
$idconto = $database->lastInsertedID();
|
||||
|
||||
// Collegamento conto
|
||||
$anagrafica->idconto_cliente = $idconto;
|
||||
$anagrafica->save();
|
||||
}
|
||||
}
|
||||
|
||||
public static function fixFornitore(Anagrafica $anagrafica)
|
||||
{
|
||||
$database = database();
|
||||
|
||||
// Creo il relativo conto nel partitario se non esiste
|
||||
if (empty($anagrafica->idconto_fornitore)) {
|
||||
// Calcolo prossimo numero cliente
|
||||
$rs = $database->fetchArray("SELECT MAX(CAST(co_pianodeiconti3.numero AS UNSIGNED)) AS max_numero FROM co_pianodeiconti3 INNER JOIN co_pianodeiconti2 ON co_pianodeiconti3.idpianodeiconti2=co_pianodeiconti2.id WHERE co_pianodeiconti2.descrizione='Debiti fornitori e debiti diversi'");
|
||||
$new_numero = $rs[0]['max_numero'] + 1;
|
||||
$new_numero = str_pad($new_numero, 6, '0', STR_PAD_LEFT);
|
||||
|
||||
$database->query('INSERT INTO co_pianodeiconti3(numero, descrizione, idpianodeiconti2, can_delete, can_edit) VALUES('.prepare($new_numero).', '.prepare($anagrafica->ragione_sociale).", (SELECT id FROM co_pianodeiconti2 WHERE descrizione='Debiti fornitori e debiti diversi'), 1, 1)");
|
||||
$idconto = $database->lastInsertedID();
|
||||
|
||||
// Collegamento conto
|
||||
$anagrafica->idconto_fornitore = $idconto;
|
||||
$anagrafica->save();
|
||||
}
|
||||
}
|
||||
|
||||
public static function fixTecnico(Anagrafica $anagrafica)
|
||||
{
|
||||
$database = database();
|
||||
|
||||
$presenti = $database->fetchArray('SELECT idtipointervento AS id FROM in_tariffe WHERE idtecnico = '.prepare($anagrafica->id));
|
||||
|
||||
// Aggiunta associazioni costi unitari al contratto
|
||||
$tipi = TipoSessione::whereNotIn('idtipointervento', array_column($presenti, 'id'))->get();
|
||||
|
||||
foreach ($tipi as $tipo) {
|
||||
$database->insert('in_tariffe', [
|
||||
'idtecnico' => $anagrafica->id,
|
||||
'idtipointervento' => $tipo->id,
|
||||
'costo_ore' => $tipo->costo_orario,
|
||||
'costo_km' => $tipo->costo_km,
|
||||
'costo_dirittochiamata' => $tipo->costo_diritto_chiamata,
|
||||
'costo_ore_tecnico' => $tipo->costo_orario_tecnico,
|
||||
'costo_km_tecnico' => $tipo->costo_km_tecnico,
|
||||
'costo_dirittochiamata_tecnico' => $tipo->costo_diritto_chiamata_tecnico,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Aggiorna la tipologia dell'anagrafica.
|
||||
*
|
||||
* @param array $tipologie
|
||||
*/
|
||||
public function setTipologieAttribute(array $tipologie)
|
||||
{
|
||||
if ($this->isAzienda()) {
|
||||
$tipologie[] = TipoAnagrafica::where('descrizione', 'Azienda')->first()->id;
|
||||
}
|
||||
|
||||
$tipologie = array_clean($tipologie);
|
||||
|
||||
$previous = $this->tipi()->get();
|
||||
$this->tipi()->sync($tipologie);
|
||||
$actual = $this->tipi()->get();
|
||||
|
||||
$diff = $actual->diff($previous);
|
||||
|
||||
foreach ($diff as $tipo) {
|
||||
$method = 'fix'.$tipo->descrizione;
|
||||
if (method_exists($this, $method)) {
|
||||
self::$method($this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Controlla se l'anagrafica è di tipo 'Azienda'.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isAzienda()
|
||||
{
|
||||
return $this->isTipo('Azienda');
|
||||
}
|
||||
|
||||
/**
|
||||
* Controlla se l'anagrafica è di tipo 'Azienda'.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isTipo($type)
|
||||
{
|
||||
return $this->tipi()->get()->search(function ($item, $key) use ($type) {
|
||||
return $item->descrizione == $type;
|
||||
}) !== false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restituisce l'identificativo.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getIdAttribute()
|
||||
{
|
||||
return $this->idanagrafica;
|
||||
}
|
||||
|
||||
public function getPartitaIvaAttribute()
|
||||
{
|
||||
return $this->piva;
|
||||
}
|
||||
|
||||
public function setPartitaIvaAttribute($value)
|
||||
{
|
||||
$this->attributes['piva'] = trim(strtoupper($value));
|
||||
}
|
||||
|
||||
public function setNomeAttribute($value)
|
||||
{
|
||||
$this->attributes['nome'] = trim($value);
|
||||
|
||||
$this->fixRagioneSociale();
|
||||
}
|
||||
|
||||
public function setCognomeAttribute($value)
|
||||
{
|
||||
$this->attributes['cognome'] = trim($value);
|
||||
|
||||
$this->fixRagioneSociale();
|
||||
}
|
||||
|
||||
public function setCodiceFiscaleAttribute($value)
|
||||
{
|
||||
$this->attributes['codice_fiscale'] = trim(strtoupper($value));
|
||||
}
|
||||
|
||||
public function setCodiceDestinatarioAttribute($value)
|
||||
{
|
||||
if ($this->tipo == 'Privato' || in_array($value, ['999999', '0000000']) || $this->sedeLegale->nazione->iso2 != 'IT') {
|
||||
$codice_destinatario = '';
|
||||
} else {
|
||||
$codice_destinatario = $value;
|
||||
}
|
||||
|
||||
$this->attributes['codice_destinatario'] = trim(strtoupper($codice_destinatario));
|
||||
}
|
||||
|
||||
public function tipi()
|
||||
{
|
||||
return $this->belongsToMany(TipoAnagrafica::class, 'an_tipianagrafiche_anagrafiche', 'idanagrafica', 'idtipoanagrafica');
|
||||
}
|
||||
|
||||
public function fatture()
|
||||
{
|
||||
return $this->hasMany(Fattura::class, 'idanagrafica');
|
||||
}
|
||||
|
||||
public function nazione()
|
||||
{
|
||||
return $this->belongsTo(Nazione::class, 'id_nazione');
|
||||
}
|
||||
|
||||
/**
|
||||
* Restituisce la sede legale collegata.
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function getSedeLegaleAttribute()
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
// Metodi statici
|
||||
|
||||
/**
|
||||
* Calcola il nuovo codice di anagrafica.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function getNextCodice()
|
||||
{
|
||||
// Recupero maschera per le anagrafiche
|
||||
$maschera = setting('Formato codice anagrafica');
|
||||
|
||||
$ultimo = Generator::getPreviousFrom($maschera, 'an_anagrafiche', 'codice', [
|
||||
"codice != ''",
|
||||
'deleted_at IS NULL',
|
||||
]);
|
||||
$codice = Generator::generate($maschera, $ultimo);
|
||||
|
||||
return $codice;
|
||||
}
|
||||
|
||||
protected function fixRagioneSociale()
|
||||
{
|
||||
if (!empty($this->cognome) || !empty($this->nome)) {
|
||||
$this->ragione_sociale = $this->cognome.' '.$this->nome;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,583 @@
|
|||
<?php
|
||||
|
||||
namespace Update\v2_4_10;
|
||||
|
||||
use Auth;
|
||||
use Common\Document;
|
||||
use Modules\Pagamenti\Pagamento;
|
||||
use Modules\RitenuteContributi\RitenutaContributi;
|
||||
use Plugins\ExportFE\FatturaElettronica;
|
||||
use Traits\RecordTrait;
|
||||
use Util\Generator;
|
||||
|
||||
class Fattura extends Document
|
||||
{
|
||||
use RecordTrait;
|
||||
|
||||
protected $table = 'co_documenti';
|
||||
|
||||
protected $casts = [
|
||||
'bollo' => 'float',
|
||||
];
|
||||
|
||||
/**
|
||||
* Crea una nuova fattura.
|
||||
*
|
||||
* @param Anagrafica $anagrafica
|
||||
* @param TipoFattura $tipo_documento
|
||||
* @param string $data
|
||||
* @param int $id_segment
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public static function build(Anagrafica $anagrafica, TipoFattura $tipo_documento, $data, $id_segment)
|
||||
{
|
||||
$model = parent::build();
|
||||
|
||||
$user = Auth::user();
|
||||
|
||||
$stato_documento = Stato::where('descrizione', 'Bozza')->first();
|
||||
|
||||
$id_anagrafica = $anagrafica->id;
|
||||
$direzione = $tipo_documento->dir;
|
||||
|
||||
$database = database();
|
||||
|
||||
if ($direzione == 'entrata') {
|
||||
$id_conto = setting('Conto predefinito fatture di vendita');
|
||||
$conto = 'vendite';
|
||||
} else {
|
||||
$id_conto = setting('Conto predefinito fatture di acquisto');
|
||||
$conto = 'acquisti';
|
||||
}
|
||||
|
||||
// Tipo di pagamento e banca predefinite dall'anagrafica
|
||||
$id_pagamento = $database->fetchOne('SELECT id FROM co_pagamenti WHERE id = :id_pagamento', [
|
||||
':id_pagamento' => $anagrafica['idpagamento_'.$conto],
|
||||
])['id'];
|
||||
$id_banca = $anagrafica['idbanca_'.$conto];
|
||||
|
||||
$split_payment = $anagrafica->split_payment;
|
||||
|
||||
// Se la fattura è di vendita e non è stato associato un pagamento predefinito al cliente leggo il pagamento dalle impostazioni
|
||||
if ($direzione == 'entrata' && empty($id_pagamento)) {
|
||||
$id_pagamento = setting('Tipo di pagamento predefinito');
|
||||
}
|
||||
|
||||
// Se non è impostata la banca dell'anagrafica, uso quella del pagamento.
|
||||
if (empty($id_banca)) {
|
||||
$id_banca = $database->fetchOne('SELECT id FROM co_banche WHERE id_pianodeiconti3 = (SELECT idconto_'.$conto.' FROM co_pagamenti WHERE id = :id_pagamento)', [
|
||||
':id_pagamento' => $id_pagamento,
|
||||
])['id'];
|
||||
}
|
||||
|
||||
$id_sede = $anagrafica->idsede_fatturazione;
|
||||
|
||||
$model->anagrafica()->associate($anagrafica);
|
||||
$model->tipo()->associate($tipo_documento);
|
||||
$model->stato()->associate($stato_documento);
|
||||
|
||||
$model->save();
|
||||
|
||||
// Salvataggio delle informazioni
|
||||
$model->data = $data;
|
||||
$model->data_registrazione = $data;
|
||||
$model->data_competenza = $data;
|
||||
$model->id_segment = $id_segment;
|
||||
|
||||
$model->idconto = $id_conto;
|
||||
|
||||
// Imposto, come sede aziendale, la prima sede disponibile come utente
|
||||
if ($direzione == 'entrata') {
|
||||
$model->idsede_destinazione = $user->sedi[0];
|
||||
} else {
|
||||
$model->idsede_partenza = $user->sedi[0];
|
||||
}
|
||||
$model->addebita_bollo = setting('Addebita marca da bollo al cliente');
|
||||
|
||||
$id_ritenuta_contributi = ($tipo_documento->dir == 'entrata') ? setting('Ritenuta contributi') : null;
|
||||
$model->id_ritenuta_contributi = $id_ritenuta_contributi ?: null;
|
||||
|
||||
if (!empty($id_pagamento)) {
|
||||
$model->idpagamento = $id_pagamento;
|
||||
}
|
||||
if (!empty($id_banca)) {
|
||||
$model->idbanca = $id_banca;
|
||||
}
|
||||
|
||||
if (!empty($split_payment)) {
|
||||
$model->split_payment = $split_payment;
|
||||
}
|
||||
|
||||
$model->save();
|
||||
|
||||
return $model;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il sezionale relativo alla fattura e calcola il relativo numero.
|
||||
* **Attenzione**: la data deve inserita prima!
|
||||
*
|
||||
* @param int $value
|
||||
*/
|
||||
public function setIdSegmentAttribute($value)
|
||||
{
|
||||
$previous = $this->id_segment;
|
||||
|
||||
$this->attributes['id_segment'] = $value;
|
||||
|
||||
// Calcolo dei numeri fattura
|
||||
if ($value != $previous) {
|
||||
$direzione = $this->tipo->dir;
|
||||
$data = $this->data;
|
||||
|
||||
$this->numero = static::getNextNumero($data, $direzione, $value);
|
||||
$this->numero_esterno = static::getNextNumeroSecondario($data, $direzione, $value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Restituisce il nome del modulo a cui l'oggetto è collegato.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getModuleAttribute()
|
||||
{
|
||||
return $this->direzione == 'entrata' ? 'Fatture di vendita' : 'Fatture di acquisto';
|
||||
}
|
||||
|
||||
public function getDirezioneAttribute()
|
||||
{
|
||||
return $this->tipo->dir;
|
||||
}
|
||||
|
||||
// Calcoli
|
||||
|
||||
/**
|
||||
* Calcola il netto a pagare della fattura.
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
public function getNettoAttribute()
|
||||
{
|
||||
return $this->calcola('netto');
|
||||
}
|
||||
|
||||
/**
|
||||
* Calcola la rivalsa INPS totale della fattura.
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
public function getRivalsaINPSAttribute()
|
||||
{
|
||||
return $this->calcola('rivalsa_inps');
|
||||
}
|
||||
|
||||
/**
|
||||
* Calcola l'IVA totale della fattura.
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
public function getIvaAttribute()
|
||||
{
|
||||
return $this->calcola('iva', 'iva_rivalsa_inps');
|
||||
}
|
||||
|
||||
/**
|
||||
* Calcola l'iva della rivalsa INPS totale della fattura.
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
public function getIvaRivalsaINPSAttribute()
|
||||
{
|
||||
return $this->calcola('iva_rivalsa_inps');
|
||||
}
|
||||
|
||||
/**
|
||||
* Calcola la ritenuta d'acconto totale della fattura.
|
||||
*
|
||||
* @return float
|
||||
*/
|
||||
public function getRitenutaAccontoAttribute()
|
||||
{
|
||||
return $this->calcola('ritenuta_acconto');
|
||||
}
|
||||
|
||||
public function getTotaleRitenutaContributiAttribute()
|
||||
{
|
||||
return $this->calcola('ritenuta_contributi');
|
||||
}
|
||||
|
||||
// Relazioni Eloquent
|
||||
|
||||
public function anagrafica()
|
||||
{
|
||||
return $this->belongsTo(Anagrafica::class, 'idanagrafica');
|
||||
}
|
||||
|
||||
public function tipo()
|
||||
{
|
||||
return $this->belongsTo(TipoFattura::class, 'idtipodocumento');
|
||||
}
|
||||
|
||||
public function pagamento()
|
||||
{
|
||||
return $this->belongsTo(Pagamento::class, 'idpagamento');
|
||||
}
|
||||
|
||||
public function stato()
|
||||
{
|
||||
return $this->belongsTo(Stato::class, 'idstatodocumento');
|
||||
}
|
||||
|
||||
public function statoFE()
|
||||
{
|
||||
return $this->belongsTo(StatoFE::class, 'codice_stato_fe');
|
||||
}
|
||||
|
||||
public function articoli()
|
||||
{
|
||||
return $this->hasMany(Components\Articolo::class, 'iddocumento');
|
||||
}
|
||||
|
||||
public function righe()
|
||||
{
|
||||
return $this->hasMany(Components\Riga::class, 'iddocumento');
|
||||
}
|
||||
|
||||
public function sconti()
|
||||
{
|
||||
return $this->hasMany(Components\Sconto::class, 'iddocumento');
|
||||
}
|
||||
|
||||
public function descrizioni()
|
||||
{
|
||||
return $this->hasMany(Components\Descrizione::class, 'iddocumento');
|
||||
}
|
||||
|
||||
public function ritenutaContributi()
|
||||
{
|
||||
return $this->belongsTo(RitenutaContributi::class, 'id_ritenuta_contributi');
|
||||
}
|
||||
|
||||
public function rigaBollo()
|
||||
{
|
||||
return $this->hasOne(Components\Riga::class, 'iddocumento')->where('id', $this->id_riga_bollo);
|
||||
}
|
||||
|
||||
// Metodi generali
|
||||
|
||||
public function getXML()
|
||||
{
|
||||
if (empty($this->progressivo_invio) && $this->module == 'Fatture di acquisto') {
|
||||
$fe = new FatturaElettronica($this->id);
|
||||
|
||||
return $fe->toXML();
|
||||
}
|
||||
|
||||
$file = $this->uploads()->where('name', 'Fattura Elettronica')->first();
|
||||
|
||||
return file_get_contents($file->filepath);
|
||||
}
|
||||
|
||||
public function isFE()
|
||||
{
|
||||
$file = $this->uploads()->where('name', 'Fattura Elettronica')->first();
|
||||
|
||||
return !empty($this->progressivo_invio) and file_exists($file->filepath);
|
||||
}
|
||||
|
||||
/**
|
||||
* Registra le scadenze della fattura elettronica collegata al documento.
|
||||
*
|
||||
* @param bool $is_pagato
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function registraScadenzeFE($is_pagato = false)
|
||||
{
|
||||
$xml = \Util\XML::read($this->getXML());
|
||||
|
||||
$pagamenti = $xml['FatturaElettronicaBody']['DatiPagamento']['DettaglioPagamento'];
|
||||
if (!empty($pagamenti)) {
|
||||
$rate = isset($pagamenti[0]) ? $pagamenti : [$pagamenti];
|
||||
|
||||
foreach ($rate as $rata) {
|
||||
$scadenza = $rata['DataScadenzaPagamento'] ?: $this->data;
|
||||
$importo = -$rata['ImportoPagamento'];
|
||||
|
||||
self::registraScadenza($this, $importo, $scadenza, $is_pagato);
|
||||
}
|
||||
}
|
||||
|
||||
return !empty($pagamenti);
|
||||
}
|
||||
|
||||
/**
|
||||
* Registra le scadenze tradizionali del gestionale.
|
||||
*
|
||||
* @param bool $is_pagato
|
||||
*/
|
||||
public function registraScadenzeTradizionali($is_pagato = false)
|
||||
{
|
||||
$rate = $this->pagamento->calcola($this->netto, $this->data);
|
||||
$direzione = $this->tipo->dir;
|
||||
|
||||
foreach ($rate as $rata) {
|
||||
$scadenza = $rata['scadenza'];
|
||||
$importo = $direzione == 'uscita' ? -$rata['importo'] : $rata['importo'];
|
||||
|
||||
self::registraScadenza($this, $importo, $scadenza, $is_pagato);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registra una specifica scadenza nel database.
|
||||
*
|
||||
* @param Fattura $fattura
|
||||
* @param float $importo
|
||||
* @param string $scadenza
|
||||
* @param bool $is_pagato
|
||||
* @param string $type
|
||||
*/
|
||||
public static function registraScadenza(Fattura $fattura, $importo, $scadenza, $is_pagato, $type = 'fattura')
|
||||
{
|
||||
//Calcolo la descrizione
|
||||
$descrizione = database()->fetchOne("SELECT CONCAT(co_tipidocumento.descrizione, CONCAT(' numero ', IF(numero_esterno!='', numero_esterno, numero))) AS descrizione FROM co_documenti INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id WHERE co_documenti.id='".$fattura->id."'")['descrizione'];
|
||||
|
||||
database()->insert('co_scadenziario', [
|
||||
'iddocumento' => $fattura->id,
|
||||
'data_emissione' => $fattura->data,
|
||||
'scadenza' => $scadenza,
|
||||
'da_pagare' => $importo,
|
||||
'tipo' => $type,
|
||||
'pagato' => $is_pagato ? $importo : 0,
|
||||
'data_pagamento' => $is_pagato ? $scadenza : null,
|
||||
'descrizione' => $descrizione,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Registra le scadenze della fattura.
|
||||
*
|
||||
* @param bool $is_pagato
|
||||
* @param bool $ignora_fe
|
||||
*/
|
||||
public function registraScadenze($is_pagato = false, $ignora_fe = false)
|
||||
{
|
||||
$this->rimuoviScadenze();
|
||||
|
||||
if (!$ignora_fe && $this->module == 'Fatture di acquisto' && $this->isFE()) {
|
||||
$scadenze_fe = $this->registraScadenzeFE($is_pagato);
|
||||
}
|
||||
|
||||
if (empty($scadenze_fe)) {
|
||||
$this->registraScadenzeTradizionali($is_pagato);
|
||||
}
|
||||
|
||||
$direzione = $this->tipo->dir;
|
||||
$ritenuta_acconto = $this->ritenuta_acconto;
|
||||
|
||||
// Se c'è una ritenuta d'acconto, la aggiungo allo scadenzario
|
||||
if ($direzione == 'uscita' && $ritenuta_acconto > 0) {
|
||||
$data = $this->data;
|
||||
$scadenza = date('Y-m', strtotime($data.' +1 month')).'-15';
|
||||
$importo = -$ritenuta_acconto;
|
||||
|
||||
self::registraScadenza($this, $importo, $scadenza, $is_pagato, 'ritenutaacconto');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Elimina le scadenze della fattura.
|
||||
*/
|
||||
public function rimuoviScadenze()
|
||||
{
|
||||
database()->delete('co_scadenziario', ['iddocumento' => $this->id]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Salva la fattura, impostando i campi dipendenti dai singoli parametri.
|
||||
*
|
||||
* @param array $options
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function save(array $options = [])
|
||||
{
|
||||
// Fix dei campi statici
|
||||
$this->manageRigaMarcaDaBollo();
|
||||
|
||||
$this->attributes['ritenutaacconto'] = $this->ritenuta_acconto;
|
||||
$this->attributes['iva_rivalsainps'] = $this->iva_rivalsa_inps;
|
||||
$this->attributes['rivalsainps'] = $this->rivalsa_inps;
|
||||
$this->attributes['ritenutaacconto'] = $this->ritenuta_acconto;
|
||||
|
||||
return parent::save($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* Restituisce l'elenco delle note di credito collegate.
|
||||
*
|
||||
* @return iterable
|
||||
*/
|
||||
public function getNoteDiAccredito()
|
||||
{
|
||||
return self::where('ref_documento', $this->id)->get();
|
||||
}
|
||||
|
||||
/**
|
||||
* Restituisce l'elenco delle note di credito collegate.
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public function getFatturaOriginale()
|
||||
{
|
||||
return self::find($this->ref_documento);
|
||||
}
|
||||
|
||||
/**
|
||||
* Controlla se la fattura è una nota di credito.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isNota()
|
||||
{
|
||||
return $this->tipo->reversed == 1;
|
||||
}
|
||||
|
||||
// Metodi statici
|
||||
|
||||
/**
|
||||
* Calcola il nuovo numero di fattura.
|
||||
*
|
||||
* @param string $data
|
||||
* @param string $direzione
|
||||
* @param int $id_segment
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function getNextNumero($data, $direzione, $id_segment)
|
||||
{
|
||||
if ($direzione == 'entrata') {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Recupero maschera per questo segmento
|
||||
$maschera = Generator::getMaschera($id_segment);
|
||||
|
||||
$ultimo = Generator::getPreviousFrom($maschera, 'co_documenti', 'numero', [
|
||||
'YEAR(data) = '.prepare(date('Y', strtotime($data))),
|
||||
'id_segment = '.prepare($id_segment),
|
||||
]);
|
||||
$numero = Generator::generate($maschera, $ultimo, 1, Generator::dateToPattern($data));
|
||||
|
||||
return $numero;
|
||||
}
|
||||
|
||||
/**
|
||||
* Calcola il nuovo numero secondario di fattura.
|
||||
*
|
||||
* @param string $data
|
||||
* @param string $direzione
|
||||
* @param int $id_segment
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function getNextNumeroSecondario($data, $direzione, $id_segment)
|
||||
{
|
||||
if ($direzione == 'uscita') {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Recupero maschera per questo segmento
|
||||
$maschera = Generator::getMaschera($id_segment);
|
||||
|
||||
$ultimo = Generator::getPreviousFrom($maschera, 'co_documenti', 'numero_esterno', [
|
||||
'YEAR(data) = '.prepare(date('Y', strtotime($data))),
|
||||
'id_segment = '.prepare($id_segment),
|
||||
]);
|
||||
$numero = Generator::generate($maschera, $ultimo, 1, Generator::dateToPattern($data));
|
||||
|
||||
return $numero;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restituisce i dati bancari in base al pagamento.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getBanca()
|
||||
{
|
||||
$result = [];
|
||||
$riba = database()->fetchOne('SELECT riba FROM co_pagamenti WHERE id ='.prepare($this->idpagamento));
|
||||
|
||||
if ($riba['riba'] == 1) {
|
||||
$result = database()->fetchOne('SELECT codiceiban, appoggiobancario, bic FROM an_anagrafiche WHERE idanagrafica ='.prepare($this->idanagrafica));
|
||||
} else {
|
||||
$result = database()->fetchOne('SELECT iban AS codiceiban, nome AS appoggiobancario, bic FROM co_banche WHERE id='.prepare($this->idbanca));
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function getBollo()
|
||||
{
|
||||
if (isset($this->bollo)) {
|
||||
return $this->bollo;
|
||||
}
|
||||
|
||||
$righe_bollo = $this->getRighe()->filter(function ($item, $key) {
|
||||
return $item->aliquota != null && in_array($item->aliquota->codice_natura_fe, ['N1', 'N2', 'N3', 'N4']);
|
||||
});
|
||||
$importo_righe_bollo = $righe_bollo->sum('netto');
|
||||
|
||||
// Leggo la marca da bollo se c'è e se il netto a pagare supera la soglia
|
||||
$bollo = ($this->direzione == 'uscita') ? $this->bollo : setting('Importo marca da bollo');
|
||||
|
||||
$marca_da_bollo = 0;
|
||||
if (abs($bollo) > 0 && abs($importo_righe_bollo) > setting("Soglia minima per l'applicazione della marca da bollo")) {
|
||||
$marca_da_bollo = $bollo;
|
||||
}
|
||||
|
||||
// Se l'importo è negativo può essere una nota di credito, quindi cambio segno alla marca da bollo
|
||||
$marca_da_bollo = abs($marca_da_bollo);
|
||||
|
||||
return $marca_da_bollo;
|
||||
}
|
||||
|
||||
public function manageRigaMarcaDaBollo()
|
||||
{
|
||||
$riga = $this->rigaBollo;
|
||||
|
||||
$addebita_bollo = $this->addebita_bollo;
|
||||
$marca_da_bollo = $this->getBollo();
|
||||
|
||||
// Rimozione riga bollo se nullo
|
||||
if (empty($addebita_bollo) || empty($marca_da_bollo)) {
|
||||
if (!empty($riga)) {
|
||||
$this->id_riga_bollo = null;
|
||||
|
||||
$riga->delete();
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
// Creazione riga bollo se non presente
|
||||
if (empty($riga)) {
|
||||
$riga = Components\Riga::build($this);
|
||||
$riga->save();
|
||||
|
||||
$this->id_riga_bollo = $riga->id;
|
||||
}
|
||||
|
||||
$riga->prezzo_unitario_vendita = $marca_da_bollo;
|
||||
$riga->qta = 1;
|
||||
$riga->descrizione = setting('Descrizione addebito bollo');
|
||||
$riga->id_iva = setting('Iva da applicare su marca da bollo');
|
||||
$riga->idconto = setting('Conto predefinito per la marca da bollo');
|
||||
|
||||
$riga->save();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
namespace Update\v2_4_10;
|
||||
|
||||
use Common\Components\Row;
|
||||
|
||||
class Riga extends Row
|
||||
{
|
||||
use RelationTrait;
|
||||
|
||||
protected $table = 'co_righe_documenti';
|
||||
|
||||
/**
|
||||
* Crea una nuova riga collegata ad una fattura.
|
||||
*
|
||||
* @param Fattura $fattura
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
public static function build(Fattura $fattura)
|
||||
{
|
||||
$model = parent::build($fattura);
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
namespace Update\v2_4_10;
|
||||
|
||||
use Common\Model;
|
||||
|
||||
class TipoAnagrafica extends Model
|
||||
{
|
||||
protected $table = 'an_tipianagrafiche';
|
||||
protected $primaryKey = 'idtipoanagrafica';
|
||||
|
||||
protected $appends = [
|
||||
'id',
|
||||
];
|
||||
|
||||
protected $hidden = [
|
||||
'idtipoanagrafica',
|
||||
];
|
||||
|
||||
/**
|
||||
* Restituisce l'identificativo.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getIdAttribute()
|
||||
{
|
||||
return $this->idtipoanagrafica;
|
||||
}
|
||||
|
||||
public function anagrafiche()
|
||||
{
|
||||
return $this->hasMany(Anagrafica::class, 'an_tipianagrafiche_anagrafiche', 'idtipoanagrafica', 'idanagrafica');
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace Update\v2_4_10;
|
||||
|
||||
use Common\Model;
|
||||
|
||||
class TipoFattura extends Model
|
||||
{
|
||||
protected $table = 'co_tipidocumento';
|
||||
|
||||
public function fatture()
|
||||
{
|
||||
return $this->hasMany(Fattura::class, 'idtipodocumento');
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue