|
287 | 287 | /> |
288 | 288 | <hr /> |
289 | 289 | <openwb-base-heading> Zugangskontrolle </openwb-base-heading> |
290 | | - <openwb-base-button-group-input |
291 | | - title="Sperre nach Abstecken" |
292 | | - :buttons="[ |
293 | | - { |
294 | | - buttonValue: false, |
295 | | - text: 'Nein', |
296 | | - class: 'btn-outline-danger', |
297 | | - }, |
298 | | - { |
299 | | - buttonValue: true, |
300 | | - text: 'Ja', |
301 | | - class: 'btn-outline-success', |
302 | | - }, |
303 | | - ]" |
304 | | - :model-value="chargePointTemplate.disable_after_unplug" |
305 | | - @update:model-value="updateState(chargePointTemplateKey, $event, 'disable_after_unplug')" |
306 | | - > |
307 | | - <template #help> Sperrt den Ladepunkt nach Abstecken eines Fahrzeuges. </template> |
308 | | - </openwb-base-button-group-input> |
309 | | - <div v-if="$store.state.mqtt['openWB/optional/rfid/active'] === true && !installAssistantActive"> |
| 290 | + <div v-if="chargePointTemplate.valid_tags.length > 0"> |
| 291 | + <openwb-base-alert subtype="info"> |
| 292 | + Einstellungen zur Zugangskontrolle finden sich unter |
| 293 | + <router-link to="/IdentificationConfig"> Einstellungen - Identifikation </router-link>. |
| 294 | + <div |
| 295 | + v-if=" |
| 296 | + $store.state.mqtt['openWB/optional/rfid/active'] === true && |
| 297 | + chargePointTemplate.disable_after_unplug |
| 298 | + " |
| 299 | + > |
| 300 | + Die Option ist aktiv. Ladepunkte denen dieses Ladepunkt-Profil zugeordnet ist müssen per ID-Tag |
| 301 | + entsperrt werden. |
| 302 | + </div> |
| 303 | + <div v-else>Aktuell ist die Option in den Einstellungen deaktiviert.</div> |
| 304 | + Dem Ladepunkt-Profil sind folgende ID-Tags zum Entsperren zugeordnet: |
| 305 | + </openwb-base-alert> |
310 | 306 | <openwb-base-array-input |
311 | | - v-if="chargePointTemplate.disable_after_unplug" |
312 | 307 | title="Zugeordnete ID-Tags" |
313 | | - no-elements-message="Keine ID-Tags zugeordnet." |
| 308 | + no-elements-message="Keine keine ID-Tags zugeordnet." |
| 309 | + no-input="true" |
314 | 310 | :model-value="chargePointTemplate.valid_tags" |
315 | | - @update:model-value="updateState(chargePointTemplateKey, $event, 'valid_tags')" |
316 | | - > |
317 | | - <template #help> |
318 | | - Die hier eingetragenen ID-Tags dienen ausschließlich zum Entsperren des Ladepunktes. |
319 | | - </template> |
320 | | - </openwb-base-array-input> |
| 311 | + /> |
| 312 | + </div> |
| 313 | + <div v-else> |
| 314 | + <openwb-base-alert subtype="info"> |
| 315 | + Einstellungen zur Zugangskontrolle finden sich unter |
| 316 | + <router-link to="/IdentificationConfig"> Einstellungen - Identifikation </router-link>.<br /> |
| 317 | + Dem Ladepunkt-Profil sind aktuell keine ID-Tags zum Entsperren zugeordnet. |
| 318 | + </openwb-base-alert> |
321 | 319 | </div> |
322 | 320 | <hr /> |
323 | 321 | <openwb-base-heading> Angaben zum konfigurierten Ladestrom der openWB </openwb-base-heading> |
|
0 commit comments