mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-14 16:36:51 +01:00
Fix calcolo ritenuta contributi
This commit is contained in:
parent
ed8c48c24b
commit
122936c7fa
@ -299,7 +299,7 @@ abstract class Document extends Model implements ReferenceInterface, DocumentInt
|
|||||||
public function getScontoFinale()
|
public function getScontoFinale()
|
||||||
{
|
{
|
||||||
if (!empty($this->sconto_finale_percentuale)) {
|
if (!empty($this->sconto_finale_percentuale)) {
|
||||||
$netto = $this->totale - $this->ritenuta_acconto - $this->ritenuta_contributi;
|
$netto = $this->totale - $this->ritenuta_acconto - $this->totale_ritenuta_contributi;
|
||||||
if ($this->split_payment) {
|
if ($this->split_payment) {
|
||||||
$netto = $netto - $this->iva;
|
$netto = $netto - $this->iva;
|
||||||
}
|
}
|
||||||
@ -319,7 +319,7 @@ abstract class Document extends Model implements ReferenceInterface, DocumentInt
|
|||||||
*/
|
*/
|
||||||
public function getNettoAttribute()
|
public function getNettoAttribute()
|
||||||
{
|
{
|
||||||
$netto = $this->totale - $this->ritenuta_acconto - $this->ritenuta_contributi;
|
$netto = $this->totale - $this->ritenuta_acconto - $this->totale_ritenuta_contributi;
|
||||||
if ($this->split_payment) {
|
if ($this->split_payment) {
|
||||||
$netto = $netto - $this->iva;
|
$netto = $netto - $this->iva;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user