From 221aab5487b487d84c2406fc72f205d50aa68353 Mon Sep 17 00:00:00 2001 From: "b.ulrich" <b.ulrich@adito.de> Date: Mon, 22 Feb 2021 08:26:53 +0100 Subject: [PATCH] =?UTF-8?q?[Projekt:=20xRM-Sales][TicketNr.:=201074369][Pr?= =?UTF-8?q?oductprice:=20Falsche=20Lademethode=20f=C3=BChrt=20zu=20Perform?= =?UTF-8?q?anceproblemen]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entity/Productprice_entity/Productprice_entity.aod | 5 ++++- .../entityfields/product_id/displayValueProcess.js | 11 ----------- .../product_id.displayvalue/expression.js | 4 ++++ 3 files changed, 8 insertions(+), 12 deletions(-) delete mode 100644 entity/Productprice_entity/entityfields/product_id/displayValueProcess.js create mode 100644 entity/Productprice_entity/recordcontainers/db/recordfieldmappings/product_id.displayvalue/expression.js diff --git a/entity/Productprice_entity/Productprice_entity.aod b/entity/Productprice_entity/Productprice_entity.aod index 32ad155d44..c75679705a 100644 --- a/entity/Productprice_entity/Productprice_entity.aod +++ b/entity/Productprice_entity/Productprice_entity.aod @@ -64,7 +64,6 @@ <mandatory v="true" /> <stateProcess>%aditoprj%/entity/Productprice_entity/entityfields/product_id/stateProcess.js</stateProcess> <valueProcess>%aditoprj%/entity/Productprice_entity/entityfields/product_id/valueProcess.js</valueProcess> - <displayValueProcess>%aditoprj%/entity/Productprice_entity/entityfields/product_id/displayValueProcess.js</displayValueProcess> </entityField> <entityField> <name>CONTACT_ID</name> @@ -324,6 +323,10 @@ <name>FROMQUANTITY.displayValue</name> <expression>%aditoprj%/entity/Productprice_entity/recordcontainers/db/recordfieldmappings/fromquantity.displayvalue/expression.js</expression> </dbRecordFieldMapping> + <dbRecordFieldMapping> + <name>PRODUCT_ID.displayValue</name> + <expression>%aditoprj%/entity/Productprice_entity/recordcontainers/db/recordfieldmappings/product_id.displayvalue/expression.js</expression> + </dbRecordFieldMapping> </recordFieldMappings> <linkInformation> <linkInformation> diff --git a/entity/Productprice_entity/entityfields/product_id/displayValueProcess.js b/entity/Productprice_entity/entityfields/product_id/displayValueProcess.js deleted file mode 100644 index 62dfdaf791..0000000000 --- a/entity/Productprice_entity/entityfields/product_id/displayValueProcess.js +++ /dev/null @@ -1,11 +0,0 @@ -import("system.neon"); -import("system.vars"); -import("system.result"); -import("system.db"); -import("Sql_lib"); - -// TODO: Wenn es möglich ist, den anzeigenamen des Produkts über die Entity beziehung zu laden, dann umbauen...!!! -result.string(newSelect("PRODUCTNAME") - .from("PRODUCT") - .whereIfSet("PRODUCT.PRODUCTID", "$field.PRODUCT_ID") - .cell(true)); \ No newline at end of file diff --git a/entity/Productprice_entity/recordcontainers/db/recordfieldmappings/product_id.displayvalue/expression.js b/entity/Productprice_entity/recordcontainers/db/recordfieldmappings/product_id.displayvalue/expression.js new file mode 100644 index 0000000000..cbc5d9d359 --- /dev/null +++ b/entity/Productprice_entity/recordcontainers/db/recordfieldmappings/product_id.displayvalue/expression.js @@ -0,0 +1,4 @@ +import("system.result"); + +result.string("select PRODUCTNAME from PRODUCT \n\ + where PRODUCT.PRODUCTID = PRODUCTPRICE.PRODUCT_ID"); \ No newline at end of file -- GitLab