@Override
protected ModelAndView onSubmit(HttpServletRequest request,
HttpServletResponse response, Object command, BindException errors)
throws Exception
{
ProjectDTO grantDTO = (ProjectDTO) command;
String code = grantDTO.getSourceID();
Project grant = null;
if (code != null && !code.isEmpty())
{
grant = applicationService.getResearcherGrantByCode(code);
if (grant != null)