Examples of saveHtmlForm()


Examples of org.openmrs.module.htmlformentry.HtmlFormEntryService.saveHtmlForm()

    }
    new HtmlFormValidator().validate(htmlForm, result);
    if (result.hasErrors()) {
      return null;
    } else {
          htmlForm = service.saveHtmlForm(htmlForm);
          request.setAttribute(WebConstants.OPENMRS_MSG_ATTR, "Saved " + htmlForm.getForm().getName() + " " + htmlForm.getForm().getVersion(), WebRequest.SCOPE_SESSION);
      return "redirect:htmlForm.form?id=" + htmlForm.getId();
    }
  }
   
View Full Code Here

Examples of org.openmrs.module.htmlformentry.HtmlFormEntryService.saveHtmlForm()

      if (clearDescriptions != null && clearDescriptions.contains(form.getId())) {
        form.setDeprecatedDescription(null);
        needToSave = true;
      }
      if (needToSave)
        service.saveHtmlForm(form);
    }
      return "redirect:migrateNamesAndDescriptions.form";
  }

  /**
 
View Full Code Here

Examples of org.openmrs.module.htmlformentry.HtmlFormEntryService.saveHtmlForm()

      HtmlFormEntryService service = HtmlFormEntryUtil.getService();
      if (htmlForm.getDeprecatedName() != null) {
        newForm.setName(htmlForm.getDeprecatedName());
        htmlForm.setDeprecatedName(null);
      }
      service.saveHtmlForm(htmlForm);
    }

 
  /**
   * Handles submission of user choices for which names and descriptions to use.
View Full Code Here

Examples of org.openmrs.module.htmlformentry.HtmlFormEntryService.saveHtmlForm()

        }
        modified = true;
      }
     
      if (modified) {
        service.saveHtmlForm(htmlForm);
      }
    }
   
    return "redirect:migrateNamesAndDescriptions.form";
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.