feat(falukant): enhance tax calculation and update messaging parameters
All checks were successful
Deploy to production / deploy (push) Successful in 2m52s

- Updated the tax calculation logic in FalukantService to include character-based checks for political offices, improving accuracy in tax assessments.
- Enhanced the MessagesDialog component to incorporate additional parameters such as satisfaction, threshold_percent, director_id, and director_character_id, providing more detailed notifications.
- Added new localization entries for director resignation risk notifications in multiple languages, ensuring users receive clear and contextual information regarding director dynamics.
This commit is contained in:
Torsten Schulz (local)
2026-04-13 15:58:30 +02:00
parent 86e14a875d
commit f92b62e55b
9 changed files with 215 additions and 1 deletions

View File

@@ -364,6 +364,18 @@ export default {
if (base.risk_percent !== undefined) {
params.risk_percent = base.risk_percent;
}
if (base.satisfaction !== undefined) {
params.satisfaction = base.satisfaction;
}
if (base.threshold_percent !== undefined) {
params.threshold_percent = base.threshold_percent;
}
if (base.director_id !== undefined) {
params.director_id = base.director_id;
}
if (base.director_character_id !== undefined) {
params.director_character_id = base.director_character_id;
}
if (base.affection !== undefined) {
params.affection = base.affection;
}