Skip to content
Snippets Groups Projects
Commit cfe80470 authored by srosse's avatar srosse
Browse files

no-jira: fix last step of bulk user import if the e-mail are mandatory and the...

no-jira: fix last step of bulk user import if the e-mail are mandatory and the e-mail step is disabled
parent deceb3e3
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,8 @@ public class GroupSearchController extends StepFormBasicController {
private String lastSearchValue;
@Autowired
private BusinessGroupService businessGroupService;
private boolean finishByFinish;
// constructor to be used like a normal FormBasicController
public GroupSearchController(UserRequest ureq, WindowControl wControl) {
......@@ -100,9 +102,10 @@ public class GroupSearchController extends StepFormBasicController {
}
// constructor for use in steps-wizzard
public GroupSearchController(UserRequest ureq, WindowControl wControl, Form form, StepsRunContext stepsRunContext) {
public GroupSearchController(UserRequest ureq, WindowControl wControl, Form form, StepsRunContext stepsRunContext, boolean finishByFinish) {
super(ureq, wControl, form, stepsRunContext, LAYOUT_VERTICAL, "resulttable");
Translator pT = Util.createPackageTranslator(BusinessGroupFormController.class, ureq.getLocale(), getTranslator());
this.finishByFinish = finishByFinish;
flc.setTranslator(pT);
initForm(ureq);
}
......@@ -165,7 +168,10 @@ public class GroupSearchController extends StepFormBasicController {
@Override
protected void formFinish(UserRequest ureq) {
//do nothing
if(finishByFinish) {
doSave(ureq);
fireEvent(ureq, StepsEvent.ACTIVATE_NEXT);
}
}
@Override
......
......@@ -71,7 +71,7 @@ public class ImportStep02 extends BasicStep {
*/
@Override
public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
StepFormController stepI = new GroupSearchController(ureq, windowControl, form, stepsRunContext);
StepFormController stepI = new GroupSearchController(ureq, windowControl, form, stepsRunContext, mandatoryEmail);
return stepI;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment