diff --git a/Layout/default/Callcenterstats/Index.php b/Layout/default/Callcenterstats/Index.php
index 761daf63f..587f98633 100644
--- a/Layout/default/Callcenterstats/Index.php
+++ b/Layout/default/Callcenterstats/Index.php
@@ -85,19 +85,19 @@
| Anzahl eingehende Calls: |
- =$out["count"]?> |
+ =number_format($out["count"], 0, ",", ".")?> |
| Sekunden gesamt: |
- =$out["seconds"]?> |
+ =number_format($out["seconds"], 0, ",", ".")?> |
| Verrechenbare Minuten: |
- =$out["billable"]?> |
+ =number_format($out["billable"], 0, ",", ".")?> |
| Kosten: |
- € =$out["cost"]?> |
+ € =number_format($out["cost"], 0, ",", ".")?> |
@@ -109,24 +109,29 @@
| Anzahl ausgehende Calls: |
- =$in["count"]?> |
+ =number_format($in["count"], 0, ",", ".")?> |
| Sekunden gesamt: |
- =$in["seconds"]?> |
+ =number_format($in["seconds"], 0, ",", ".")?> |
| Verrechenbare Minuten: |
- =$in["billable"]?> |
+ =number_format($in["billable"], 0, ",", ".")?> |
| Kosten: |
- € =$in["cost"]?> |
+ € =number_format($in["cost"], 0, ",", ".")?> |
+
+
+
Summe: € =number_format($in["cost"] + $out["cost"], 0, ",", ".")?>
+
+