org.openmrs.module.cohort.web.controller.AddObs.java Source code

Java tutorial

Introduction

Here is the source code for org.openmrs.module.cohort.web.controller.AddObs.java

Source

/**
 * This Source Code Form is subject to the terms of the Mozilla Public License,
 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
 * obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
 * the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
 *
 * Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
 * graphic logo is a trademark of OpenMRS Inc.
 */
package org.openmrs.module.cohort.web.controller;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.openmrs.Concept;
import org.openmrs.Location;
import org.openmrs.api.ConceptService;
import org.openmrs.api.LocationService;
import org.openmrs.api.context.Context;
import org.openmrs.module.cohort.CohortEncounter;
import org.openmrs.module.cohort.CohortM;
import org.openmrs.module.cohort.CohortObs;
import org.openmrs.module.cohort.api.CohortService;
import org.openmrs.web.WebConstants;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.context.request.WebRequest;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpSession;
import java.util.ArrayList;
import java.util.List;

/**
 * The main controller.
 */
@Controller
public class AddObs {

    protected final Log log = LogFactory.getLog(getClass());

    @RequestMapping(value = "/module/cohort/addobs", method = RequestMethod.GET)
    public void manage(ModelMap map) {
        map.addAttribute("cohortobs", new CohortObs());
        List<String> cohortnames = new ArrayList<String>();
        CohortService cservice = Context.getService(CohortService.class);
        List<CohortM> list1 = cservice.findCohorts();
        for (int i = 0; i < list1.size(); i++) {
            CohortM c = list1.get(i);
            cohortnames.add(c.getName());
        }
        List<Integer> etype = new ArrayList<Integer>();
        List<CohortEncounter> enctypes = cservice.findCohortEncounters();
        for (int l = 0; l < enctypes.size(); l++) {
            CohortEncounter e = enctypes.get(l);
            etype.add(e.getId());
        }
        map.addAttribute("encids", etype);
        LocationService service = Context.getLocationService();
        List<Location> formats = service.getAllLocations();
        ConceptService cs = Context.getConceptService();
        List<Concept> concept = cs.getAllConcepts();
        map.addAttribute("concepts", concept);
        map.addAttribute("locations", formats);
        map.addAttribute("formats1", cohortnames);
    }

    @RequestMapping(value = "/module/cohort/addobs.form", method = RequestMethod.POST)
    public ModelAndView onSubmit(WebRequest request, HttpSession httpSession, ModelMap model,
            @RequestParam(required = false, value = "obsDateTime") String date,
            @ModelAttribute("cohortobs") CohortObs cobs, BindingResult errors) {
        CohortService departmentService = Context.getService(CohortService.class);
        if (!Context.isAuthenticated()) {
            errors.reject("Required");
        }

        Location l = new Location();
        Concept co = new Concept();
        LocationService service = Context.getLocationService();
        ConceptService cs = Context.getConceptService();
        List<Concept> concept = cs.getAllConcepts();
        List<String> cohortnames = new ArrayList<String>();
        CohortService cservice = Context.getService(CohortService.class);
        CohortM c1 = new CohortM();
        CohortEncounter ce = new CohortEncounter();

        List<CohortM> list1 = cservice.findCohorts();
        for (int d = 0; d < list1.size(); d++) {
            CohortM c = list1.get(d);
            cohortnames.add(c.getName());
        }
        List<Integer> etype = new ArrayList<Integer>();
        List<CohortEncounter> enctypes = cservice.findCohortEncounters();
        for (int a = 0; a < enctypes.size(); a++) {
            CohortEncounter e = enctypes.get(a);
            etype.add(e.getId());
        }
        List<Location> formats = service.getAllLocations();
        model.addAttribute("concepts", concept);
        model.addAttribute("locations", formats);
        model.addAttribute("encids", etype);

        String encounterid = request.getParameter("encid");
        Integer id = Integer.parseInt(encounterid);
        String location = request.getParameter("location");
        String cohort = request.getParameter("names");
        String concept1 = request.getParameter("concept");
        if (date == "") {
            httpSession.setAttribute(WebConstants.OPENMRS_ERROR_ATTR, "Values cannot be null");
        } else {
            List<CohortM> cohort2 = cservice.findCohorts(cohort);
            for (int i = 0; i < cohort2.size(); i++) {
                c1 = cohort2.get(i);
            }
            List<CohortEncounter> enctypes1 = cservice.findCohortEnc(id);
            for (int g = 0; g < enctypes1.size(); g++) {
                ce = enctypes1.get(g);
            }
            List<Location> loc = service.getLocations(location);
            for (int j = 0; j < loc.size(); j++) {
                l = loc.get(j);
            }
            List<Concept> con = cs.getConceptsByName(concept1);
            for (int x = 0; x < con.size(); x++) {
                co = con.get(x);
            }
            cobs.setCohort(c1);
            //cobs.setVoided(false);
            //cobs.setConcept(co);
            cobs.setEncounterId(ce);
            cobs.setLocation(l);
            departmentService.saveCohortObs(cobs);
            httpSession.setAttribute(WebConstants.OPENMRS_MSG_ATTR, "insertion success");
        }
        return null;
    }

}