Skip to content

Commit

Permalink
XIVY-13150 Fix OrderProcess to use changed API
Browse files Browse the repository at this point in the history
  • Loading branch information
weissreto committed Mar 6, 2024
1 parent d4eb879 commit 7782a11
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
"BusinessNotification",
" .create()",
" .message().fromCms(\"/Notification/Messages/OrderDelivered\", in.order.product, in.customer.surname, in.customer.name)",
" .receivers().addCase().allInvolved()",
" .receivers().ofCase().addAllInvolved()",
" .send();"
]
}
Expand Down Expand Up @@ -282,7 +282,7 @@
" .template(\"Order\")",
" .payload(in.customer)",
" .message().fromCms(\"/Notification/Messages/InvoiceSent\", in.order.product)",
" .receivers().addTask().activator()",
" .receivers().ofTask().addActivator()",
" .send();"
]
}
Expand Down Expand Up @@ -351,7 +351,7 @@
" .template(\"Order\")",
" .payload(in.customer)",
" .message().fromCms(\"/Notification/Messages/OrderFinished\", in.order.product)",
" .receivers().addCase().allInvolved()",
" .receivers().ofCase().addAllInvolved()",
" .send();"
]
}
Expand Down

0 comments on commit 7782a11

Please sign in to comment.