-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rechner_v1.0.py
129 lines (104 loc) · 6.77 KB
/
Rechner_v1.0.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
from PyQt5.QtWidgets import QApplication, QWidget, QComboBox, QLabel, QVBoxLayout, QPushButton
def calculate():
group = combo_group.currentText()
duration = combo_duration.currentText()
location = combo_location.currentText()
wealth = combo_wealth.currentText()
# Logik zur Berechnung der Vergütung für Vergütungsgruppe A
if group == 'A':
if duration == 'In den ersten drei Monaten':
if location == 'stationäre Einrichtung':
label_result.setText("Vergütung: 194,00 €" if wealth == 'mittellos' else "Vergütung: 200,00 €")
else:
label_result.setText("Vergütung: 208,00 €" if wealth == 'mittellos' else "Vergütung: 298,00 €")
elif duration == 'Im vierten bis sechsten Monat':
if location == 'stationäre Einrichtung':
label_result.setText("Vergütung: 129,00 €" if wealth == 'mittellos' else "Vergütung: 158,00 €")
else:
label_result.setText("Vergütung: 170,00 €" if wealth == 'mittellos' else "Vergütung: 208,00 €")
elif duration == 'Im siebten bis zwölften Monat':
if location == 'stationäre Einrichtung':
label_result.setText("Vergütung: 124,00 €" if wealth == 'mittellos' else "Vergütung: 140,00 €")
else:
label_result.setText("Vergütung: 151,00 €" if wealth == 'mittellos' else "Vergütung: 192,00 €")
elif duration == 'Im 13. bis 24. Monat':
if location == 'stationäre Einrichtung':
label_result.setText("Vergütung: 87,00 €" if wealth == 'mittellos' else "Vergütung: 91,00 €")
else:
label_result.setText("Vergütung: 122,00 €" if wealth == 'mittellos' else "Vergütung: 158,00 €")
elif duration == 'Ab dem 25. Monat':
if location == 'stationäre Einrichtung':
label_result.setText("Vergütung: 62,00 €" if wealth == 'mittellos' else "Vergütung: 78,00 €")
else:
label_result.setText("Vergütung: 105,00 €" if wealth == 'mittellos' else "Vergütung: 130,00 €")
if group == 'B':
if duration == 'In den ersten drei Monaten':
label_result.setText(
"Vergütung: 241,00 €" if wealth == 'mittellos' else "Vergütung: 249,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 258,00 €" if wealth == 'mittellos' else "Vergütung: 370,00 €")
elif duration == 'Im vierten bis sechsten Monat':
label_result.setText(
"Vergütung: 158,00 €" if wealth == 'mittellos' else "Vergütung: 196,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 211,00 €" if wealth == 'mittellos' else "Vergütung: 258,00 €")
elif duration == 'Im siebten bis zwölften Monat':
label_result.setText(
"Vergütung: 154,00 €" if wealth == 'mittellos' else "Vergütung: 174,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 188,00 €" if wealth == 'mittellos' else "Vergütung: 238,00 €")
elif duration == 'Im 13. bis 24. Monat':
label_result.setText(
"Vergütung: 107,00 €" if wealth == 'mittellos' else "Vergütung: 113,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 151,00 €" if wealth == 'mittellos' else "Vergütung: 196,00 €")
elif duration == 'Ab dem 25. Monat':
label_result.setText(
"Vergütung: 78,00 €" if wealth == 'mittellos' else "Vergütung: 96,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 130,00 €" if wealth == 'mittellos' else "Vergütung: 161,00 €")
if group == 'C':
if duration == 'In den ersten drei Monaten':
label_result.setText(
"Vergütung: 317,00 €" if wealth == 'mittellos' else "Vergütung: 327,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 339,00 €" if wealth == 'mittellos' else "Vergütung: 486,00 €")
elif duration == 'Im vierten bis sechsten Monat':
label_result.setText(
"Vergütung: 208,00 €" if wealth == 'mittellos' else "Vergütung: 257,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 277,00 €" if wealth == 'mittellos' else "Vergütung: 339,00 €")
elif duration == 'Im siebten bis zwölften Monat':
label_result.setText(
"Vergütung: 202,00 €" if wealth == 'mittellos' else "Vergütung: 229,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 246,00 €" if wealth == 'mittellos' else "Vergütung: 312,00 €")
elif duration == 'Im 13. bis 24. Monat':
label_result.setText(
"Vergütung: 141,00 €" if wealth == 'mittellos' else "Vergütung: 149,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 198,00 €" if wealth == 'mittellos' else "Vergütung: 257,00 €")
elif duration == 'Ab dem 25. Monat':
label_result.setText(
"Vergütung: 102,00 €" if wealth == 'mittellos' else "Vergütung: 127,00 €") if location == 'stationäre Einrichtung' else label_result.setText(
"Vergütung: 171,00 €" if wealth == 'mittellos' else "Vergütung: 211,00 €")
app = QApplication([])
window = QWidget()
layout = QVBoxLayout()
combo_group = QComboBox()
combo_group.addItems(['A', 'B', 'C'])
layout.addWidget(QLabel('Vergütungsgruppe:'))
layout.addWidget(combo_group)
combo_duration = QComboBox()
combo_duration.addItems(
['In den ersten drei Monaten', 'Im vierten bis sechsten Monat', 'Im siebten bis zwölften Monat',
'Im 13. bis 24. Monat', 'Ab dem 25. Monat'])
layout.addWidget(QLabel('Dauer der Betreuung:'))
layout.addWidget(combo_duration)
combo_location = QComboBox()
combo_location.addItems(['stationäre Einrichtung', 'andere Wohnform'])
layout.addWidget(QLabel('Gewöhnlicher Aufenthaltsort:'))
layout.addWidget(combo_location)
combo_wealth = QComboBox()
combo_wealth.addItems(['mittellos', 'nicht mittellos'])
layout.addWidget(QLabel('Vermögensstatus:'))
layout.addWidget(combo_wealth)
button_calculate = QPushButton('Berechnen')
button_calculate.clicked.connect(calculate)
layout.addWidget(button_calculate)
label_result = QLabel('Vergütung: ')
layout.addWidget(label_result)
window.setLayout(layout)
window.show()
app.exec_()