Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to Or condition in TAG_Event.flow-meta.xml #2103

Merged
merged 3 commits into from
Mar 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion force-app/main/default/flows/TAG_Event.flow-meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
<defaultConnectorLabel>Default Outcome</defaultConnectorLabel>
<rules>
<name>arb_agmote_iaEvent</name>
<conditionLogic>and</conditionLogic>
<conditionLogic>or</conditionLogic>
<conditions>
<leftValueReference>$Record.RecordTypeName__c</leftValueReference>
<operator>EqualTo</operator>
Expand Down
6 changes: 3 additions & 3 deletions force-app/main/default/flows/TAG_Task.flow-meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@
</defaultConnector>
<defaultConnectorLabel>Other</defaultConnectorLabel>
<rules>
<name>AG_Oppgave_or_IA_Event</name>
<conditionLogic>and</conditionLogic>
<name>AG_Oppgave_or_IA_Task</name>
<conditionLogic>or</conditionLogic>
<conditions>
<leftValueReference>$Record.RecordTypeName__c</leftValueReference>
<operator>EqualTo</operator>
Expand All @@ -333,7 +333,7 @@
<connector>
<targetReference>Is_Task_set_to_Completed</targetReference>
</connector>
<label>AG Oppgave or IA Event</label>
<label>AG Oppgave or IA Task</label>
</rules>
</decisions>
<decisions>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>TAG_UpdateTrigger__c</fullName>
<defaultValue>false</defaultValue>
<description>This field is used to trigger update on records that have failed to be processed to kafka or nada</description>
<externalId>false</externalId>
<label>Update Trigger</label>
<type>Checkbox</type>
</CustomField>
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@
<field>Event.TAG_RelatedToObject__c</field>
<readable>true</readable>
</fieldPermissions>
<fieldPermissions>
<editable>true</editable>
<field>Event.TAG_UpdateTrigger__c</field>
<readable>true</readable>
</fieldPermissions>
<fieldPermissions>
<editable>false</editable>
<field>Event.TAG_UserNAVUnit__c</field>
Expand Down Expand Up @@ -656,6 +661,11 @@
<field>Task.TAG_RelatedToObject__c</field>
<readable>true</readable>
</fieldPermissions>
<fieldPermissions>
<editable>true</editable>
<field>Task.TAG_UpdateTrigger__c</field>
<readable>true</readable>
</fieldPermissions>
<fieldPermissions>
<editable>false</editable>
<field>Task.TAG_UserNAVUnit__c</field>
Expand Down