mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-29 23:14:55 +01:00
Spostamento movimento cassa previdenziale a costo per acquisti
This commit is contained in:
parent
b3cf83d303
commit
e0985522f0
@ -122,6 +122,13 @@ class Movimenti
|
|||||||
|
|
||||||
$imponibile = $riga->totale_imponibile;
|
$imponibile = $riga->totale_imponibile;
|
||||||
$imponibile = $is_nota ? -$imponibile : $imponibile; // Inversione di segno per le note
|
$imponibile = $is_nota ? -$imponibile : $imponibile; // Inversione di segno per le note
|
||||||
|
|
||||||
|
$rivalsa_inps = $is_nota ? -$riga->rivalsa_inps : $riga->rivalsa_inps;
|
||||||
|
|
||||||
|
if ($this->fattura->direzione == 'uscita') {
|
||||||
|
$imponibile = sum($imponibile, $rivalsa_inps);
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($imponibile)) {
|
if (!empty($imponibile)) {
|
||||||
$movimenti[] = [
|
$movimenti[] = [
|
||||||
'id_conto' => $id_conto,
|
'id_conto' => $id_conto,
|
||||||
@ -176,9 +183,7 @@ class Movimenti
|
|||||||
* 5) Rivalsa INPS sul relativo conto
|
* 5) Rivalsa INPS sul relativo conto
|
||||||
* Rivalsa INPS (senza IVA) -> AVERE per Vendita, DARE per Acquisto
|
* Rivalsa INPS (senza IVA) -> AVERE per Vendita, DARE per Acquisto
|
||||||
*/
|
*/
|
||||||
$rivalsa_inps = $this->fattura->rivalsa_inps;
|
if (!empty($rivalsa_inps) && $this->fattura->direzione == 'entrata') {
|
||||||
$rivalsa_inps = $is_nota ? -$rivalsa_inps : $rivalsa_inps; // Inversione di segno per le note
|
|
||||||
if (!empty($rivalsa_inps)) {
|
|
||||||
$id_conto = setting('Conto per Erario c/INPS');
|
$id_conto = setting('Conto per Erario c/INPS');
|
||||||
$movimenti[] = [
|
$movimenti[] = [
|
||||||
'id_conto' => $id_conto,
|
'id_conto' => $id_conto,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user