From e195322328f6a833b63d7992511c38a229806cd8 Mon Sep 17 00:00:00 2001 From: "S.Listl" <S.Listl@SLISTL.aditosoftware.local> Date: Thu, 28 Nov 2019 16:17:35 +0100 Subject: [PATCH] AttributeRelation: fix for void-attributes --- .../AttributeRelation_entity/entityfields/value/valueProcess.js | 2 ++ .../AttributeRelation_entity/recordcontainers/jdito/onDelete.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/entity/AttributeRelation_entity/entityfields/value/valueProcess.js b/entity/AttributeRelation_entity/entityfields/value/valueProcess.js index 482f217f0f..be339d4b85 100644 --- a/entity/AttributeRelation_entity/entityfields/value/valueProcess.js +++ b/entity/AttributeRelation_entity/entityfields/value/valueProcess.js @@ -6,3 +6,5 @@ var attributeType = vars.get("$field.ATTRIBUTE_TYPE"); var contentType = AttributeTypeUtil.getContentType(attributeType); if (vars.get("$this.value") == null && contentType == "BOOLEAN") result.string("0"); +else if (!contentType) + result.string(""); diff --git a/entity/AttributeRelation_entity/recordcontainers/jdito/onDelete.js b/entity/AttributeRelation_entity/recordcontainers/jdito/onDelete.js index 534a178c60..9dddabd155 100644 --- a/entity/AttributeRelation_entity/recordcontainers/jdito/onDelete.js +++ b/entity/AttributeRelation_entity/recordcontainers/jdito/onDelete.js @@ -4,7 +4,7 @@ import("Sql_lib"); import("system.db"); var rowData = vars.get("$local.rowdata"); -if (rowData["AB_ATTRIBUTE_ID.value"] && rowData["VALUE.value"]) +if (rowData["AB_ATTRIBUTE_ID.value"]) { newWhere("AB_ATTRIBUTERELATION.AB_ATTRIBUTERELATIONID", vars.get("$local.uid")) .deleteData(true, "AB_ATTRIBUTERELATION") -- GitLab