use of org.akaza.openclinica.bean.core.DiscrepancyNoteType in project OpenClinica by OpenClinica.
the class ViewNotesServlet method generateDiscrepancyNotesSummary.
/**
* @param resolveViewNotesService
* @return
*/
private Map<String, Map<String, String>> generateDiscrepancyNotesSummary(DiscrepancyNotesSummary summary) {
Map<String, Map<String, String>> result = new HashMap<String, Map<String, String>>();
for (ResolutionStatus resStatus : ResolutionStatus.list) {
Map<String, String> resStatusMap = new HashMap<String, String>(DiscrepancyNoteType.list.size());
for (DiscrepancyNoteType dnType : DiscrepancyNoteType.list) {
int val = summary.getSum(resStatus, dnType);
resStatusMap.put(dnType.getName(), (val == 0 ? "--" : Integer.toString(val)));
}
int acc = summary.getSum(resStatus);
resStatusMap.put("Total", (acc == 0 ? "--" : Integer.toString(acc)));
result.put(resStatus.getName(), resStatusMap);
}
return result;
}
use of org.akaza.openclinica.bean.core.DiscrepancyNoteType in project OpenClinica by OpenClinica.
the class ViewDiscrepancyNoteServlet method processRequest.
@Override
@SuppressWarnings("unchecked")
protected void processRequest() throws Exception {
FormProcessor fp = new FormProcessor(request);
int eventCRFId = fp.getInt(CreateDiscrepancyNoteServlet.EVENT_CRF_ID);
request.setAttribute(CreateDiscrepancyNoteServlet.EVENT_CRF_ID, new Integer(eventCRFId));
request.setAttribute(DIS_TYPES, DiscrepancyNoteType.list);
if (currentRole.getRole().equals(Role.RESEARCHASSISTANT) || currentRole.getRole().equals(Role.RESEARCHASSISTANT2) || currentRole.getRole().equals(Role.INVESTIGATOR)) {
ArrayList<ResolutionStatus> resStatuses = new ArrayList();
resStatuses.add(ResolutionStatus.UPDATED);
resStatuses.add(ResolutionStatus.RESOLVED);
request.setAttribute(RES_STATUSES, resStatuses);
// it's for parentDNId is null or 0
request.setAttribute(WHICH_RES_STATUSES, "22");
ArrayList<ResolutionStatus> resStatuses2 = new ArrayList<ResolutionStatus>();
resStatuses2.add(ResolutionStatus.OPEN);
resStatuses2.add(ResolutionStatus.RESOLVED);
request.setAttribute(RES_STATUSES2, resStatuses2);
List<DiscrepancyNoteType> types2 = new ArrayList<DiscrepancyNoteType>(DiscrepancyNoteType.list);
types2.remove(DiscrepancyNoteType.QUERY);
request.setAttribute(DIS_TYPES2, types2);
} else if (currentRole.getRole().equals(Role.MONITOR)) {
ArrayList<ResolutionStatus> resStatuses = new ArrayList();
resStatuses.add(ResolutionStatus.OPEN);
resStatuses.add(ResolutionStatus.UPDATED);
resStatuses.add(ResolutionStatus.CLOSED);
request.setAttribute(RES_STATUSES, resStatuses);
request.setAttribute(WHICH_RES_STATUSES, "1");
ArrayList<DiscrepancyNoteType> types2 = new ArrayList<DiscrepancyNoteType>();
types2.add(DiscrepancyNoteType.QUERY);
request.setAttribute(DIS_TYPES2, types2);
} else {
// Role.STUDYDIRECTOR Role.COORDINATOR
List<ResolutionStatus> resStatuses = new ArrayList<ResolutionStatus>(ResolutionStatus.list);
resStatuses.remove(ResolutionStatus.NOT_APPLICABLE);
request.setAttribute(RES_STATUSES, resStatuses);
;
// it's for parentDNId is null or 0 and FVC
request.setAttribute(WHICH_RES_STATUSES, "2");
ArrayList<ResolutionStatus> resStatuses2 = new ArrayList<ResolutionStatus>();
resStatuses2.add(ResolutionStatus.OPEN);
resStatuses2.add(ResolutionStatus.RESOLVED);
request.setAttribute(RES_STATUSES2, resStatuses2);
}
// logic from CreateDiscrepancyNoteServlet
request.setAttribute("unlock", "0");
fp.getBoolean(IS_REASON_FOR_CHANGE);
fp.getBoolean(ERROR_FLAG);
String monitor = fp.getString("monitor");
// } else if ("1".equalsIgnoreCase(monitor)) {// change to allow user to
if ("1".equalsIgnoreCase(monitor)) {
// change to allow user to
// enter note for all items,
// not just blank items
request.setAttribute(CAN_MONITOR, "1");
request.setAttribute("monitor", monitor);
} else {
request.setAttribute(CAN_MONITOR, "0");
}
Boolean fromBox = fp.getBoolean(FROM_BOX);
if (fromBox == null || !fromBox) {
session.removeAttribute(BOX_TO_SHOW);
session.removeAttribute(BOX_DN_MAP);
session.removeAttribute(AUTOVIEWS);
}
Boolean refresh = fp.getBoolean("refresh");
request.setAttribute("refresh", refresh + "");
String ypos = fp.getString("y");
if (ypos == null || ypos.length() == 0) {
ypos = "0";
}
request.setAttribute("y", ypos);
DiscrepancyNoteDAO dndao = new DiscrepancyNoteDAO(sm.getDataSource());
int entityId = fp.getInt(ENTITY_ID, true);
String name = fp.getString(ENTITY_TYPE, true);
String column = fp.getString(ENTITY_COLUMN, true);
String field = fp.getString(ENTITY_FIELD, true);
String isLocked = fp.getString(LOCKED_FLAG);
if (!StringUtil.isBlank(isLocked) && "yes".equalsIgnoreCase(isLocked)) {
request.setAttribute(LOCKED_FLAG, "yes");
} else {
request.setAttribute(LOCKED_FLAG, "no");
}
DateFormat dateFormatter = DateFormat.getDateInstance(DateFormat.DEFAULT, locale);
int subjectId = fp.getInt(CreateDiscrepancyNoteServlet.SUBJECT_ID, true);
int itemId = fp.getInt(CreateDiscrepancyNoteServlet.ITEM_ID, true);
StudySubjectBean ssub = new StudySubjectBean();
if (subjectId > 0) {
StudySubjectDAO ssdao = new StudySubjectDAO(sm.getDataSource());
ssub = (StudySubjectBean) ssdao.findByPK(subjectId);
request.setAttribute("noteSubject", ssub);
}
ItemBean item = new ItemBean();
if (itemId > 0) {
ItemDAO idao = new ItemDAO(sm.getDataSource());
item = (ItemBean) idao.findByPK(itemId);
request.setAttribute("item", item);
request.setAttribute("entityName", item.getName());
}
ItemDataBean itemData = new ItemDataBean();
SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy");
int preUserId = 0;
if (!StringUtil.isBlank(name)) {
if ("itemData".equalsIgnoreCase(name)) {
ItemDataDAO iddao = new ItemDataDAO(sm.getDataSource());
itemData = (ItemDataBean) iddao.findByPK(entityId);
request.setAttribute("entityValue", itemData.getValue());
request.setAttribute("entityName", item.getName());
EventCRFDAO ecdao = new EventCRFDAO(sm.getDataSource());
EventCRFBean ec = (EventCRFBean) ecdao.findByPK(itemData.getEventCRFId());
preUserId = ec.getOwnerId() > 0 ? ec.getOwnerId() : 0;
request.setAttribute("entityCreatedDate", sdf.format(ec.getCreatedDate()));
StudyEventDAO sed = new StudyEventDAO(sm.getDataSource());
StudyEventBean se = (StudyEventBean) sed.findByPK(ec.getStudyEventId());
StudyEventDefinitionDAO seddao = new StudyEventDefinitionDAO(sm.getDataSource());
StudyEventDefinitionBean sedb = (StudyEventDefinitionBean) seddao.findByPK(se.getStudyEventDefinitionId());
se.setName(sedb.getName());
request.setAttribute("studyEvent", se);
CRFVersionDAO cvdao = new CRFVersionDAO(sm.getDataSource());
CRFVersionBean cv = (CRFVersionBean) cvdao.findByPK(ec.getCRFVersionId());
CRFDAO cdao = new CRFDAO(sm.getDataSource());
CRFBean crf = (CRFBean) cdao.findByPK(cv.getCrfId());
request.setAttribute("crf", crf);
} else if ("studySub".equalsIgnoreCase(name)) {
StudySubjectDAO ssdao = new StudySubjectDAO(sm.getDataSource());
ssub = (StudySubjectBean) ssdao.findByPK(entityId);
SubjectDAO sdao = new SubjectDAO(sm.getDataSource());
SubjectBean sub = (SubjectBean) sdao.findByPK(ssub.getSubjectId());
request.setAttribute("noteSubject", ssub);
if (!StringUtil.isBlank(column)) {
if ("enrollment_date".equalsIgnoreCase(column)) {
if (ssub.getEnrollmentDate() != null) {
request.setAttribute("entityValue", dateFormatter.format(ssub.getEnrollmentDate()));
}
request.setAttribute("entityName", resword.getString("enrollment_date"));
} else if ("gender".equalsIgnoreCase(column)) {
request.setAttribute("entityValue", sub.getGender() + "");
request.setAttribute("entityName", resword.getString("gender"));
} else if ("date_of_birth".equalsIgnoreCase(column)) {
if (sub.getDateOfBirth() != null) {
request.setAttribute("entityValue", dateFormatter.format(sub.getDateOfBirth()));
}
request.setAttribute("entityName", resword.getString("date_of_birth"));
} else if ("unique_identifier".equalsIgnoreCase(column)) {
if (sub.getUniqueIdentifier() != null) {
request.setAttribute("entityValue", sub.getUniqueIdentifier());
}
request.setAttribute("entityName", resword.getString("unique_identifier"));
}
}
preUserId = ssub.getOwnerId() > 0 ? ssub.getOwnerId() : 0;
request.setAttribute("entityCreatedDate", sdf.format(ssub.getCreatedDate()));
} else if ("subject".equalsIgnoreCase(name)) {
SubjectDAO sdao = new SubjectDAO(sm.getDataSource());
SubjectBean sub = (SubjectBean) sdao.findByPK(entityId);
// be caution: here for subject, noteSubject is SubjectBean and
// label is unique_identifier
sub.setLabel(sub.getUniqueIdentifier());
request.setAttribute("noteSubject", sub);
if (!StringUtil.isBlank(column)) {
if ("gender".equalsIgnoreCase(column)) {
request.setAttribute("entityValue", ssub.getGender() + "");
request.setAttribute("entityName", resword.getString("gender"));
} else if ("date_of_birth".equalsIgnoreCase(column)) {
if (sub.getDateOfBirth() != null) {
request.setAttribute("entityValue", dateFormatter.format(sub.getDateOfBirth()));
}
request.setAttribute("entityName", resword.getString("date_of_birth"));
} else if ("unique_identifier".equalsIgnoreCase(column)) {
request.setAttribute("entityValue", sub.getUniqueIdentifier());
request.setAttribute("entityName", resword.getString("unique_identifier"));
}
}
preUserId = sub.getOwnerId() > 0 ? sub.getOwnerId() : 0;
request.setAttribute("entityCreatedDate", sdf.format(sub.getCreatedDate()));
} else if ("studyEvent".equalsIgnoreCase(name)) {
StudyEventDAO sed = new StudyEventDAO(sm.getDataSource());
StudyEventBean se = (StudyEventBean) sed.findByPK(entityId);
StudyEventDefinitionDAO seddao = new StudyEventDefinitionDAO(sm.getDataSource());
StudyEventDefinitionBean sedb = (StudyEventDefinitionBean) seddao.findByPK(se.getStudyEventDefinitionId());
se.setName(sedb.getName());
request.setAttribute("studyEvent", se);
request.setAttribute("noteSubject", new StudySubjectDAO(sm.getDataSource()).findByPK(se.getStudySubjectId()));
if (!StringUtil.isBlank(column)) {
if ("location".equalsIgnoreCase(column)) {
request.setAttribute("entityValue", se.getLocation());
request.setAttribute("entityName", resword.getString("location"));
} else if ("start_date".equalsIgnoreCase(column)) {
if (se.getDateStarted() != null) {
request.setAttribute("entityValue", dateFormatter.format(se.getDateStarted()));
}
request.setAttribute("entityName", resword.getString("start_date"));
} else if ("end_date".equalsIgnoreCase(column)) {
if (se.getDateEnded() != null) {
request.setAttribute("entityValue", dateFormatter.format(se.getDateEnded()));
}
request.setAttribute("entityName", resword.getString("end_date"));
}
}
preUserId = se.getOwnerId() > 0 ? se.getOwnerId() : 0;
request.setAttribute("entityCreatedDate", sdf.format(se.getCreatedDate()));
} else if ("eventCrf".equalsIgnoreCase(name)) {
EventCRFDAO ecdao = new EventCRFDAO(sm.getDataSource());
EventCRFBean ec = (EventCRFBean) ecdao.findByPK(entityId);
if (!StringUtil.isBlank(column)) {
if ("date_interviewed".equals(column)) {
if (ec.getDateInterviewed() != null) {
request.setAttribute("entityValue", dateFormatter.format(ec.getDateInterviewed()));
}
request.setAttribute("entityName", resword.getString("date_interviewed"));
} else if ("interviewer_name".equals(column)) {
request.setAttribute("entityValue", ec.getInterviewerName());
request.setAttribute("entityName", resword.getString("interviewer_name"));
}
}
setupStudyEventCRFAttributes(ec);
preUserId = ec.getOwnerId() > 0 ? ec.getOwnerId() : 0;
request.setAttribute("entityCreatedDate", sdf.format(ec.getCreatedDate()));
}
}
boolean writeToDB = fp.getBoolean(CreateDiscrepancyNoteServlet.WRITE_TO_DB, true);
HashMap<Integer, Integer> autoviews = (HashMap<Integer, Integer>) session.getAttribute(AUTOVIEWS);
autoviews = autoviews == null ? new HashMap<Integer, Integer>() : autoviews;
HashMap<Integer, DiscrepancyNoteBean> boxDNMap = (HashMap<Integer, DiscrepancyNoteBean>) session.getAttribute(BOX_DN_MAP);
if (boxDNMap == null || !boxDNMap.containsKey(0)) {
boxDNMap = new HashMap<Integer, DiscrepancyNoteBean>();
// initialize dn for a new thread
DiscrepancyNoteBean dnb = new DiscrepancyNoteBean();
if (currentRole.getRole().equals(Role.RESEARCHASSISTANT) || currentRole.getRole().equals(Role.RESEARCHASSISTANT2) || currentRole.getRole().equals(Role.INVESTIGATOR)) {
dnb.setDiscrepancyNoteTypeId(DiscrepancyNoteType.ANNOTATION.getId());
dnb.setResolutionStatusId(ResolutionStatus.NOT_APPLICABLE.getId());
autoviews.put(0, 0);
// request.setAttribute("autoView", "0");
} else {
dnb.setDiscrepancyNoteTypeId(DiscrepancyNoteType.QUERY.getId());
dnb.setAssignedUserId(preUserId);
autoviews.put(0, 1);
// request.setAttribute("autoView", "1");
}
boxDNMap.put(0, dnb);
} else if (boxDNMap.containsKey(0)) {
int dnTypeId = boxDNMap.get(0).getDiscrepancyNoteTypeId();
autoviews.put(0, dnTypeId == 3 ? 1 : 0);
}
if (boxDNMap.containsKey(0)) {
int dnTypeId0 = boxDNMap.get(0).getDiscrepancyNoteTypeId();
if (dnTypeId0 == 2 || dnTypeId0 == 4) {
request.setAttribute("typeID0", dnTypeId0 + "");
}
}
// request.setAttribute("enterData", enterData);
request.setAttribute("monitor", monitor);
request.setAttribute(ENTITY_ID, entityId + "");
request.setAttribute(ENTITY_TYPE, name);
request.setAttribute(ENTITY_FIELD, field);
request.setAttribute(ENTITY_COLUMN, column);
request.setAttribute(CreateDiscrepancyNoteServlet.WRITE_TO_DB, writeToDB ? "1" : "0");
ArrayList notes = (ArrayList) dndao.findAllByEntityAndColumn(name, entityId, column);
if (notes.size() > 0) {
notes.get(0);
// @pgawade 21-May-2011 Corrected the condition to throw no access
// error
StudyDAO studyDAO = new StudyDAO(sm.getDataSource());
int parentStudyForNoteSub = 0;
// @pgawade #9801: 07-June-2011 corrected the way to get study
// subject id associated with discrepancy note
// int noteSubId = note.getOwnerId();
StudySubjectDAO ssdao = new StudySubjectDAO(sm.getDataSource());
// StudySubjectBean notessub = (StudySubjectBean)
// ssdao.findByPK(noteSubId);
StudySubjectBean notessub = (StudySubjectBean) ssdao.findByPK(subjectId);
StudyBean studyBeanSub = (StudyBean) studyDAO.findByPK(notessub.getStudyId());
if (null != studyBeanSub) {
parentStudyForNoteSub = studyBeanSub.getParentStudyId();
}
if (notessub.getStudyId() != currentStudy.getId() && currentStudy.getId() != parentStudyForNoteSub) {
addPageMessage(noAccessMessage);
throw new InsufficientPermissionException(Page.MENU_SERVLET, exceptionName, "1");
}
}
FormDiscrepancyNotes newNotes = (FormDiscrepancyNotes) session.getAttribute(AddNewSubjectServlet.FORM_DISCREPANCY_NOTES_NAME);
Map<Integer, DiscrepancyNoteBean> noteTree = new LinkedHashMap<Integer, DiscrepancyNoteBean>();
String session_key = eventCRFId + "_" + field;
ArrayList newFieldNotes = null;
if (newNotes != null && (!newNotes.getNotes(field).isEmpty() || !newNotes.getNotes(session_key).isEmpty())) {
newFieldNotes = newNotes.getNotes(field);
if (newFieldNotes == null || newFieldNotes.size() == 0) {
newFieldNotes = newNotes.getNotes(session_key);
}
// System.out.println("how many notes:" + newFieldNotes.size());
for (int i = 0; i < newFieldNotes.size(); i++) {
DiscrepancyNoteBean note = (DiscrepancyNoteBean) newFieldNotes.get(i);
note.setLastUpdator(ub);
note.setLastDateUpdated(new Date());
note.setDisType(DiscrepancyNoteType.get(note.getDiscrepancyNoteTypeId()));
note.setResStatus(ResolutionStatus.get(note.getResolutionStatusId()));
note.setSaved(false);
if (itemId > 0) {
note.setEntityName(item.getName());
note.setEntityValue(itemData.getValue());
}
note.setSubjectName(ssub.getName());
note.setEntityType(name);
int pId = note.getParentDnId();
if (pId == 0) {
// we can only keep one unsaved note because
// note.id == 0
noteTree.put(note.getId(), note);
}
}
for (int i = 0; i < newFieldNotes.size(); i++) {
DiscrepancyNoteBean note = (DiscrepancyNoteBean) newFieldNotes.get(i);
int pId = note.getParentDnId();
if (pId > 0) {
note.setSaved(false);
note.setLastUpdator(ub);
note.setLastDateUpdated(new Date());
note.setEntityName(item.getName());
note.setSubjectName(ssub.getName());
note.setEntityType(name);
note.setDisType(DiscrepancyNoteType.get(note.getDiscrepancyNoteTypeId()));
note.setResStatus(ResolutionStatus.get(note.getResolutionStatusId()));
DiscrepancyNoteBean parent = noteTree.get(new Integer(pId));
if (parent != null) {
parent.getChildren().add(note);
}
}
}
}
UserAccountDAO udao = new UserAccountDAO(sm.getDataSource());
HashMap<Integer, String> fvcInitAssigns = new HashMap<Integer, String>();
for (int i = 0; i < notes.size(); i++) {
DiscrepancyNoteBean note = (DiscrepancyNoteBean) notes.get(i);
note.setColumn(column);
note.setEntityId(entityId);
note.setEntityType(name);
note.setField(field);
Date lastUpdatedDate = note.getCreatedDate();
UserAccountBean lastUpdator = (UserAccountBean) udao.findByPK(note.getOwnerId());
note.setLastUpdator(lastUpdator);
note.setLastDateUpdated(lastUpdatedDate);
int pId = note.getParentDnId();
note.setDisType(DiscrepancyNoteType.get(note.getDiscrepancyNoteTypeId()));
note.setResStatus(ResolutionStatus.get(note.getResolutionStatusId()));
if (pId == 0) {
noteTree.put(new Integer(note.getId()), note);
}
}
for (int i = 0; i < notes.size(); i++) {
DiscrepancyNoteBean note = (DiscrepancyNoteBean) notes.get(i);
int pId = note.getParentDnId();
if (itemId > 0) {
note.setEntityName(item.getName());
note.setEntityValue(itemData.getValue());
}
note.setSubjectName(ssub.getName());
note.setEntityType(name);
Date lastUpdatedDate = note.getCreatedDate();
UserAccountBean lastUpdator = (UserAccountBean) udao.findByPK(note.getOwnerId());
note.setLastUpdator(lastUpdator);
note.setLastDateUpdated(lastUpdatedDate);
note.setDisType(DiscrepancyNoteType.get(note.getDiscrepancyNoteTypeId()));
note.setResStatus(ResolutionStatus.get(note.getResolutionStatusId()));
if (pId > 0) {
DiscrepancyNoteBean parent = noteTree.get(new Integer(pId));
if (parent != null) {
parent.getChildren().add(note);
if (!note.getCreatedDate().before(parent.getLastDateUpdated())) {
parent.setLastDateUpdated(note.getCreatedDate());
}
if (note.getDiscrepancyNoteTypeId() == 1 && note.getAssignedUserId() > 0) {
int ownerId = note.getOwnerId();
if (fvcInitAssigns.containsKey(pId)) {
String f = fvcInitAssigns.get(pId);
String fn = note.getId() + "." + ownerId;
if (fn.compareTo(f) < 0) {
fvcInitAssigns.put(pId, fn);
}
} else {
fvcInitAssigns.put(pId, note.getId() + "." + ownerId);
}
}
}
}
}
Set parents = noteTree.keySet();
Iterator it = parents.iterator();
while (it.hasNext()) {
Integer key = (Integer) it.next();
DiscrepancyNoteBean note = noteTree.get(key);
note.setNumChildren(note.getChildren().size());
note.setEntityType(name);
if (!boxDNMap.containsKey(key)) {
DiscrepancyNoteBean dn = new DiscrepancyNoteBean();
dn.setId(key);
int dnTypeId = note.getDiscrepancyNoteTypeId();
dn.setDiscrepancyNoteTypeId(dnTypeId);
if (dnTypeId == 3) {
// JsonQuery
dn.setAssignedUserId(note.getOwnerId());
} else if (dnTypeId == 1) {
// FVC
if (fvcInitAssigns.containsKey(key)) {
String[] s = fvcInitAssigns.get(key).split("\\.");
int i = Integer.parseInt(s.length == 2 ? s[1].trim() : "0");
dn.setAssignedUserId(i);
}
}
Role r = currentRole.getRole();
// currentStudy.getId() != currentStudy.getParentStudyId()) {
if (r.equals(Role.RESEARCHASSISTANT) || r.equals(Role.RESEARCHASSISTANT2) || r.equals(Role.INVESTIGATOR)) {
if (dn.getDiscrepancyNoteTypeId() == DiscrepancyNoteType.QUERY.getId() && note.getResStatus().getId() == ResolutionStatus.UPDATED.getId()) {
dn.setResolutionStatusId(ResolutionStatus.UPDATED.getId());
} else {
dn.setResolutionStatusId(ResolutionStatus.RESOLVED.getId());
}
if (dn.getAssignedUserId() > 0) {
autoviews.put(key, 1);
} else {
autoviews.put(key, 0);
}
// copied from CreateDiscrepancyNoteServlet
// request.setAttribute("autoView", "0");
// hide the panel, tbh
} else {
if (note.getResStatus().getId() == ResolutionStatus.RESOLVED.getId()) {
dn.setResolutionStatusId(ResolutionStatus.CLOSED.getId());
} else if (note.getResStatus().getId() == ResolutionStatus.CLOSED.getId()) {
dn.setResolutionStatusId(ResolutionStatus.UPDATED.getId());
} else if (r.equals(Role.MONITOR)) {
dn.setResolutionStatusId(ResolutionStatus.UPDATED.getId());
} else if (dn.getDiscrepancyNoteTypeId() == 1) {
dn.setResolutionStatusId(ResolutionStatus.RESOLVED.getId());
} else {
dn.setResolutionStatusId(ResolutionStatus.UPDATED.getId());
}
autoviews.put(key, 1);
if (dn.getAssignedUserId() > 0) {
} else {
dn.setAssignedUserId(preUserId);
}
}
boxDNMap.put(key, dn);
}
}
session.setAttribute(BOX_DN_MAP, boxDNMap);
session.setAttribute(AUTOVIEWS, autoviews);
// noteTree is a Hashmap mapping note id to a parent note, with all the
// child notes
// stored in the children List.
// BWP 3029>>make sure the parent note has an updated resolution status
// and
// updated date
fixStatusUpdatedDate(noteTree);
request.setAttribute(DIS_NOTES, noteTree);
// copied from CreatediscrepancyNoteServlet generateUserAccounts
StudyDAO studyDAO = new StudyDAO(sm.getDataSource());
StudyBean subjectStudy = studyDAO.findByStudySubjectId(subjectId);
int studyId = currentStudy.getId();
ArrayList<UserAccountBean> userAccounts = new ArrayList();
if (currentStudy.getParentStudyId() > 0) {
userAccounts = udao.findAllUsersByStudyOrSite(studyId, currentStudy.getParentStudyId(), subjectId);
} else if (subjectStudy.getParentStudyId() > 0) {
userAccounts = udao.findAllUsersByStudyOrSite(subjectStudy.getId(), subjectStudy.getParentStudyId(), subjectId);
} else {
userAccounts = udao.findAllUsersByStudyOrSite(studyId, 0, subjectId);
}
request.setAttribute(USER_ACCOUNTS, userAccounts);
request.setAttribute(VIEW_DN_LINK, this.getPageServletFileName());
// audit log items (from ViewItemAuditLogServlet.java)
AuditDAO adao = new AuditDAO(sm.getDataSource());
if (name.equalsIgnoreCase("studysub")) {
name = "study_subject";
} else if (name.equalsIgnoreCase("eventcrf")) {
name = "event_crf";
} else if (name.equalsIgnoreCase("studyevent")) {
name = "study_event";
} else if (name.equalsIgnoreCase("itemdata")) {
name = "item_data";
}
ArrayList itemAuditEvents = adao.findItemAuditEvents(entityId, name);
request.setAttribute("itemAudits", itemAuditEvents);
forwardPage(Page.VIEW_DISCREPANCY_NOTE);
}
use of org.akaza.openclinica.bean.core.DiscrepancyNoteType in project OpenClinica by OpenClinica.
the class CreateDiscrepancyNoteServlet method processRequest.
@Override
protected void processRequest() throws Exception {
FormProcessor fp = new FormProcessor(request);
DiscrepancyNoteDAO dndao = new DiscrepancyNoteDAO(sm.getDataSource());
List<DiscrepancyNoteType> types = DiscrepancyNoteType.list;
request.setAttribute(DIS_TYPES, types);
request.setAttribute(RES_STATUSES, ResolutionStatus.list);
//this should be set based on a new property of DisplayItemBean
boolean writeToDB = fp.getBoolean(WRITE_TO_DB, true);
boolean isReasonForChange = fp.getBoolean(IS_REASON_FOR_CHANGE);
int entityId = fp.getInt(ENTITY_ID);
// subjectId has to be added to the database when disc notes area saved
// as entity_type 'subject'
int subjectId = fp.getInt(SUBJECT_ID);
int itemId = fp.getInt(ITEM_ID);
String entityType = fp.getString(ENTITY_TYPE);
String field = fp.getString(ENTITY_FIELD);
String column = fp.getString(ENTITY_COLUMN);
int parentId = fp.getInt(PARENT_ID);
//patch for repeating groups and RFC on empty fields
int isGroup = fp.getInt(IS_GROUP_ITEM);
// request.setAttribute(IS_GROUP_ITEM, new Integer(isGroup));
int eventCRFId = fp.getInt(EVENT_CRF_ID);
request.setAttribute(EVENT_CRF_ID, new Integer(eventCRFId));
int rowCount = fp.getInt(PARENT_ROW_COUNT);
// run only once: try to recalculate writeToDB
if (!StringUtils.isBlank(entityType) && "itemData".equalsIgnoreCase(entityType) && isGroup != 0 && eventCRFId != 0) {
// request.setAttribute(PARENT_ROW_COUNT, new Integer(eventCRFId));
int ordinal_for_repeating_group_field = calculateOrdinal(isGroup, field, eventCRFId, rowCount);
int writeToDBStatus = isWriteToDB(isGroup, field, entityId, itemId, ordinal_for_repeating_group_field, eventCRFId);
writeToDB = (writeToDBStatus == -1) ? false : ((writeToDBStatus == 1) ? true : writeToDB);
}
boolean isInError = fp.getBoolean(ERROR_FLAG);
boolean isNew = fp.getBoolean(NEW_NOTE);
request.setAttribute(NEW_NOTE, isNew ? "1" : "0");
String strResStatus = fp.getString(PRESET_RES_STATUS);
if (!strResStatus.equals("")) {
request.setAttribute(PRESET_RES_STATUS, strResStatus);
}
String monitor = fp.getString("monitor");
String enterData = fp.getString("enterData");
request.setAttribute("enterData", enterData);
boolean enteringData = false;
if (enterData != null && "1".equalsIgnoreCase(enterData)) {
// variables are not set in JSP, so not from viewing data and from
// entering data
request.setAttribute(CAN_MONITOR, "1");
request.setAttribute("monitor", monitor);
enteringData = true;
} else if ("1".equalsIgnoreCase(monitor)) {
// change to allow user to
// enter note for all items,
// not just blank items
request.setAttribute(CAN_MONITOR, "1");
request.setAttribute("monitor", monitor);
} else {
request.setAttribute(CAN_MONITOR, "0");
}
if ("itemData".equalsIgnoreCase(entityType) && enteringData) {
request.setAttribute("enterItemData", "yes");
}
DateFormat dateFormatter = DateFormat.getDateInstance(DateFormat.DEFAULT, locale);
int preUserId = 0;
if (!StringUtils.isBlank(entityType)) {
if ("itemData".equalsIgnoreCase(entityType) || "itemdata".equalsIgnoreCase(entityType)) {
ItemBean item = (ItemBean) new ItemDAO(sm.getDataSource()).findByPK(itemId);
ItemDataBean itemData = (ItemDataBean) new ItemDataDAO(sm.getDataSource()).findByPK(entityId);
request.setAttribute("entityValue", itemData.getValue());
request.setAttribute("entityName", item.getName());
EventCRFDAO ecdao = new EventCRFDAO(sm.getDataSource());
EventCRFBean ec = (EventCRFBean) ecdao.findByPK(itemData.getEventCRFId());
preUserId = ec.getOwnerId();
} else if ("studySub".equalsIgnoreCase(entityType)) {
StudySubjectBean ssub = (StudySubjectBean) new StudySubjectDAO(sm.getDataSource()).findByPK(entityId);
SubjectBean sub = (SubjectBean) new SubjectDAO(sm.getDataSource()).findByPK(ssub.getSubjectId());
preUserId = ssub.getOwnerId();
if (!StringUtils.isBlank(column)) {
if ("enrollment_date".equalsIgnoreCase(column)) {
if (ssub.getEnrollmentDate() != null) {
request.setAttribute("entityValue", dateFormatter.format(ssub.getEnrollmentDate()));
} else {
request.setAttribute("entityValue", resword.getString("N/A"));
}
request.setAttribute("entityName", resword.getString("enrollment_date"));
} else if ("gender".equalsIgnoreCase(column)) {
request.setAttribute("entityValue", sub.getGender() + "");
request.setAttribute("entityName", resword.getString("gender"));
} else if ("date_of_birth".equalsIgnoreCase(column)) {
if (sub.getDateOfBirth() != null) {
request.setAttribute("entityValue", dateFormatter.format(sub.getDateOfBirth()));
} else {
request.setAttribute("entityValue", resword.getString("N/A"));
}
request.setAttribute("entityName", resword.getString("date_of_birth"));
} else if ("unique_identifier".equalsIgnoreCase(column)) {
if (sub.getUniqueIdentifier() != null) {
request.setAttribute("entityValue", sub.getUniqueIdentifier());
}
request.setAttribute("entityName", resword.getString("unique_identifier"));
}
}
} else if ("subject".equalsIgnoreCase(entityType)) {
SubjectBean sub = (SubjectBean) new SubjectDAO(sm.getDataSource()).findByPK(entityId);
preUserId = sub.getOwnerId();
if (!StringUtils.isBlank(column)) {
if ("gender".equalsIgnoreCase(column)) {
request.setAttribute("entityValue", sub.getGender() + "");
request.setAttribute("entityName", resword.getString("gender"));
} else if ("date_of_birth".equalsIgnoreCase(column)) {
if (sub.getDateOfBirth() != null) {
request.setAttribute("entityValue", dateFormatter.format(sub.getDateOfBirth()));
}
request.setAttribute("entityName", resword.getString("date_of_birth"));
} else if ("unique_identifier".equalsIgnoreCase(column)) {
request.setAttribute("entityValue", sub.getUniqueIdentifier());
request.setAttribute("entityName", resword.getString("unique_identifier"));
}
}
} else if ("studyEvent".equalsIgnoreCase(entityType)) {
StudyEventBean se = (StudyEventBean) new StudyEventDAO(sm.getDataSource()).findByPK(entityId);
preUserId = se.getOwnerId();
if (!StringUtils.isBlank(column)) {
if ("location".equalsIgnoreCase(column)) {
request.setAttribute("entityValue", se.getLocation().equals("") || se.getLocation() == null ? resword.getString("N/A") : se.getLocation());
request.setAttribute("entityName", resword.getString("location"));
} else if ("start_date".equalsIgnoreCase(column)) {
if (se.getDateStarted() != null) {
request.setAttribute("entityValue", dateFormatter.format(se.getDateStarted()));
} else {
request.setAttribute("entityValue", resword.getString("N/A"));
}
request.setAttribute("entityName", resword.getString("start_date"));
} else if ("end_date".equalsIgnoreCase(column)) {
if (se.getDateEnded() != null) {
request.setAttribute("entityValue", dateFormatter.format(se.getDateEnded()));
} else {
request.setAttribute("entityValue", resword.getString("N/A"));
}
request.setAttribute("entityName", resword.getString("end_date"));
}
}
} else if ("eventCrf".equalsIgnoreCase(entityType)) {
EventCRFBean ec = (EventCRFBean) new EventCRFDAO(sm.getDataSource()).findByPK(entityId);
preUserId = ec.getOwnerId();
if (!StringUtils.isBlank(column)) {
if ("date_interviewed".equals(column)) {
if (ec.getDateInterviewed() != null) {
request.setAttribute("entityValue", dateFormatter.format(ec.getDateInterviewed()));
} else {
request.setAttribute("entityValue", resword.getString("N/A"));
}
request.setAttribute("entityName", resword.getString("date_interviewed"));
} else if ("interviewer_name".equals(column)) {
request.setAttribute("entityValue", ec.getInterviewerName());
request.setAttribute("entityName", resword.getString("interviewer_name"));
}
}
}
}
// finds all the related notes
ArrayList notes = (ArrayList) dndao.findAllByEntityAndColumn(entityType, entityId, column);
DiscrepancyNoteBean parent = new DiscrepancyNoteBean();
if (parentId > 0) {
dndao.setFetchMapping(true);
parent = (DiscrepancyNoteBean) dndao.findByPK(parentId);
if (parent.isActive()) {
request.setAttribute("parent", parent);
}
dndao.setFetchMapping(false);
}
FormDiscrepancyNotes newNotes = (FormDiscrepancyNotes) session.getAttribute(AddNewSubjectServlet.FORM_DISCREPANCY_NOTES_NAME);
if (newNotes == null) {
newNotes = new FormDiscrepancyNotes();
}
boolean isNotesExistInSession = (!newNotes.getNotes(field).isEmpty()) ? true : (!newNotes.getNotes(eventCRFId + "_" + field).isEmpty()) ? true : false;
if (!notes.isEmpty() || isNotesExistInSession) {
request.setAttribute("hasNotes", "yes");
} else {
request.setAttribute("hasNotes", "no");
logger.debug("has notes:" + "no");
}
//only for adding a new thread
if (currentRole.getRole().equals(Role.RESEARCHASSISTANT) || currentRole.getRole().equals(Role.RESEARCHASSISTANT2) || currentRole.getRole().equals(Role.INVESTIGATOR)) {
ArrayList<ResolutionStatus> resStatuses = new ArrayList<ResolutionStatus>();
resStatuses.add(ResolutionStatus.OPEN);
resStatuses.add(ResolutionStatus.RESOLVED);
request.setAttribute(RES_STATUSES, resStatuses);
List<DiscrepancyNoteType> types2 = new ArrayList<DiscrepancyNoteType>(DiscrepancyNoteType.list);
types2.remove(DiscrepancyNoteType.QUERY);
request.setAttribute(DIS_TYPES, types2);
request.setAttribute(WHICH_RES_STATUSES, "22");
} else if (currentRole.getRole().equals(Role.MONITOR)) {
ArrayList<ResolutionStatus> resStatuses = new ArrayList();
resStatuses.add(ResolutionStatus.OPEN);
resStatuses.add(ResolutionStatus.UPDATED);
resStatuses.add(ResolutionStatus.CLOSED);
request.setAttribute(RES_STATUSES, resStatuses);
request.setAttribute(WHICH_RES_STATUSES, "1");
ArrayList<DiscrepancyNoteType> types2 = new ArrayList<DiscrepancyNoteType>();
types2.add(DiscrepancyNoteType.QUERY);
request.setAttribute(DIS_TYPES, types2);
} else {
//Role.STUDYDIRECTOR Role.COORDINATOR
List<ResolutionStatus> resStatuses = new ArrayList<ResolutionStatus>(ResolutionStatus.list);
resStatuses.remove(ResolutionStatus.NOT_APPLICABLE);
request.setAttribute(RES_STATUSES, resStatuses);
;
request.setAttribute(WHICH_RES_STATUSES, "2");
}
if (!fp.isSubmitted()) {
DiscrepancyNoteBean dnb = new DiscrepancyNoteBean();
if (subjectId > 0) {
// BWP: this doesn't seem correct, because the SubjectId should
// be the id for
// the SubjectBean, different from StudySubjectBean
StudySubjectDAO ssdao = new StudySubjectDAO(sm.getDataSource());
StudySubjectBean ssub = (StudySubjectBean) ssdao.findByPK(subjectId);
dnb.setSubjectName(ssub.getName());
dnb.setSubjectId(ssub.getId());
dnb.setStudySub(ssub);
StudyDAO studyDAO = new StudyDAO(sm.getDataSource());
int parentStudyForSubject = 0;
StudyBean studyBeanSub = (StudyBean) studyDAO.findByPK(ssub.getStudyId());
if (null != studyBeanSub) {
parentStudyForSubject = studyBeanSub.getParentStudyId();
}
if (ssub.getStudyId() != currentStudy.getId() && currentStudy.getId() != parentStudyForSubject) {
addPageMessage(noAccessMessage);
throw new InsufficientPermissionException(Page.MENU_SERVLET, exceptionName, "1");
}
}
if (itemId > 0) {
ItemBean item = (ItemBean) new ItemDAO(sm.getDataSource()).findByPK(itemId);
dnb.setEntityName(item.getName());
request.setAttribute("item", item);
}
dnb.setEntityType(entityType);
dnb.setColumn(column);
dnb.setEntityId(entityId);
dnb.setField(field);
dnb.setParentDnId(parent.getId());
dnb.setCreatedDate(new Date());
if (parent.getId() == 0 || isNew) {
// no parent, new note thread
if (enteringData) {
if (isInError) {
dnb.setDiscrepancyNoteTypeId(DiscrepancyNoteType.FAILEDVAL.getId());
} else {
dnb.setDiscrepancyNoteTypeId(DiscrepancyNoteType.ANNOTATION.getId());
dnb.setResolutionStatusId(ResolutionStatus.NOT_APPLICABLE.getId());
// >> tbh WHO bug: set an assigned user for the parent
// note
// dnb.setAssignedUser(ub);
// dnb.setAssignedUserId(ub.getId());
// << tbh 08/2009
}
if (isReasonForChange) {
dnb.setDiscrepancyNoteTypeId(DiscrepancyNoteType.REASON_FOR_CHANGE.getId());
dnb.setResolutionStatusId(ResolutionStatus.NOT_APPLICABLE.getId());
}
// << tbh 02/2010, trumps failed evaluation error checks
// can we put this in admin editing
request.setAttribute("autoView", "0");
// above set to automatically open up the user panel
} else {
// when the user is a CRC and is adding a note to the thread
// it should default to Resolution Proposed,
// and the assigned should be the user who logged the query,
// NOT the one who is proposing the solution, tbh 02/2009
// if (currentRole.getRole().equals(Role.COORDINATOR)) {
// dnb.setDiscrepancyNoteTypeId(DiscrepancyNoteType.
// REASON_FOR_CHANGE.getId());
// request.setAttribute("autoView", "1");
// // above set to automatically open up the user panel
// } else {
dnb.setDiscrepancyNoteTypeId(DiscrepancyNoteType.QUERY.getId());
//if (currentRole.getRole().equals(Role.RESEARCHASSISTANT) && currentStudy.getId() != currentStudy.getParentStudyId()
if (currentRole.getRole().equals(Role.RESEARCHASSISTANT) || currentRole.getRole().equals(Role.RESEARCHASSISTANT2) || currentRole.getRole().equals(Role.INVESTIGATOR)) {
request.setAttribute("autoView", "0");
} else {
request.setAttribute("autoView", "1");
dnb.setAssignedUserId(preUserId);
}
// above set to automatically open up the user panel
// }
}
} else if (parent.getDiscrepancyNoteTypeId() > 0) {
dnb.setDiscrepancyNoteTypeId(parent.getDiscrepancyNoteTypeId());
// adding second rule here, tbh 08/2009
if ((currentRole.getRole().equals(Role.RESEARCHASSISTANT) || currentRole.getRole().equals(Role.RESEARCHASSISTANT2)) && currentStudy.getId() != currentStudy.getParentStudyId()) {
dnb.setResolutionStatusId(ResolutionStatus.RESOLVED.getId());
request.setAttribute("autoView", "0");
// hide the panel, tbh
} else {
dnb.setResolutionStatusId(ResolutionStatus.UPDATED.getId());
}
}
dnb.setOwnerId(parent.getOwnerId());
String detailedDes = fp.getString("strErrMsg");
if (detailedDes != null) {
dnb.setDetailedNotes(detailedDes);
logger.debug("found strErrMsg: " + fp.getString("strErrMsg"));
}
// #4346 TBH 10/2009
//If the data entry form has not been saved yet, collecting info from parent page.
// populate note infos
dnb = getNoteInfo(dnb);
if (dnb.getEventName() == null || dnb.getEventName().equals("")) {
if (!fp.getString("eventName").equals("")) {
dnb.setEventName(fp.getString("eventName"));
} else {
dnb.setEventName(getStudyEventDefinition(eventCRFId).getName());
}
}
if (dnb.getEventStart() == null) {
if (fp.getDate("eventDate") != null) {
dnb.setEventStart(fp.getDate("eventDate"));
} else {
dnb.setEventStart(getStudyEvent(eventCRFId).getDateStarted());
}
}
if (dnb.getCrfName() == null || dnb.getCrfName().equals("")) {
if (!fp.getString("crfName").equals("")) {
dnb.setCrfName(fp.getString("crfName"));
} else {
dnb.setCrfName(getCrf(eventCRFId).getName());
}
}
// // #4346 TBH 10/2009
request.setAttribute(DIS_NOTE, dnb);
request.setAttribute("unlock", "0");
//this should go from UI & here
request.setAttribute(WRITE_TO_DB, writeToDB ? "1" : "0");
ArrayList userAccounts = this.generateUserAccounts(ub.getActiveStudyId(), subjectId);
request.setAttribute(USER_ACCOUNTS, userAccounts);
// ideally should be only two cases
if ((currentRole.getRole().equals(Role.RESEARCHASSISTANT) || currentRole.getRole().equals(Role.RESEARCHASSISTANT2)) && currentStudy.getId() != currentStudy.getParentStudyId()) {
// assigning back to OP, tbh
request.setAttribute(USER_ACCOUNT_ID, Integer.valueOf(parent.getOwnerId()).toString());
logger.debug("assigned owner id: " + parent.getOwnerId());
} else if (dnb.getEventCRFId() > 0) {
logger.debug("found a event crf id: " + dnb.getEventCRFId());
EventCRFDAO eventCrfDAO = new EventCRFDAO(sm.getDataSource());
EventCRFBean eventCrfBean = new EventCRFBean();
eventCrfBean = (EventCRFBean) eventCrfDAO.findByPK(dnb.getEventCRFId());
request.setAttribute(USER_ACCOUNT_ID, Integer.valueOf(eventCrfBean.getOwnerId()).toString());
logger.debug("assigned owner id: " + eventCrfBean.getOwnerId());
} else {
// the end case
}
// set the user account id for the user who completed data entry
forwardPage(Page.ADD_DISCREPANCY_NOTE);
} else {
FormDiscrepancyNotes noteTree = (FormDiscrepancyNotes) session.getAttribute(AddNewSubjectServlet.FORM_DISCREPANCY_NOTES_NAME);
FormDiscrepancyNotes noteTree_RFC_REPEAT = (FormDiscrepancyNotes) session.getAttribute(FLAG_DISCREPANCY_RFC);
;
if (noteTree_RFC_REPEAT == null)
noteTree_RFC_REPEAT = new FormDiscrepancyNotes();
if (noteTree == null) {
noteTree = new FormDiscrepancyNotes();
logger.debug("No note tree initailized in session");
}
Validator v = new Validator(request);
String description = fp.getString("description");
int typeId = fp.getInt("typeId");
int assignedUserAccountId = fp.getInt(SUBMITTED_USER_ACCOUNT_ID);
int resStatusId = fp.getInt(RES_STATUS_ID);
String detailedDes = fp.getString("detailedDes");
int sectionId = fp.getInt("sectionId");
DiscrepancyNoteBean note = new DiscrepancyNoteBean();
v.addValidation("description", Validator.NO_BLANKS);
v.addValidation("description", Validator.LENGTH_NUMERIC_COMPARISON, NumericComparisonOperator.LESS_THAN_OR_EQUAL_TO, 255);
v.addValidation("detailedDes", Validator.LENGTH_NUMERIC_COMPARISON, NumericComparisonOperator.LESS_THAN_OR_EQUAL_TO, 1000);
v.addValidation("typeId", Validator.NO_BLANKS);
HashMap errors = v.validate();
note.setDescription(description);
note.setDetailedNotes(detailedDes);
note.setOwner(ub);
note.setOwnerId(ub.getId());
note.setCreatedDate(new Date());
note.setResolutionStatusId(resStatusId);
note.setDiscrepancyNoteTypeId(typeId);
note.setParentDnId(parent.getId());
if (typeId != DiscrepancyNoteType.ANNOTATION.getId() && typeId != DiscrepancyNoteType.FAILEDVAL.getId() && typeId != DiscrepancyNoteType.REASON_FOR_CHANGE.getId()) {
if (assignedUserAccountId > 0) {
note.setAssignedUserId(assignedUserAccountId);
logger.debug("^^^ found assigned user id: " + assignedUserAccountId);
} else {
// a little bit of a workaround, should ideally be always from
// the form
note.setAssignedUserId(parent.getOwnerId());
logger.debug("found user assigned id, in the PARENT OWNER ID: " + parent.getOwnerId() + " note that user assgined id did not work: " + assignedUserAccountId);
}
}
note.setField(field);
if (DiscrepancyNoteType.ANNOTATION.getId() == note.getDiscrepancyNoteTypeId()) {
updateStudyEvent(entityType, entityId);
updateStudySubjectStatus(entityType, entityId);
}
if (DiscrepancyNoteType.ANNOTATION.getId() == note.getDiscrepancyNoteTypeId() || DiscrepancyNoteType.REASON_FOR_CHANGE.getId() == note.getDiscrepancyNoteTypeId()) {
note.setResStatus(ResolutionStatus.NOT_APPLICABLE);
note.setResolutionStatusId(ResolutionStatus.NOT_APPLICABLE.getId());
}
if (DiscrepancyNoteType.FAILEDVAL.getId() == note.getDiscrepancyNoteTypeId() || DiscrepancyNoteType.QUERY.getId() == note.getDiscrepancyNoteTypeId()) {
if (ResolutionStatus.NOT_APPLICABLE.getId() == note.getResolutionStatusId()) {
Validator.addError(errors, RES_STATUS_ID, restext.getString("not_valid_res_status"));
}
}
if (!parent.isActive()) {
note.setEntityId(entityId);
note.setEntityType(entityType);
note.setColumn(column);
} else {
note.setEntityId(parent.getEntityId());
note.setEntityType(parent.getEntityType());
if (!StringUtils.isBlank(parent.getColumn())) {
note.setColumn(parent.getColumn());
} else {
note.setColumn(column);
}
note.setParentDnId(parent.getId());
}
note.setStudyId(currentStudy.getId());
// populate note infos
note = getNoteInfo(note);
request.setAttribute(DIS_NOTE, note);
//this should go from UI & here
request.setAttribute(WRITE_TO_DB, writeToDB ? "1" : "0");
ArrayList userAccounts = this.generateUserAccounts(ub.getActiveStudyId(), subjectId);
request.setAttribute(USER_ACCOUNT_ID, Integer.valueOf(note.getAssignedUserId()).toString());
// formality more than anything else, we should go to say the note
// is done
Role r = currentRole.getRole();
if (r.equals(Role.MONITOR) || r.equals(Role.INVESTIGATOR) || r.equals(Role.RESEARCHASSISTANT) || r.equals(Role.RESEARCHASSISTANT2) || r.equals(Role.COORDINATOR)) {
// investigator
request.setAttribute("unlock", "1");
logger.debug("set UNLOCK to ONE");
} else {
request.setAttribute("unlock", "0");
logger.debug("set UNLOCK to ZERO");
}
request.setAttribute(USER_ACCOUNTS, userAccounts);
if (errors.isEmpty()) {
if (!writeToDB) {
noteTree.addNote(field, note);
noteTree.addIdNote(note.getEntityId(), field);
noteTree_RFC_REPEAT.addNote(EVENT_CRF_ID + "_" + field, note);
noteTree_RFC_REPEAT.addIdNote(note.getEntityId(), field);
//-> catcher // FORM_DISCREPANCY_NOTES_NAME
session.setAttribute(AddNewSubjectServlet.FORM_DISCREPANCY_NOTES_NAME, noteTree);
session.setAttribute(FLAG_DISCREPANCY_RFC, noteTree_RFC_REPEAT);
//
/*Setting a marker to check later while saving administrative edited data. This is needed to make
* sure the system flags error while changing data for items which already has a DiscrepanyNote*/
manageReasonForChangeState(session, eventCRFId + "_" + field);
forwardPage(Page.ADD_DISCREPANCY_NOTE_DONE);
} else {
// if not creating a new thread(note), update exsiting notes
// if necessary
//if ("itemData".equalsIgnoreCase(entityType) && !isNew) {
int pdnId = note != null ? note.getParentDnId() : 0;
if (pdnId > 0) {
logger.debug("Create:find parent note for item data:" + note.getEntityId());
DiscrepancyNoteBean pNote = (DiscrepancyNoteBean) dndao.findByPK(pdnId);
logger.debug("setting DN owner id: " + pNote.getOwnerId());
note.setOwnerId(pNote.getOwnerId());
if (note.getDiscrepancyNoteTypeId() == pNote.getDiscrepancyNoteTypeId()) {
if (note.getResolutionStatusId() != pNote.getResolutionStatusId()) {
pNote.setResolutionStatusId(note.getResolutionStatusId());
dndao.update(pNote);
}
if (note.getAssignedUserId() != pNote.getAssignedUserId()) {
pNote.setAssignedUserId(note.getAssignedUserId());
if (pNote.getAssignedUserId() > 0) {
dndao.updateAssignedUser(pNote);
} else {
dndao.updateAssignedUserToNull(pNote);
}
}
}
}
note = (DiscrepancyNoteBean) dndao.create(note);
dndao.createMapping(note);
request.setAttribute(DIS_NOTE, note);
if (note.getParentDnId() == 0) {
// see issue 2659 this is a new thread, we will create
// two notes in this case,
// This way one can be the parent that updates as the
// status changes, but one also stays as New.
note.setParentDnId(note.getId());
note = (DiscrepancyNoteBean) dndao.create(note);
dndao.createMapping(note);
}
/*Setting a marker to check later while saving administrative edited data. This is needed to make
* sure the system flags error while changing data for items which already has a DiscrepanyNote*/
//session.setAttribute(DataEntryServlet.NOTE_SUBMITTED, true);
//session.setAttribute(DataEntryServlet.NOTE_SUBMITTED, true);
// String field_id_for_RFC_hash = buildDiscrepancyNoteIdForRFCHash(eventCRFId,entityId, isGroup, field, ordinal_for_repeating_group_field);
String field_id_for_RFC_hash = eventCRFId + "_" + field;
manageReasonForChangeState(session, field_id_for_RFC_hash);
logger.debug("found resolution status: " + note.getResolutionStatusId());
String email = fp.getString(EMAIL_USER_ACCOUNT);
logger.debug("found email: " + email);
if (note.getAssignedUserId() > 0 && "1".equals(email.trim()) && DiscrepancyNoteType.QUERY.getId() == note.getDiscrepancyNoteTypeId()) {
logger.debug("++++++ found our way here: " + note.getDiscrepancyNoteTypeId() + " id number and " + note.getDisType().getName());
// generate email for user here
StringBuffer message = new StringBuffer();
// generate message here
UserAccountDAO userAccountDAO = new UserAccountDAO(sm.getDataSource());
ItemDAO itemDAO = new ItemDAO(sm.getDataSource());
ItemDataDAO iddao = new ItemDataDAO(sm.getDataSource());
ItemBean item = new ItemBean();
ItemDataBean itemData = new ItemDataBean();
SectionBean section = new SectionBean();
StudyDAO studyDAO = new StudyDAO(sm.getDataSource());
UserAccountBean assignedUser = (UserAccountBean) userAccountDAO.findByPK(note.getAssignedUserId());
String alertEmail = assignedUser.getEmail();
message.append(MessageFormat.format(respage.getString("mailDNHeader"), assignedUser.getFirstName(), assignedUser.getLastName()));
message.append("<A HREF='" + SQLInitServlet.getField("sysURL.base") + "ViewNotes?module=submit&listNotes_f_discrepancyNoteBean.user=" + assignedUser.getName() + "&listNotes_f_entityName=" + note.getEntityName() + "'>" + SQLInitServlet.getField("sysURL.base") + "</A><BR/>");
message.append(respage.getString("you_received_this_from"));
StudyBean study = (StudyBean) studyDAO.findByPK(note.getStudyId());
SectionDAO sectionDAO = new SectionDAO(sm.getDataSource());
if ("itemData".equalsIgnoreCase(entityType)) {
itemData = (ItemDataBean) iddao.findByPK(note.getEntityId());
item = (ItemBean) itemDAO.findByPK(itemData.getItemId());
if (sectionId > 0) {
section = (SectionBean) sectionDAO.findByPK(sectionId);
} else {
//Todo section should be initialized when sectionId = 0
}
}
message.append(respage.getString("email_body_separator"));
message.append(respage.getString("disc_note_info"));
message.append(respage.getString("email_body_separator"));
message.append(MessageFormat.format(respage.getString("mailDNParameters1"), note.getDescription(), note.getDetailedNotes(), ub.getName()));
message.append(respage.getString("email_body_separator"));
message.append(respage.getString("entity_information"));
message.append(respage.getString("email_body_separator"));
message.append(MessageFormat.format(respage.getString("mailDNParameters2"), study.getName(), note.getSubjectName()));
if (!("studySub".equalsIgnoreCase(entityType) || "subject".equalsIgnoreCase(entityType))) {
message.append(MessageFormat.format(respage.getString("mailDNParameters3"), note.getEventName()));
if (!"studyEvent".equalsIgnoreCase(note.getEntityType())) {
message.append(MessageFormat.format(respage.getString("mailDNParameters4"), note.getCrfName()));
if (!"eventCrf".equalsIgnoreCase(note.getEntityType())) {
if (sectionId > 0) {
message.append(MessageFormat.format(respage.getString("mailDNParameters5"), section.getName()));
}
message.append(MessageFormat.format(respage.getString("mailDNParameters6"), item.getName()));
}
}
}
message.append(respage.getString("email_body_separator"));
message.append(MessageFormat.format(respage.getString("mailDNThanks"), study.getName()));
message.append(respage.getString("email_body_separator"));
message.append(respage.getString("disclaimer"));
message.append(respage.getString("email_body_separator"));
message.append(respage.getString("email_footer"));
String emailBodyString = message.toString();
sendEmail(alertEmail.trim(), EmailEngine.getAdminEmail(), MessageFormat.format(respage.getString("mailDNSubject"), study.getName(), note.getEntityName()), emailBodyString, true, null, null, true);
} else {
logger.debug("did not send email, but did save DN");
}
// addPageMessage(
// "Your discrepancy note has been saved into database.");
addPageMessage(respage.getString("note_saved_into_db"));
addPageMessage(respage.getString("page_close_automatically"));
forwardPage(Page.ADD_DISCREPANCY_NOTE_SAVE_DONE);
}
} else {
if (parentId > 0) {
if (note.getResolutionStatusId() == ResolutionStatus.NOT_APPLICABLE.getId()) {
request.setAttribute("autoView", "0");
}
} else {
if (note.getDiscrepancyNoteTypeId() == DiscrepancyNoteType.QUERY.getId()) {
request.setAttribute("autoView", "1");
} else {
request.setAttribute("autoView", "0");
}
}
setInputMessages(errors);
forwardPage(Page.ADD_DISCREPANCY_NOTE);
}
}
}
use of org.akaza.openclinica.bean.core.DiscrepancyNoteType in project OpenClinica by OpenClinica.
the class DiscrepancyNoteOutputServlet method makeDiscrepancyNoteTypesDecoder.
private Map<String, String> makeDiscrepancyNoteTypesDecoder() {
Map<String, String> decoder = new HashMap<String, String>();
ResourceBundle reterm = ResourceBundleProvider.getTermsBundle();
for (DiscrepancyNoteType type : DiscrepancyNoteType.list) {
decoder.put(type.getName(), Integer.toString(type.getId()));
}
decoder.put(reterm.getString("Query_and_Failed_Validation_Check"), "1,3");
return decoder;
}
Aggregations