added technical data to xinon workorder and workordermph now has a unassign button

This commit is contained in:
Luca Haid
2026-01-18 17:42:11 +00:00
parent a35b865fad
commit 6ab41a9169
13 changed files with 508 additions and 24 deletions
@@ -89,6 +89,8 @@ Vue.component('workorder-tenant-config', {
v-model="editableItem.requireCableLength" sm/>
<tt-checkbox label="Kabeltyp erforderlich"
v-model="editableItem.requireCableType" sm/>
<tt-checkbox label="Technische Daten anzeigen (Patchposition, AHA Blatt)"
v-model="editableItem.showTechnicalData" sm/>
</div>
<div v-else>
<p>Workorder: <strong>{{ config.enableWorkorder ? 'Aktiviert' : 'Deaktiviert' }}</strong></p>
@@ -97,6 +99,7 @@ Vue.component('workorder-tenant-config', {
<p>Tiefbau-Doku: <strong>{{ config.civilEngineeringDocsRequired ? 'Ja' : 'Nein' }}</strong></p>
<p>Kabellänge-Doku: <strong>{{ config.requireCableLength ? 'Ja' : 'Nein' }}</strong></p>
<p>Kabeltyp-Doku: <strong>{{ config.requireCableType ? 'Ja' : 'Nein' }}</strong></p>
<p>Technische Daten: <strong>{{ config.showTechnicalData ? 'Ja' : 'Nein' }}</strong></p>
</div>
</div>
<div class="col-md-6">
@@ -333,6 +336,7 @@ Vue.component('workorder-tenant-config', {
civilEngineeringDocsRequired: 0,
requireCableLength: 0,
requireCableType: 0,
showTechnicalData: 0,
enableWorkorder: 1,
enableWorkorderMph: 1
}