Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#contribution 3
As a Agent/Fuilfiller want to create Payroll case from HR Agent Workspace.UI action is - "Create Payroll Case" & Button is visible when assigned to is logged in user, state is Work in Progress & HR Service is - "Payroll Service".
15 changes: 15 additions & 0 deletions Client-Side Components/UI Actions/RedirectAdobeSign/AdobeSign.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// UI Action - "Redirect to Adobe Sign".
// HR Agent workspace
Trigger Condition - current.hr_service== gs.getproperty("On Boarding HR Service");
Format Configurable Workspace - "Checked" for workspace button visibility
Table - "sn_hr_le_case"

//Workspace Client script
function onClick(g_form) {

g_form.setValue("work_notes","Redirected to Adobe Application"); // Worknotes updated
g_form.addInfoMessage("Redirected to Adobe Application");
var win= top.window.open("https://xyz.eu1.echosign.com/account/homeJS",'_blank'); // Redirect to Adobe Sign page
win.focus();
g_form.save();
}
4 changes: 4 additions & 0 deletions Client-Side Components/UI Actions/RedirectAdobeSign/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#Contribution4
Create UI action "Redirect to Adobe Sign".This UI action is available in HR Agent Configurable Workspace. Once Fuilfiller click the button it will redirect to "Adobe Sign" Page for integration for Signature.

This UI action will available for "Onboarding HR Service".
Loading