mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-24 03:41:13 +01:00
rechnung smarty XML added rounding of positions
This commit is contained in:
parent
23953e70b8
commit
6e33dd8132
@ -1343,10 +1343,13 @@ class Rechnung extends GenRechnung
|
|||||||
$this->app->erp->GetSteuerPosition('rechnung', $position['id'], $steuersatz, $steuertext, $erloes);
|
$this->app->erp->GetSteuerPosition('rechnung', $position['id'], $steuersatz, $steuertext, $erloes);
|
||||||
$positionen[$key]['steuersatz'] = $steuersatz;
|
$positionen[$key]['steuersatz'] = $steuersatz;
|
||||||
$positionen[$key]['steuertext'] = $steuertext;
|
$positionen[$key]['steuertext'] = $steuertext;
|
||||||
$positionen[$key]['erloese'] = $erloes;
|
$positionen[$key]['erloese'] = round($erloes,2);
|
||||||
|
|
||||||
$steuern[$steuersatz]['umsatz_netto'] += $position['umsatz_netto_gesamt'];
|
$positionen[$key]['umsatz_netto_gesamt'] = round($position['umsatz_netto_gesamt'],2);
|
||||||
$steuern[$steuersatz]['umsatz_brutto'] += $position['umsatz_brutto_gesamt'];
|
$positionen[$key]['umsatz_brutto_gesamt'] = round($position['umsatz_brutto_gesamt'],2);
|
||||||
|
|
||||||
|
$steuern[$steuersatz]['umsatz_netto'] += round($position['umsatz_netto_gesamt'],2);
|
||||||
|
$steuern[$steuersatz]['umsatz_brutto'] += round($position['umsatz_brutto_gesamt'],2);
|
||||||
$steuern[$steuersatz]['prozent'] = $steuersatz;
|
$steuern[$steuersatz]['prozent'] = $steuersatz;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user