diff --git a/public/js/components/Cis/Profil/EditProfil.js b/public/js/components/Cis/Profil/EditProfil.js
index 6c7093262..51322aa70 100755
--- a/public/js/components/Cis/Profil/EditProfil.js
+++ b/public/js/components/Cis/Profil/EditProfil.js
@@ -124,6 +124,7 @@ export default {
:
//? fresh insert of new attachment
await Vue.$fhcapi.ProfilUpdate.insertFile(formData).then(res => {
+ console.log(res.data);
return res.data?.map((file) => file.dms_id);
})
return result;
diff --git a/public/js/components/Cis/Profil/MitarbeiterProfil.js b/public/js/components/Cis/Profil/MitarbeiterProfil.js
index 70bd8bbe6..418495119 100755
--- a/public/js/components/Cis/Profil/MitarbeiterProfil.js
+++ b/public/js/components/Cis/Profil/MitarbeiterProfil.js
@@ -242,7 +242,7 @@ export default {
},
- template: `
+ template: /*html*/`
@@ -253,7 +253,6 @@ export default {
diff --git a/public/js/components/Cis/Profil/ProfilComponents/QuickLinks.js b/public/js/components/Cis/Profil/ProfilComponents/QuickLinks.js
index 7a78d2041..39f744c52 100755
--- a/public/js/components/Cis/Profil/ProfilComponents/QuickLinks.js
+++ b/public/js/components/Cis/Profil/ProfilComponents/QuickLinks.js
@@ -43,7 +43,7 @@ export default{
-
+
diff --git a/system/dbupdate_3.4/25999_C4_ma0594.php b/system/dbupdate_3.4/25999_C4_ma0594.php
index 12a8a68b6..f11cb135b 100755
--- a/system/dbupdate_3.4/25999_C4_ma0594.php
+++ b/system/dbupdate_3.4/25999_C4_ma0594.php
@@ -89,7 +89,16 @@
echo '
public.tbl_profil_update: table created';
}
-
+ if(!$result = @$db->db_query("SELECT 1 FROM campus.tbl_dms_kategorie WHERE campus.tbl_dms_kategorie.kategorie_kurzbz = 'profil_aenderung' LIMIT 1"))
+ {
+
+ $qry = "INSERT INTO campus.tbl_dms_kategorie VALUES ('profil_aenderung','Dokumente für Profil Änderungen','Dokumente die Belegen ob man eine neue Adresse angemeldet hat oder seinen Namen geändert hat','dokumente',NULL,NULL);";
+
+ if(!$db->db_query($qry))
+ echo 'INSERT OF DMS_KATEGORIE profil_aenderung ERROR : '.$db->db_last_error().'
';
+ else
+ echo '
INSERT OF DMS_KATEGORIE profil_aenderung was successful';
+ }
//? would add a column if the column is missing in the table
/* if(!$result = @$db->db_query("SELECT topic FROM public.tbl_profil_update LIMIT 1"))
{