diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php
index 1e9eb848..ef781c3b 100644
--- a/www/lib/class.erpapi.php
+++ b/www/lib/class.erpapi.php
@@ -2640,6 +2640,24 @@ public function NavigationHooks(&$menu)
return "if(" . $fieldstroke . ",CONCAT(''," . $field . ",'')," . $field . ")";
}
+ // @refactor DbHelper Komponente
+ // creates a CONCAT sql statement with strings or sql expressions
+ // Use like this: ConcatSQL(' 'id','>','click here');
+ function ConcatSQL(array $fields) {
+ $result = "CONCAT(";
+ $comma = "";
+ foreach ($fields as $field) {
+ if (gettype($field) == 'array') {
+ $result .= $comma.$field['sql'];
+ } else {
+ $result .= $comma."'".$field."'";
+ }
+ $comma = ",";
+ }
+ $result .= ")";
+ return($result);
+ }
+
// @refactor Formater Komponente
function Dateinamen($text) {
$text = $this->UmlauteEntfernen($text);
diff --git a/www/pages/content/kontoauszuege_konto_list.tpl b/www/pages/content/kontoauszuege_konto_list.tpl
new file mode 100644
index 00000000..2516d00a
--- /dev/null
+++ b/www/pages/content/kontoauszuege_konto_list.tpl
@@ -0,0 +1,29 @@
+