2018-09-25 16:47:44 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Base;
|
|
|
|
|
2018-09-25 17:13:23 +02:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
|
2018-09-26 12:06:24 +02:00
|
|
|
abstract class Row extends Description
|
2018-09-25 16:47:44 +02:00
|
|
|
{
|
2018-09-26 12:06:24 +02:00
|
|
|
protected static function boot($bypass)
|
2018-09-25 16:47:44 +02:00
|
|
|
{
|
2018-09-26 12:06:24 +02:00
|
|
|
parent::boot($bypass);
|
2018-09-25 16:47:44 +02:00
|
|
|
|
2018-09-26 12:06:24 +02:00
|
|
|
if (!$bypass) {
|
|
|
|
static::addGlobalScope('rows', function (Builder $builder) {
|
|
|
|
$builder->whereNull('idarticolo')->where('idarticolo', '=', 0);
|
|
|
|
});
|
|
|
|
}
|
2018-09-25 16:47:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
public function getPrezzoAttribute()
|
|
|
|
{
|
|
|
|
return $this->prezzo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubtotaleAttribute()
|
|
|
|
{
|
|
|
|
return $this->prezzo * $this->qta;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function getTotaleAttribute()
|
|
|
|
{
|
|
|
|
return $this->subtotale + $this->iva;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getScontoAttribute()
|
|
|
|
{
|
|
|
|
return calcola_sconto([
|
|
|
|
'sconto' => $this->sconto_unitario,
|
|
|
|
'prezzo' => $this->prezzo ?: $this->prezzo_vendita, // Compatibilità con gli interventi
|
|
|
|
'tipo' => $this->tipo_sconto,
|
|
|
|
'qta' => $this->qta,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setIdRivalsaINPSAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['idrivalsainps'] = $value;
|
|
|
|
|
|
|
|
// Calcolo rivalsa inps
|
2018-09-25 17:13:23 +02:00
|
|
|
$rivalsa = database()->fetchOne('SELECT * FROM co_rivalsainps WHERE id = '.prepare($value));
|
2018-09-25 16:47:44 +02:00
|
|
|
$this->rivalsainps = ($this->subtotale - $this->sconto) / 100 * $rivalsa['percentuale'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCalcoloRitenutaAccontoAttribute()
|
|
|
|
{
|
|
|
|
return $this->calcolo_ritenutaacconto ?: 'Imponibile';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setCalcoloRitenutaAccontoAttribute($value)
|
|
|
|
{
|
|
|
|
return $this->attributes['calcolo_ritenutaacconto'] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setIdRitenutaAccontoAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['idritenutaacconto'] = $value;
|
|
|
|
|
|
|
|
// Calcolo ritenuta d'acconto
|
2018-09-25 17:13:23 +02:00
|
|
|
$ritenuta = database()->fetchOne('SELECT * FROM co_ritenutaacconto WHERE id = '.prepare($value));
|
2018-09-25 16:47:44 +02:00
|
|
|
$conto = ($this->subtotale - $this->sconto);
|
|
|
|
|
|
|
|
if ($this->calcolo_ritenutaacconto == 'Imponibile + rivalsa inps') {
|
|
|
|
$conto += $this->rivalsainps;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->ritenutaacconto = $conto / 100 * $ritenuta['percentuale'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retrocompatibilità */
|
|
|
|
public function setScontoUnitarioAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['sconto_unitario'] = $value;
|
|
|
|
|
|
|
|
$this->fixSconto();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setTipoScontoAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['tipo_sconto'] = $value;
|
|
|
|
|
|
|
|
$this->fixSconto();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function fixSconto()
|
|
|
|
{
|
|
|
|
$this->attributes['sconto'] = $this->sconto;
|
|
|
|
}
|
|
|
|
|
2018-09-26 12:06:24 +02:00
|
|
|
protected function fixIva()
|
2018-09-25 16:47:44 +02:00
|
|
|
{
|
|
|
|
$iva = database()->fetchOne('SELECT * FROM co_iva WHERE id = :id_iva', [
|
2018-09-26 12:06:24 +02:00
|
|
|
':id_iva' => $this->idiva,
|
2018-09-25 16:47:44 +02:00
|
|
|
]);
|
|
|
|
$descrizione = $iva['descrizione'];
|
|
|
|
|
|
|
|
$valore = ($this->subtotale - $this->sconto) * $iva['percentuale'] / 100;
|
|
|
|
|
|
|
|
$this->desc_iva = $descrizione;
|
|
|
|
$this->iva = $valore;
|
|
|
|
|
|
|
|
// Compatibilità con gli interventi
|
|
|
|
if (!isset($this->prezzo_vendita)) {
|
|
|
|
$this->iva_indetraibile = $valore / 100 * $iva['indetraibile'];
|
|
|
|
}
|
2018-09-26 12:06:24 +02:00
|
|
|
|
|
|
|
$this->attributes['sconto'] = $this->sconto;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setIdIvaAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['idiva'] = $value;
|
|
|
|
|
|
|
|
$this->fixIva();
|
2018-09-25 16:47:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getPrezzoAttribute()
|
|
|
|
{
|
|
|
|
return $this->subtotale / $this->qta;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setSubtotale($prezzo, $qta)
|
|
|
|
{
|
|
|
|
$this->qta = $qta;
|
|
|
|
|
|
|
|
$this->subtotale = $prezzo * $qta;
|
2018-09-26 12:06:24 +02:00
|
|
|
|
|
|
|
$this->fixIva();
|
2018-09-25 16:47:44 +02:00
|
|
|
}
|
|
|
|
}
|