feat: add fcp map

fix: fixed lazy fcp search
fix: try to fix preorder filter
This commit is contained in:
Luca Haid
2025-04-08 11:46:10 +02:00
parent 3d3e082fb5
commit 26b92c411c
7 changed files with 323 additions and 6 deletions
+3 -1
View File
@@ -200,6 +200,7 @@ Vue.component('a-d-b-rimo-fcp', {
<div style="display: flex; gap: 10px;">
<tt-button icon="fas fa-upload" text="FCPs Importieren" additional-class="btn-outline-success" @click="showImportFCPModal = true" />
<tt-button icon="fas fa-upload" text="Locations Importieren" additional-class="btn-outline-success" @click="showImportLocationsModal = true" />
<tt-button text="Karte anzeigen" icon="fas fa-map" additional-class="btn-outline-primary" @click="window.location.href = window.TT_CONFIG['BASE_PATH'] + '/ADBRimoFcp/Map'" />
</div>
</template>
</tt-table-crud>
@@ -231,7 +232,8 @@ Vue.component('a-d-b-rimo-fcp', {
showImportLocationsModal: false,
networkAreas: window.TT_CONFIG?.CRUD_CONFIG?.columns?.find(col => col.key === 'netzgebiet_id')?.modal?.items || [],
fcpApiUrl: window.TT_CONFIG['BASE_PATH'] + '/ADBRimoFcp/ImportFCPs',
locationsApiUrl: window.TT_CONFIG['BASE_PATH'] + '/ADBRimoFcp/ImportLocations'
locationsApiUrl: window.TT_CONFIG['BASE_PATH'] + '/ADBRimoFcp/ImportLocations',
window
}
},
methods: {