Эх сурвалжийг харах

Genauere Fehlermeldung bei alten oder unvollstänidgen Modell-Logdateien

gc-server1 1 жил өмнө
parent
commit
5a32b204d1

+ 12 - 1
app/scripts/controllers/overview.js

@@ -299,9 +299,20 @@ angular.module('fehlerberichtApp')
             if (e === null) {
                 return '0';
             }
-            if (e.Errors.length === 0 || e.Errors.length === 1 && e.Errors[0] === '') {
+            if (e.LastChangedDays > 0) {
                 return $scope.daysCount(e);
             }
+			if (e.Errors.length === 0) {
+				if(e.Sources.length === 0) {
+					return "Transformer-Protokollierung unvollständig";
+				}
+				else if (e.Summary === null) {
+					return "Cube nicht erstellt, Protokoll fehlerhaft";
+				}
+			} 
+			if (e.Errors.length === 1 && e.Type === "Modell" && e.Errors[0].Message !== null && e.Errors[0].Message.indexOf("has been deployed") > 0) {
+				return "Transformer-Protokollierung im falschen Format (englisch)";
+			}
             var type = 'Info';
             if (e.ErrorLevel < 3) {
                 type = 'Fehler';