Budget FilterWidget Übersicht Updates:

- public/FilterWidget.js : ignore empty objects when rendering tablesorter table
- Insert Budget filter
- Insert app "budget"
This commit is contained in:
alex
2019-04-15 16:59:24 +02:00
parent bc68ca1e9f
commit b8a504b424
3 changed files with 55 additions and 0 deletions
+15
View File
@@ -2849,6 +2849,21 @@ if($result = $db->db_query($qry_column_desc))
}
}
// App 'budget' hinzufügen
if($result = $db->db_query("SELECT 1 FROM system.tbl_app WHERE app='budget'"))
{
if($db->db_num_rows($result)==0)
{
$qry = "INSERT INTO system.tbl_app(app) VALUES('budget');";
if(!$db->db_query($qry))
echo '<strong>App: '.$db->db_last_error().'</strong><br>';
else
echo '<br>Neue App budget in system.tbl_app hinzugefügt';
}
}
// *** Pruefung und hinzufuegen der neuen Attribute und Tabellen
echo '<H2>Pruefe Tabellen und Attribute!</H2>';