From 2487490ec07168fbb4b7aad7674fbd76c4f94832 Mon Sep 17 00:00:00 2001
From: "S.Listl" <S.Listl@SLISTL.aditosoftware.local>
Date: Thu, 5 Dec 2019 13:14:10 +0100
Subject: [PATCH] ObjectProxy documentation

---
 .../entityfields/value/stateProcess.js                      | 2 +-
 entity/ObjectProxy_entity/ObjectProxy_entity.aod            | 1 +
 entity/ObjectProxy_entity/documentation.adoc                | 6 ++++++
 3 files changed, 8 insertions(+), 1 deletion(-)
 create mode 100644 entity/ObjectProxy_entity/documentation.adoc

diff --git a/entity/AttributeRelation_entity/entityfields/value/stateProcess.js b/entity/AttributeRelation_entity/entityfields/value/stateProcess.js
index 26520f061c..b1efa78201 100644
--- a/entity/AttributeRelation_entity/entityfields/value/stateProcess.js
+++ b/entity/AttributeRelation_entity/entityfields/value/stateProcess.js
@@ -6,7 +6,7 @@ import("Attribute_lib");
 var attributeType = vars.get("$field.ATTRIBUTE_TYPE");
 
 var fieldState;
-if (AttributeTypeUtil.useLookup(attributeType))
+if (AttributeTypeUtil.useLookup(attributeType) && vars.get("$sys.recordstate") != neon.OPERATINGSTATE_VIEW)
     fieldState = neon.COMPONENTSTATE_INVISIBLE;
 else if (AttributeTypeUtil.getContentType(attributeType) != null)
     fieldState = neon.COMPONENTSTATE_EDITABLE;
diff --git a/entity/ObjectProxy_entity/ObjectProxy_entity.aod b/entity/ObjectProxy_entity/ObjectProxy_entity.aod
index af9aecaf75..a3a700d304 100644
--- a/entity/ObjectProxy_entity/ObjectProxy_entity.aod
+++ b/entity/ObjectProxy_entity/ObjectProxy_entity.aod
@@ -2,6 +2,7 @@
 <entity xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.3.13" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/entity/1.3.13">
   <name>ObjectProxy_entity</name>
   <majorModelMode>DISTRIBUTED</majorModelMode>
+  <documentation>%aditoprj%/entity/ObjectProxy_entity/documentation.adoc</documentation>
   <contentTitleProcess>%aditoprj%/entity/ObjectProxy_entity/contentTitleProcess.js</contentTitleProcess>
   <recordContainer>jdito</recordContainer>
   <entityFields>
diff --git a/entity/ObjectProxy_entity/documentation.adoc b/entity/ObjectProxy_entity/documentation.adoc
new file mode 100644
index 0000000000..ddf0f01c8d
--- /dev/null
+++ b/entity/ObjectProxy_entity/documentation.adoc
@@ -0,0 +1,6 @@
+= ObjectProxy_entity
+
+This entity takes an entity name and optionally a filter as parameters and gives back the records of that entity. 
+For many entities there is a consumer that is used directly via the targetConsumerProcess, otherwise entities.loadRows is used to get the uids and content titles.
+
+The main purpose of this is for a lookup for attributes of the type object selection.
\ No newline at end of file
-- 
GitLab