We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be1fd1a + 65cbe37 commit 8813b0dCopy full SHA for 8813b0d
Server-Side Components/Business Rules/DateDifference.js
@@ -0,0 +1,12 @@
1
+(function executeRule(current, previous /*null when async*/) {
2
+
3
+ // Add your code here
4
+if(current.u_termination_date.changes()){
5
+ var date1=current.u_current_date;
6
+ var date2=current.u_termination_date;
7
8
+ var res=onDemand1(date1,date2);
9
+ gs.addInfoMessage("Date Difference is :"+res);
10
11
+}
12
+})(current, previous);
0 commit comments