diff --git a/system/dbupdate_3.4/70376_lohnguide.php b/system/dbupdate_3.4/70376_lohnguide.php
index 61486b10d..2c1eb1845 100644
--- a/system/dbupdate_3.4/70376_lohnguide.php
+++ b/system/dbupdate_3.4/70376_lohnguide.php
@@ -367,4 +367,58 @@ if ($result = $db->db_query("SELECT * FROM information_schema.columns WHERE colu
}
}
+
+if ($result = $db->db_query("SELECT * FROM hr.tbl_gehaltstyp WHERE gehaltstyp_kurzbz='ueberstundenpauschale'"))
+{
+ if ($db->db_num_rows($result) == 0)
+ {
+ $qry = "
+ INSERT INTO hr.tbl_gehaltstyp
+ (gehaltstyp_kurzbz, bezeichnung, valorisierung, sort, aktiv, lvexport)
+ VALUES
+ ('ueberstundenpauschale','Überstundenpauschale', true, 8, true);
+ ";
+
+ if (! $db->db_query($qry))
+ echo 'Gehaltstyp: ' . $db->db_last_error() . '
';
+ else
+ echo 'Gehaltstyp "Überstundenpauschale" erstellt.
';
+ }
+}
+
+if ($result = $db->db_query("SELECT * FROM hr.tbl_gehaltstyp WHERE gehaltstyp_kurzbz='ueberstundenpauschale'"))
+{
+ if ($db->db_num_rows($result) == 0)
+ {
+ $qry = "
+ INSERT INTO hr.tbl_gehaltstyp
+ (gehaltstyp_kurzbz, bezeichnung, valorisierung, sort, aktiv, lvexport)
+ VALUES
+ ('ueberstundenpauschale','Überstundenpauschale', true, 8, true, true);
+ ";
+
+ if (! $db->db_query($qry))
+ echo 'Gehaltstyp: ' . $db->db_last_error() . '
';
+ else
+ echo 'Gehaltstyp "Überstundenpauschale" erstellt.
';
+ }
+}
+
+if ($result = $db->db_query("SELECT * FROM hr.tbl_gehaltstyp WHERE gehaltstyp_kurzbz='sachbezug_pkw'"))
+{
+ if ($db->db_num_rows($result) == 0)
+ {
+ $qry = "
+ INSERT INTO hr.tbl_gehaltstyp
+ (gehaltstyp_kurzbz, bezeichnung, valorisierung, sort, aktiv, lvexport)
+ VALUES
+ ('sachbezug_pkw','Sachbezug PKW', true, 9, true, true);
+ ";
+
+ if (! $db->db_query($qry))
+ echo 'Gehaltstyp: ' . $db->db_last_error() . '
';
+ else
+ echo 'Gehaltstyp "Sachbezug PKW" erstellt.
';
+ }
+}
\ No newline at end of file