mirror of
http://100.103.83.12:3003/fegger/odoo-at-payroll.git
synced 2026-09-17 08:52:45 +00:00
[IMP] l10n_at_hr_payroll_private: add voluntary severance under § 67 Abs 6 (AP15-B)
Split the voluntary severance into its privileged part and a tariff remainder on the exit run: the privileged part combines the quarter rule (1/4 of the last twelve months' running pay, capped at nine times the monthly HBG) with the twelfth rule (2/12 to 12/12 by proven service, capped at n × 3 × HBG), reduced per Z 3 by severance already received and the statutory claim due at this termination, all taxed at the flat 6 % rate. The excess runs as its own rule flagged l10n_at_s67_abs6_ueberhang: taxed with the running tariff of the payment month but excluded from the annual sixth, since Z 5 exempts only the Z 1/Z 2 amounts and the excess is a special payment, not running pay. The twelve-month basis aggregates validated prior runs plus own lines, excluding the flagged excess and § 26 Z 4 travel overhang via a dedicated rule flag. Free of SV (§ 49 Abs 3 Z 7 ASVG), payroll levies regardless of the 6 %/tarif split (§ 41 Abs 4 lit b FLAG, § 122 Abs 8 WKG, § 5 Abs 2 lit b KommStG) and BV contributions; the former BV-Anwartschaft exclusion Z 7 is repealed (BGBl I 118/2015). The wizard proposes the rolling basis and the statutory claim, previews Z 1/Z 2/reduction/privileged/excess/tax and requires explicit confirmation against claim-conversion risk. The § 291d EO termination pot nets both severance wage-tax rules; key 260 now includes LST_ABF_FREI. Verified against the original statute text in .ris/ (EStG § 67 Abs 6) and the knowledge-base sources lb-end-12/13/15; KZ positioning of Abs-6 amounts and the excess's § 291d pot allocation remain documented verification points against LStR Rz 1087 ff. Version 19.0.14.0.0 (private), 19.0.10.0.0 (core)
This commit is contained in:
@@ -70,6 +70,15 @@ class HrSalaryRule(models.Model):
|
||||
'abgezogen; Grenzen als Jahres-Kumulative je Dienstnehmer '
|
||||
'(at_st_grenzen). Nur der übersteigende Teil ist '
|
||||
'steuerpflichtig. Menge = Arbeitstage (Z 17/Z 9).')
|
||||
l10n_at_s67_abs6_ueberhang = fields.Boolean(
|
||||
string='AT § 67 Abs 6 Z 6 — Überhang',
|
||||
help='Übersteigender Teil einer freiwilligen Abfertigung/Abfindung '
|
||||
'(§ 67 Abs 6 Z 6 EStG): wird wie ein laufender Bezug zum '
|
||||
'Tarif des Zuflussmonats versteuert, erhöht aber das '
|
||||
'Jahressechstel nicht — Abs 2 ist nur auf die mit 6 % '
|
||||
'versteuerten Z-1/Z-2-Beträge nicht anzuwendbar (Z 5), der '
|
||||
'Überhang ist ein sonstiger Bezug, kein laufender. LNK-frei '
|
||||
'über § 67 Abs 6 (lb-end-12), SV-frei über § 49 Abs 3 Z 7.')
|
||||
|
||||
|
||||
class HrVersion(models.Model):
|
||||
@@ -351,11 +360,32 @@ class HrPayslip(models.Model):
|
||||
|
||||
def _l10n_at_brutto_laufen_ytd(self, result_rules=None):
|
||||
"""Kumulierte laufende Bruttobezüge des Jahres (Sechstel-Basis
|
||||
ist Brutto, § 67 Abs 2 — inkl. Auszahlungsmonat-Laufendem)."""
|
||||
ist Brutto, § 67 Abs 2 — inkl. Auszahlungsmonat-Laufendem).
|
||||
Der §-67-Abs-6-Überhang (Flag) läuft tarifisch im Zuflussmonat,
|
||||
ist aber ein sonstiger Bezug und erhöht das Jahressechstel
|
||||
nicht."""
|
||||
self.ensure_one()
|
||||
total = self._l10n_at_brutto('laufend', result_rules)
|
||||
total = self._l10n_at_brutto('laufend', result_rules) \
|
||||
- self._l10n_at_abs6_ueberhang_total(result_rules)
|
||||
for slip in self._l10n_at_ytd_slaeufe():
|
||||
total += slip._l10n_at_brutto('laufend')
|
||||
total += slip._l10n_at_brutto('laufend') \
|
||||
- slip._l10n_at_abs6_ueberhang_total()
|
||||
return total
|
||||
|
||||
def _l10n_at_abs6_ueberhang_total(self, result_rules=None):
|
||||
"""Summe der als §-67-Abs-6-Z-6-Überhang gekennzeichneten
|
||||
Regel-Zeilen (tarifisch im Zuflussmonat, ohne Sechstel-Effekt)."""
|
||||
self.ensure_one()
|
||||
total = 0.0
|
||||
for rule in self.struct_id.rule_ids:
|
||||
if not rule.l10n_at_s67_abs6_ueberhang:
|
||||
continue
|
||||
if result_rules is not None:
|
||||
if rule.code in result_rules:
|
||||
total += result_rules[rule.code]['total']
|
||||
else:
|
||||
total += sum(self.line_ids.filtered(
|
||||
lambda l, c=rule.code: l.code == c).mapped('total'))
|
||||
return total
|
||||
|
||||
def _l10n_at_sechstel(self, result_rules=None):
|
||||
|
||||
Reference in New Issue
Block a user