Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Create inssue from Plugin whe user is a Customer

Jorge Jerez
Contributor
December 18, 2018

I'm building a Plugin for help customers to create insuis in Service Desk, actually is only working with Project Users (Managers, admins...) but not with Project Customers.

 

They can create without problem in Service Desk portal, but not ussing the plugin that's my code:

 

ApplicationUser currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser();
Project project = projectManager.getProjectObjByKey("SD");
String creada = "";
log.info("ANTES DEL IF DEL CURRENTUSER!=NULL");
if (currentUser != null) {
log.info("DESPUÉS DEL IF DEL CURRENTUSER!=NULL");

// Create mutable issue
MutableIssue newMutableIssue = issueFactory.getIssue();
//set issue type
newMutableIssue.setIssueTypeId(tarea);
// Set project
newMutableIssue.setProjectObject(project);
// Set SUMMARY
newMutableIssue.setSummary(summary);
//set DESCRIPTION
newMutableIssue.setDescription(description);
//SET APROBADOR
Collection<CustomField> lapr = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectsByName("Aprobadores");
CustomField[] oApr = lapr.toArray(new CustomField[0]);
CustomField apr = oApr[0];
log.info("APROBADORES (CAMPO): " + apr);
List<ApplicationUser> aprobadores = new ArrayList<>();
aprobadores.add(currentUser);
log.info("APROBADORES LISTA: " + aprobadores);
newMutableIssue.setCustomFieldValue(apr, aprobadores);

// set CREATOR
newMutableIssue.setReporter(currentUser);

// Create the new issue
try {
Issue newIssue = issueManager.createIssueObject(currentUser, newMutableIssue);
if (newIssue == null) {
creada = "NO";
} else {
creada = "<a href=\"" + baseurl + "/servicedesk/customer/portal/1/" + newIssue.getKey() + "\">Acceda aquí para ver su solicitud</a>";
}
} catch (CreateException e) {
log.error("Exception occurred" + e);
}

}


 

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events