From 9f43de1c8a3d1ce443f0b1e4852aea3252517de6 Mon Sep 17 00:00:00 2001 From: Benjamin Ulrich <b.ulrich@adito.de> Date: Wed, 1 Sep 2021 12:15:43 +0000 Subject: [PATCH] [Projekt: xRM-Sales][TicketNr.: 1085637][Salesproject_entity: Gruppieren nach Phase wirft Exception] --- .../Salesproject_entity.aod | 13 +---- .../filterConditionProcess.js | 4 -- .../groupQueryProcess.js | 4 -- process/Salesproject_lib/process.js | 57 +------------------ 4 files changed, 3 insertions(+), 75 deletions(-) delete mode 100644 entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/filterConditionProcess.js delete mode 100644 entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/groupQueryProcess.js diff --git a/entity/Salesproject_entity/Salesproject_entity.aod b/entity/Salesproject_entity/Salesproject_entity.aod index fc879ebb70..7e4f07a7d7 100644 --- a/entity/Salesproject_entity/Salesproject_entity.aod +++ b/entity/Salesproject_entity/Salesproject_entity.aod @@ -43,7 +43,7 @@ <name>PHASE</name> <title>Phase</title> <consumer>SalesprojectPhaseStepper</consumer> - <groupable v="false" /> + <groupable v="true" /> <mandatory v="true" /> <state>EDITABLE</state> <displayValueProcess>%aditoprj%/entity/Salesproject_entity/entityfields/phase/displayValueProcess.js</displayValueProcess> @@ -1043,6 +1043,7 @@ <aggregateFieldDbMapping> <name>volumeWeighted_aggregate.value</name> <expression>%aditoprj%/entity/Salesproject_entity/recordcontainers/db/recordfieldmappings/volumeweighted_aggregate.value/expression.js</expression> + <aggregateType>AVG</aggregateType> </aggregateFieldDbMapping> <dbRecordFieldMapping> <name>DATE_EDIT.value</name> @@ -1113,16 +1114,6 @@ <groupQueryProcess>%aditoprj%/entity/Salesproject_entity/recordcontainers/db/filterextensions/classificationgroup_filter/groupQueryProcess.js</groupQueryProcess> <filtertype>BASIC</filtertype> </filterExtensionSet> - <filterExtension> - <name>Phase_filterExtention</name> - <title>Phase</title> - <contentType>TEXT</contentType> - <filterConditionProcess>%aditoprj%/entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/filterConditionProcess.js</filterConditionProcess> - <groupedRecordField>Phase</groupedRecordField> - <titleRecordField>SALESPROJECT.PHASE</titleRecordField> - <isGroupable v="true" /> - <groupQueryProcess>%aditoprj%/entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/groupQueryProcess.js</groupQueryProcess> - </filterExtension> <filterExtension> <name>Favorite_filter</name> <title>Favoritegroup</title> diff --git a/entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/filterConditionProcess.js b/entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/filterConditionProcess.js deleted file mode 100644 index 8941714161..0000000000 --- a/entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/filterConditionProcess.js +++ /dev/null @@ -1,4 +0,0 @@ -import("Salesproject_lib"); -import("system.result"); - -result.string(SalesprojectPhaseFilterUtils.makeFilterCondition()); \ No newline at end of file diff --git a/entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/groupQueryProcess.js b/entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/groupQueryProcess.js deleted file mode 100644 index feb925020a..0000000000 --- a/entity/Salesproject_entity/recordcontainers/db/filterextensions/phase_filterextention/groupQueryProcess.js +++ /dev/null @@ -1,4 +0,0 @@ -import("Salesproject_lib"); -import("system.result"); - -result.string(SalesprojectPhaseFilterUtils.makeGroupQueryProcess()); \ No newline at end of file diff --git a/process/Salesproject_lib/process.js b/process/Salesproject_lib/process.js index b0622cece1..bb5701de7b 100644 --- a/process/Salesproject_lib/process.js +++ b/process/Salesproject_lib/process.js @@ -410,59 +410,4 @@ SalesprojectConversionRate.prototype._getTitleOfKey = function (pKey, pIsGroupin return KeywordUtils.getViewValue($KeywordRegistry.salesprojectPhase(),pKey); return pKey; -} - -/** - * Methods used by the Salesproject. - * Do not create an instance of this! - * - * @class - */ -function SalesprojectPhaseFilterUtils() {} - -/** - * Builds a Sql-condition for a salesproject filter extension. This allows to filter via the salesproject phase whilst havin them in the correct Order - * - * @return {String} condition - */ -SalesprojectPhaseFilterUtils.makeFilterCondition = function() -{ - return newWhereIfSet( "SALESPROJECT.PHASE", vars.get("$local.rawvalue")); -} - -/** - * Builds a Sql-condition for a salesproject filter extension. This allows to filter via the salesproject phase whilst havin them in the correct Order - * - * @return {String} condition - */ -SalesprojectPhaseFilterUtils.makeGroupQueryProcess = function() -{ - var order = vars.get("$local.order"); - var sqlHelper = new SqlMaskingUtils(); - var groupedList = "SALESPROJECT.PHASE" - var condition = vars.get("$local.condition"); - var stmt = new SqlBuilder().from("SALESPROJECT").join("AB_KEYWORD_ENTRY", newWhere("AB_KEYWORD_ENTRY.KEYID = SALESPROJECT.PHASE").and("AB_KEYWORD_ENTRY.AB_KEYWORD_CATEGORY_ID", KeywordUtils.getCategoryIdByName($KeywordRegistry.salesprojectPhase()))).groupBy(groupedList + ", AB_KEYWORD_ENTRY.SORTING, AB_KEYWORD_ENTRY.KEYID"); - - if (!Utils.isNullOrEmptyString(condition.trim())) - { - stmt.where(condition); - } - - if (vars.get("$local.count")) // TRUE if the count of the records is needed - { - stmt.select(["1 COUNT", groupedList]) //from ACTIVITY where " + condition + " group by "+groupedList+") X"; - stmt = newSelect("STMT.COUNT") - .from(stmt, "STMT") - - } - else - { - stmt.select([groupedList , KeywordUtils.getResolvedTitleSqlPart($KeywordRegistry.salesprojectPhase(),"AB_KEYWORD_ENTRY.KEYID"), "count(*)", "count(*)"]) - if (order != null) - { - stmt.orderBy("AB_KEYWORD_ENTRY.SORTING, " + order); - } - } - - return stmt.toString(); -} +} \ No newline at end of file -- GitLab