org.openmrs.module.lfhcforms.fragment.controller.visit.VisitStartFragmentController.java Source code

Java tutorial

Introduction

Here is the source code for org.openmrs.module.lfhcforms.fragment.controller.visit.VisitStartFragmentController.java

Source

/**
 * The contents of this file are subject to the OpenMRS Public License
 * Version 1.0 (the "License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License at
 * http://license.openmrs.org
 *
 * Software distributed under the License is distributed on an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 * License for the specific language governing rights and limitations
 * under the License.
 *
 * Copyright (C) OpenMRS, LLC.  All Rights Reserved.
 */
package org.openmrs.module.lfhcforms.fragment.controller.visit;

import java.util.Date;
import java.util.List;

import javax.servlet.http.HttpServletRequest;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.openmrs.Location;
import org.openmrs.Patient;
import org.openmrs.Visit;
import org.openmrs.VisitType;
import org.openmrs.api.VisitService;
import org.openmrs.api.context.Context;
import org.openmrs.module.appui.AppUiConstants;
import org.openmrs.module.appui.UiSessionContext;
import org.openmrs.module.emrapi.adt.AdtService;
import org.openmrs.module.emrapi.visit.VisitDomainWrapper;
import org.openmrs.module.lfhcforms.utils.VisitHelper;
import org.openmrs.module.lfhcforms.utils.VisitTypeHelper;
import org.openmrs.ui.framework.UiUtils;
import org.openmrs.ui.framework.annotation.SpringBean;
import org.openmrs.ui.framework.fragment.FragmentModel;
import org.openmrs.ui.framework.fragment.action.FailureResult;
import org.openmrs.ui.framework.fragment.action.FragmentActionResult;
import org.openmrs.ui.framework.fragment.action.SuccessResult;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.RequestParam;

@Transactional
public class VisitStartFragmentController {

    protected static final Log log = LogFactory.getLog(VisitStartFragmentController.class);

    /**
     * 
     * Controller to let user start a visit with a specific visit type 
     * 
     */
    public void controller(FragmentModel model, @RequestParam("patientId") Patient patient, UiUtils ui,
            @SpringBean("adtService") AdtService adtService, UiSessionContext sessionContext) {

        model.addAttribute("visitTypes", null);
        model.addAttribute("activeVisits", null);
        model.addAttribute("currentVisitType", null);

        VisitService vs = Context.getVisitService();
        List<VisitType> visitTypes = vs.getAllVisitTypes(false);

        VisitHelper visitHelper = new VisitHelper();
        VisitTypeHelper visitTypeHelper = new VisitTypeHelper();

        // send active visits to the view, if any.
        List<Visit> activeVisits = visitHelper.getActiveVisits(patient, adtService);

        // get the current visit's visit type, if any active visit at the current visit location
        VisitDomainWrapper activeVisitWrapper = adtService.getActiveVisit(patient,
                sessionContext.getSessionLocation());
        if (activeVisitWrapper != null) {
            VisitType currentVisitType = activeVisitWrapper.getVisit().getVisitType();
            model.addAttribute("currentVisitType", currentVisitType);
        }

        // get the visit types, ordered
        List<VisitType> typesOrdered = visitTypeHelper.getOrderedVisitTypes(visitTypes);

        model.addAttribute("activeVisits", activeVisits);
        model.addAttribute("visitTypes", typesOrdered);
    }

    /**
     * 
     * Saves visit with a visit type provided by the view
     * 
     */
    public FragmentActionResult create(@RequestParam("patientId") Patient patient,
            @RequestParam("selectedType") VisitType selectedType, UiUtils uiUtils, UiSessionContext uiContext,
            HttpServletRequest request, @SpringBean("adtService") AdtService adtService,
            @SpringBean("visitService") VisitService visitService,
            @SpringBean("visitHelper") VisitHelper visitHelper,
            @SpringBean("visitTypeHelper") VisitTypeHelper visitTypeHelper) {

        // Do not save if patient already has active visit, in any location
        List<Visit> activeVisits = visitHelper.getActiveVisits(patient, adtService);
        if (activeVisits.size() != 0) {
            log.warn("Patient already has active visits. " + activeVisits.toString());
            return new FailureResult(uiUtils.message("coreapps.activeVisits.alreadyExists"));
        }

        // create the visit
        Visit visit = adtService.ensureVisit(patient, new Date(), uiContext.getSessionLocation());
        // set the visit type
        visit.setVisitType(selectedType);
        visitService.saveVisit(visit);
        Location loginLocation = uiContext.getSessionLocation();
        visitTypeHelper.setEncounterBasedOnVisitType(visit, loginLocation);

        request.getSession().setAttribute(AppUiConstants.SESSION_ATTRIBUTE_INFO_MESSAGE,
                uiUtils.message("coreapps.visit.createQuickVisit.successMessage", uiUtils.format(patient)));
        request.getSession().setAttribute(AppUiConstants.SESSION_ATTRIBUTE_TOAST_MESSAGE, "true");

        return new SuccessResult();
    }

}