Skip to content
Snippets Groups Projects
Commit c728efb7 authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

Fix some Scan Service Errors

parent f4e4f8ed
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 66 deletions
......@@ -85,7 +85,6 @@
</entityConsumer>
<entityActionField>
<name>opencontext</name>
<onActionProcess>%aditoprj%/entity/AppointmentLink_entity/entityfields/opencontext/onActionProcess.js</onActionProcess>
</entityActionField>
<entityParameter>
<name>LinkedObjectId_param</name>
......
......@@ -3,7 +3,6 @@
<name>AttributeRelation_entity</name>
<majorModelMode>DISTRIBUTED</majorModelMode>
<title>Attribute</title>
<onValidation>%aditoprj%/entity/AttributeRelation_entity/onValidation.js</onValidation>
<titlePlural>Attributes</titlePlural>
<recordContainer>jdito</recordContainer>
<entityFields>
......@@ -85,14 +84,6 @@
<valueProcess>%aditoprj%/entity/AttributeRelation_entity/entityfields/treeprovider/children/gettree_param/valueProcess.js</valueProcess>
<expose v="false" />
</entityParameter>
<entityParameter>
<name>AttributeId_param</name>
<expose v="false" />
</entityParameter>
<entityParameter>
<name>IsNew_param</name>
<expose v="false" />
</entityParameter>
</children>
</entityProvider>
<entityField>
......@@ -224,10 +215,6 @@
<name>GetTree_param</name>
<expose v="false" />
</entityParameter>
<entityParameter>
<name>AttributeId_param</name>
<expose v="false" />
</entityParameter>
</children>
</entityProvider>
<entityField>
......
......@@ -100,7 +100,6 @@
<alias>Data_alias</alias>
<fromClauseProcess>%aditoprj%/entity/BulkMailRecipient_entity/recordcontainers/db/fromClauseProcess.js</fromClauseProcess>
<conditionProcess>%aditoprj%/entity/BulkMailRecipient_entity/recordcontainers/db/conditionProcess.js</conditionProcess>
<orderClauseProcess>%aditoprj%/entity/BulkMailRecipient_entity/recordcontainers/db/orderClauseProcess.js</orderClauseProcess>
<linkInformation>
<linkInformation>
<name>6cfe0097-5d5a-4ca1-a0fc-021ffb47013a</name>
......
......@@ -90,16 +90,6 @@
<entityName>CampaignAnalysis_entity</entityName>
<fieldName>#PROVIDER</fieldName>
</dependency>
<children>
<entityParameter>
<name>campaignParticipants_param</name>
<valueProcess>%aditoprj%/entity/CampaignAddParticipants_entity/entityfields/campaignanalyses/children/campaignparticipants_param/valueProcess.js</valueProcess>
</entityParameter>
<entityParameter>
<name>campaignStepId_param</name>
<valueProcess>%aditoprj%/entity/CampaignAddParticipants_entity/entityfields/campaignanalyses/children/campaignstepid_param/valueProcess.js</valueProcess>
</entityParameter>
</children>
</entityConsumer>
<entityField>
<name>campaignStepCurrentParticipantCount</name>
......
import("system.vars");
import("system.result");
result.string(vars.get("$param.campaignParticipants_param"));
\ No newline at end of file
import("system.vars");
import("system.result");
result.string(vars.get("$field.CAMPAIGNSTEP_ID"));
\ No newline at end of file
......@@ -191,12 +191,6 @@
<entityName>CommRestriction_Entity</entityName>
<fieldName>PersonsCommRestriction</fieldName>
</dependency>
<children>
<entityParameter>
<name>ContactId_param</name>
<valueProcess>%aditoprj%/entity/CampaignParticipant_entity/entityfields/participantscommrestiction/children/contactid_param/valueProcess.js</valueProcess>
</entityParameter>
</children>
</entityConsumer>
</entityFields>
<recordContainers>
......
......@@ -56,7 +56,6 @@
<inputFormat>dd.MM.yyyy</inputFormat>
<mandatory v="true" />
<valueProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/date_start/valueProcess.js</valueProcess>
<onValueChange>%aditoprj%/entity/CampaignStep_entity/entityfields/date_start/onValueChange.js</onValueChange>
</entityField>
<entityField>
<name>DATE_END</name>
......
......@@ -19,7 +19,6 @@
<title>Advertising ban</title>
<consumer>CommRestrictionMedium</consumer>
<mandatory v="true" />
<valueProcess>%aditoprj%/entity/CommRestriction_Entity/entityfields/medium/valueProcess.js</valueProcess>
<displayValueProcess>%aditoprj%/entity/CommRestriction_Entity/entityfields/medium/displayValueProcess.js</displayValueProcess>
</entityField>
<entityField>
......
......@@ -74,12 +74,6 @@
<entityName>Organisation_entity</entityName>
<fieldName>WithPersonIdFilter</fieldName>
</dependency>
<children>
<entityParameter>
<name>ContactId_param</name>
<expose v="true" />
</entityParameter>
</children>
</entityConsumer>
<entityConsumer>
<name>Organisations</name>
......@@ -225,10 +219,6 @@
<name>DisplaySimpleName_param</name>
<valueProcess>%aditoprj%/entity/Competition_entity/entityfields/attributes/children/displaysimplename_param/valueProcess.js</valueProcess>
</entityParameter>
<entityParameter>
<name>FilteredAttributes_param</name>
<valueProcess>%aditoprj%/entity/Competition_entity/entityfields/attributes/children/filteredattributes_param/valueProcess.js</valueProcess>
</entityParameter>
</children>
</entityConsumer>
<entityField>
......
import("system.db");
import("system.result");
import("Sql_lib");
var cond = new SqlCondition();
cond.andPrepareVars("COMPETITION.OBJECT_ROWID", "$param.ObjectRowId_param");
//TODO: use a preparedCondition when available #1030812 #1034026
result.string(db.translateCondition(cond.build("1 = 1")));
\ No newline at end of file
import("system.result");
result.object([
'8af37871-d407-4414-98ad-e64dbaa5794a', // Price politics
'558419b2-6113-4060-b88d-cc6324754765', // Strength
'71226196-2812-4d70-b90f-c3e2c14fd4d1' // Weakness
]);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment