Skip to content

Commit

Permalink
COT-694 region to be handeled in the same was as primary location if …
Browse files Browse the repository at this point in the history
…not present in booking, use joh value.
  • Loading branch information
anthonydummer committed Jan 10, 2024
1 parent 85eadd4 commit 2a994ce
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ then
attribute.put("contractType", JacksonUtils.convertObjectIntoJsonNode("Fee-Paid"));
attribute.put("workTypes", JacksonUtils.convertObjectIntoJsonNode("pre_hearing,hearing_work,post_hearing,"
+ "decision_making_work,routine_work,priority"));
attribute.put("region", JacksonUtils.convertObjectIntoJsonNode($bk.getRegionId()));
attribute.put("region", JacksonUtils.convertObjectIntoJsonNode($bk.getRegionId() != null ?
$bk.getRegionId():$joh.getRegionId()));
insert(
RoleAssignment.builder()
.actorIdType(ActorIdType.IDAM)
Expand Down

0 comments on commit 2a994ce

Please sign in to comment.