Skip to content

Commit 8bf0c22

Browse files
authored
Merge pull request #2264 from navikt/bugfix-startupMeetingFlow
Added new condition to handle blank first meeting held field
2 parents b3b5032 + 5377a66 commit 8bf0c22

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

force-app/main/default/flows/IPS_createOrUpdateStarttupMeeting.flow-meta.xml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,14 +247,21 @@
247247
<defaultConnectorLabel>Startup date not valid</defaultConnectorLabel>
248248
<rules>
249249
<name>Startup_date_valid</name>
250-
<conditionLogic>and</conditionLogic>
250+
<conditionLogic>or</conditionLogic>
251251
<conditions>
252252
<leftValueReference>isStartupDateValidFormula</leftValueReference>
253253
<operator>EqualTo</operator>
254254
<rightValue>
255255
<booleanValue>false</booleanValue>
256256
</rightValue>
257257
</conditions>
258+
<conditions>
259+
<leftValueReference>Get_related_work_trail.ips_First_meeting_with_the_Employer_held__c</leftValueReference>
260+
<operator>IsBlank</operator>
261+
<rightValue>
262+
<booleanValue>true</booleanValue>
263+
</rightValue>
264+
</conditions>
258265
<connector>
259266
<targetReference>updateStartUpDate</targetReference>
260267
</connector>
@@ -274,14 +281,21 @@
274281
<defaultConnectorLabel>Startup date not valid</defaultConnectorLabel>
275282
<rules>
276283
<name>Startup_date_valid_Not_new</name>
277-
<conditionLogic>and</conditionLogic>
284+
<conditionLogic>or</conditionLogic>
278285
<conditions>
279286
<leftValueReference>isStartupDateValidFormula</leftValueReference>
280287
<operator>EqualTo</operator>
281288
<rightValue>
282289
<booleanValue>false</booleanValue>
283290
</rightValue>
284291
</conditions>
292+
<conditions>
293+
<leftValueReference>Get_related_work_trail.ips_First_meeting_with_the_Employer_held__c</leftValueReference>
294+
<operator>IsBlank</operator>
295+
<rightValue>
296+
<booleanValue>true</booleanValue>
297+
</rightValue>
298+
</conditions>
285299
<connector>
286300
<targetReference>Copy_1_of_updateStartUpDate</targetReference>
287301
</connector>

0 commit comments

Comments
 (0)