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);
}
}
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.