1 package org.kuali.ole.deliver.controller;
2
3 import org.apache.commons.collections.CollectionUtils;
4 import org.apache.commons.lang.StringUtils;
5 import org.apache.log4j.Logger;
6 import org.kuali.ole.DocumentUniqueIDPrefix;
7 import org.kuali.ole.OLEConstants;
8 import org.kuali.ole.OLEParameterConstants;
9 import org.kuali.ole.OLEPropertyConstants;
10 import org.kuali.ole.deliver.batch.OleDeliverBatchServiceImpl;
11 import org.kuali.ole.deliver.batch.OleMailer;
12 import org.kuali.ole.deliver.batch.OleNoticeBo;
13 import org.kuali.ole.deliver.bo.*;
14 import org.kuali.ole.deliver.form.OleLoanForm;
15 import org.kuali.ole.deliver.printSlip.OlePrintSlip;
16 import org.kuali.ole.deliver.processor.LoanProcessor;
17 import org.kuali.ole.deliver.service.CircDeskLocationResolver;
18 import org.kuali.ole.describe.bo.OleItemAvailableStatus;
19 import org.kuali.ole.describe.bo.OleLocation;
20 import org.kuali.ole.docstore.common.client.DocstoreClientLocator;
21 import org.kuali.ole.docstore.common.document.ItemOleml;
22 import org.kuali.ole.docstore.common.document.content.enums.DocType;
23 import org.kuali.ole.docstore.common.document.content.instance.Item;
24 import org.kuali.ole.docstore.common.document.content.instance.MissingPieceItemRecord;
25 import org.kuali.ole.docstore.common.document.content.instance.xstream.ItemOlemlRecordProcessor;
26 import org.kuali.ole.sys.context.SpringContext;
27 import org.kuali.ole.sys.exception.ParseException;
28 import org.kuali.rice.core.api.config.property.ConfigContext;
29 import org.kuali.rice.core.api.mail.EmailBody;
30 import org.kuali.rice.core.api.mail.EmailFrom;
31 import org.kuali.rice.core.api.mail.EmailSubject;
32 import org.kuali.rice.core.api.mail.EmailTo;
33 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
34 import org.kuali.rice.kim.api.identity.Person;
35 import org.kuali.rice.kim.api.identity.PersonService;
36 import org.kuali.rice.kim.api.permission.PermissionService;
37 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
38 import org.kuali.rice.krad.service.KRADServiceLocator;
39 import org.kuali.rice.krad.uif.UifConstants;
40 import org.kuali.rice.krad.uif.UifParameters;
41 import org.kuali.rice.krad.util.GlobalVariables;
42 import org.kuali.rice.krad.util.KRADConstants;
43 import org.kuali.rice.krad.util.ObjectUtils;
44 import org.kuali.rice.krad.web.controller.UifControllerBase;
45 import org.kuali.rice.krad.web.form.UifFormBase;
46 import org.springframework.stereotype.Controller;
47 import org.springframework.validation.BindingResult;
48 import org.springframework.web.bind.annotation.ModelAttribute;
49 import org.springframework.web.bind.annotation.RequestMapping;
50 import org.springframework.web.servlet.ModelAndView;
51
52 import javax.servlet.http.HttpServletRequest;
53 import javax.servlet.http.HttpServletResponse;
54 import java.io.IOException;
55 import java.sql.Timestamp;
56 import java.text.DateFormat;
57 import java.text.SimpleDateFormat;
58 import java.util.*;
59 import java.util.regex.Matcher;
60 import java.util.regex.Pattern;
61
62
63
64
65
66 @Controller
67 @RequestMapping(value = "/loancontroller")
68 public class LoanController extends UifControllerBase {
69
70 private static final Logger LOG = Logger.getLogger(LoanController.class);
71
72 private List<OleLoanDocument> printDueDateSlipList = new ArrayList<OleLoanDocument>();
73
74 private List<OleLoanDocument> printHoldSlipList = new ArrayList<OleLoanDocument>();
75
76 private LoanProcessor loanProcessor;
77
78 private OleDeliverBatchServiceImpl oleDeliverBatchService;
79
80 public static String fastAddBarcode = "";
81
82 private List<String> loginUserList;
83 private DocstoreClientLocator docstoreClientLocator;
84 private CircDeskLocationResolver circDeskLocationResolver;
85
86 public DocstoreClientLocator getDocstoreClientLocator() {
87
88 if (docstoreClientLocator == null) {
89 docstoreClientLocator = SpringContext.getBean(DocstoreClientLocator.class);
90
91 }
92 return docstoreClientLocator;
93 }
94
95 public OleDeliverBatchServiceImpl getOleDeliverBatchService() {
96 if (oleDeliverBatchService == null) {
97 oleDeliverBatchService = SpringContext.getBean(OleDeliverBatchServiceImpl.class);
98 }
99 return oleDeliverBatchService;
100 }
101
102 private CircDeskLocationResolver getCircDeskLocationResolver() {
103 if (circDeskLocationResolver == null) {
104 circDeskLocationResolver = new CircDeskLocationResolver();
105 }
106 return circDeskLocationResolver;
107 }
108
109 public void setCircDeskLocationResolver(CircDeskLocationResolver circDeskLocationResolver) {
110 this.circDeskLocationResolver = circDeskLocationResolver;
111 }
112
113 public void setLoanProcessor(LoanProcessor loanProcessor) {
114 this.loanProcessor = loanProcessor;
115 }
116
117 public void setOleDeliverBatchService(OleDeliverBatchServiceImpl oleDeliverBatchService) {
118 this.oleDeliverBatchService = oleDeliverBatchService;
119 }
120
121 public void setDocstoreClientLocator(DocstoreClientLocator docstoreClientLocator) {
122 this.docstoreClientLocator = docstoreClientLocator;
123 }
124
125
126
127
128
129
130
131 @Override
132 protected OleLoanForm createInitialForm(HttpServletRequest request) {
133 return new OleLoanForm();
134 }
135
136
137
138
139
140
141
142
143
144
145 @Override
146 @RequestMapping(params = "methodToCall=start")
147 public ModelAndView start(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
148 HttpServletRequest request, HttpServletResponse response) {
149 LOG.debug("Inside the loan start method");
150 fastAddBarcode = "";
151 OleLoanForm oleLoanForm = null;
152 if (form.getViewId().equalsIgnoreCase("PatronItemView")) {
153 String formKey = request.getParameter("formKey");
154 if (formKey == null) {
155 if (loginUserList != null) {
156 loginUserList.clear();
157 }
158 oleLoanForm = (OleLoanForm) form;
159 oleLoanForm.setReturnCheck(false);
160 if (oleLoanForm.getOldPrincipalId() == null || "".equals(oleLoanForm.getOldPrincipalId()))
161 oleLoanForm.setOldPrincipalId(GlobalVariables.getUserSession().getPrincipalId());
162 Integer maxTimeForCheckInDate = 0;
163 String parameter = getLoanProcessor().getParameter(OLEConstants.MAX_TIME_CHECK_IN);
164 if (LOG.isInfoEnabled()) {
165 LOG.info("session timeout parameter:" + parameter);
166 }
167 String loanParameter = getLoanProcessor().getParameter(OLEConstants.MAX_TIME_LOAN);
168 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
169 String maxSessionTime = loanParameter;
170 if (LOG.isInfoEnabled()) {
171 LOG.info("session timeout:" + maxSessionTime);
172 }
173 if (maxSessionTime != null && !maxSessionTime.equalsIgnoreCase(""))
174 oleLoanForm.setMaxSessionTime(Integer.parseInt(maxSessionTime));
175
176 if (!getLoanProcessor().isValidCirculationDesk()) {
177 oleLoanForm.setLoanLoginUserInfo(GlobalVariables.getUserSession().getPrincipalName() + " " + OLEConstants.OleCirculationDesk.OLE_CIRCULATION_DESK_VALIDATIONS);
178 return super.start(oleLoanForm, result, request, response);
179 }
180
181 oleLoanForm.setCirculationDesk(getLoanProcessor().getCircDeskId());
182 oleLoanForm.setAudioForPastDate(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
183 if (parameter != null) {
184 maxTimeForCheckInDate = Integer.parseInt(parameter);
185 }
186 oleLoanForm.setMaxTimeForCheckOutConstant(loanParameter);
187 LOG.info("session timeout maxTimeForCheckInDate:" + maxTimeForCheckInDate);
188 oleLoanForm.setMaxTimeForCheckInDate(maxTimeForCheckInDate);
189 oleLoanForm.setCheckInDateMaxTime(maxTimeForCheckInDate);
190 oleLoanForm.setDateAlertMessage(OLEConstants.CHECK_IN_DATE);
191 oleLoanForm.setCurrentDate(new Date());
192 oleLoanForm.setPatronFocus(true);
193 if (oleLoanForm.getCheckInDate() == null) {
194 oleLoanForm.setCheckInDate(new Date());
195 }
196 } else {
197 oleLoanForm = (OleLoanForm) GlobalVariables.getUifFormManager().getSessionForm(formKey);
198 if (oleLoanForm.getOldPrincipalId() == null || "".equals(oleLoanForm.getOldPrincipalId()))
199 oleLoanForm.setOldPrincipalId(GlobalVariables.getUserSession().getPrincipalId());
200 oleLoanForm.setReturnCheck(false);
201 oleLoanForm.setAjaxRequest(false);
202 oleLoanForm.setAjaxReturnType("update-view");
203 oleLoanForm = (OleLoanForm) form;
204 oleLoanForm.setPageId(null);
205 Integer maxTimeForCheckInDate = 0;
206 String parameter = getLoanProcessor().getParameter(OLEConstants.MAX_TIME_CHECK_IN);
207 LOG.info("session timeout parameter:" + parameter);
208 String loanParameter = getLoanProcessor().getParameter(OLEConstants.MAX_TIME_LOAN);
209 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
210
211 String maxSessionTime = loanParameter;
212 if (LOG.isInfoEnabled()) {
213 LOG.info("session timeout:" + maxSessionTime);
214 }
215 if (maxSessionTime != null && !maxSessionTime.equalsIgnoreCase(""))
216 oleLoanForm.setMaxSessionTime(Integer.parseInt(maxSessionTime));
217
218 oleLoanForm.setRemoveMissingPieceFlag(false);
219 oleLoanForm.setRecordDamagedItemNote(false);
220 oleLoanForm.setRecordMissingPieceNote(false);
221 oleLoanForm.setRecordCheckoutMissingPieceNote(false);
222 oleLoanForm.setDisplayRecordNotePopup(false);
223 oleLoanForm.setCheckoutRecordFlag(false);
224 oleLoanForm.setSkipMissingPieceRecordPopup(false);
225 oleLoanForm.setSkipDamagedRecordPopup(false);
226 oleLoanForm.setDisplayMissingPieceNotePopup(false);
227 oleLoanForm.setCheckoutMissingPieceRecordFlag(false);
228 oleLoanForm.setDisplayDamagedRecordNotePopup(false);
229 oleLoanForm.setCheckoutDamagedRecordFlag(false);
230
231 if (!getLoanProcessor().isValidCirculationDesk()) {
232 oleLoanForm.setLoanLoginUserInfo(GlobalVariables.getUserSession().getPrincipalName() + " " + OLEConstants.OleCirculationDesk.OLE_CIRCULATION_DESK_VALIDATIONS);
233 return super.start(oleLoanForm, result, request, response);
234 }
235 oleLoanForm.setAudioForPastDate(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
236 if (parameter != null) {
237 maxTimeForCheckInDate = Integer.parseInt(parameter);
238 }
239 oleLoanForm.setMaxTimeForCheckOutConstant(loanParameter);
240 LOG.info("session timeout maxTimeForCheckInDate:" + maxTimeForCheckInDate);
241 oleLoanForm.setMaxTimeForCheckInDate(maxTimeForCheckInDate);
242 oleLoanForm.setCheckInDateMaxTime(maxTimeForCheckInDate);
243 oleLoanForm.setDateAlertMessage(OLEConstants.CHECK_IN_DATE);
244 oleLoanForm.setCurrentDate(new Date());
245 oleLoanForm.setPatronFocus(true);
246 if (oleLoanForm.getCheckInDate() == null) {
247 oleLoanForm.setCheckInDate(new Date());
248 }
249 }
250
251
252 } else {
253 oleLoanForm = (OleLoanForm) form;
254
255 String formKey = request.getParameter("formKey");
256 if (formKey == null) {
257 oleLoanForm.setCirculationDesk(getLoanProcessor().getCircDesk());
258 }
259 if (oleLoanForm.getOldPrincipalId() == null || "".equals(oleLoanForm.getOldPrincipalId()))
260 oleLoanForm.setOldPrincipalId(GlobalVariables.getUserSession().getPrincipalId());
261 oleLoanForm.setPageId(null);
262 oleLoanForm.setReturnCheck(true);
263 Integer maxTimeForCheckInDate = 0;
264 String parameter = getLoanProcessor().getParameter(OLEConstants.MAX_TIME_CHECK_IN);
265 LOG.info("session timeout parameter:" + parameter);
266 String loanParameter = getLoanProcessor().getParameter(OLEConstants.MAX_TIME_LOAN);
267 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
268
269 String maxSessionTime = loanParameter;
270 if (LOG.isInfoEnabled()) {
271 LOG.info("session timeout:" + maxSessionTime);
272 }
273 if (maxSessionTime != null && !maxSessionTime.equalsIgnoreCase(""))
274 oleLoanForm.setMaxSessionTime(Integer.parseInt(maxSessionTime));
275
276
277
278
279
280
281
282
283
284
285 if (!getLoanProcessor().isValidCirculationDesk()) {
286 oleLoanForm.setLoanLoginUserInfo(GlobalVariables.getUserSession().getPrincipalName() + " " + OLEConstants.OleCirculationDesk.OLE_CIRCULATION_DESK_VALIDATIONS);
287 return super.start(oleLoanForm, result, request, response);
288 }
289 oleLoanForm.setAudioForPastDate(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
290 if (parameter != null) {
291 maxTimeForCheckInDate = Integer.parseInt(parameter);
292 }
293 oleLoanForm.setMaxTimeForCheckOutConstant(loanParameter);
294 LOG.info("session timeout maxTimeForCheckInDate:" + maxTimeForCheckInDate);
295 oleLoanForm.setMaxTimeForCheckInDate(maxTimeForCheckInDate);
296 oleLoanForm.setCheckInDateMaxTime(maxTimeForCheckInDate);
297 oleLoanForm.setDateAlertMessage(OLEConstants.CHECK_IN_DATE);
298 oleLoanForm.setCurrentDate(new Date());
299 oleLoanForm.setPatronFocus(true);
300 if (oleLoanForm.getCheckInDate() == null) {
301 oleLoanForm.setCheckInDate(new Date());
302 }
303 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
304 if (oleLoanDocument != null) {
305 List<OleLoanDocument> documentList = oleLoanForm.getItemReturnList();
306 if (documentList != null && documentList.size() > 0) {
307 OleCirculationDesk oleCirculationDesk = null;
308 OleLocation oleLocation = null;
309 if (oleLoanDocument.getCirculationLocationId() != null) {
310
311 try{
312 oleLocation = getCircDeskLocationResolver().getLocationByLocationCode(oleLoanDocument.getItemLocation());
313 }
314 catch (Exception e){
315 LOG.error("Exception while fetching OleLocation based on item location" +e);
316 }
317 String routeTo = oleLoanForm.getRouteToLocation() != null ? oleLoanForm.getRouteToLocation() :
318 (oleLoanDocument.getRouteToLocation() != null ? oleLoanDocument.getRouteToLocation() :
319 (oleLocation != null ? oleLocation.getLocationCode() : null));
320 documentList.get(0).setRouteToLocation(routeTo);
321 }
322 }
323 }
324 oleLoanForm.setBackGroundCheckIn(false);
325 }
326 return super.start(oleLoanForm, result, request, response);
327 }
328
329
330
331
332
333
334
335
336
337
338
339 @Override
340 @RequestMapping(params = "methodToCall=refresh")
341 public ModelAndView refresh(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
342 HttpServletRequest request, HttpServletResponse response) throws Exception {
343 OleLoanForm oleLoanForm = (OleLoanForm) form;
344 if (oleLoanForm.getPatronFirstName() != null) {
345 oleLoanForm.setReturnCheck(false);
346 oleLoanForm.setPatronFirstName(null);
347 super.refresh(oleLoanForm, result, request, response);
348 return searchPatron(oleLoanForm, result, request, response);
349 }
350 if (oleLoanForm.getItemUuid() != null && oleLoanForm.getInstanceUuid() != null) {
351 oleLoanForm.setReturnCheck(false);
352 super.refresh(oleLoanForm, result, request, response);
353 ModelAndView modelAndView = addItem(oleLoanForm, result, request, response);
354 oleLoanForm.setItemUuid(null);
355 oleLoanForm.setInstanceUuid(null);
356 return modelAndView;
357 }
358 if (oleLoanForm.getReturnItemUuid() != null && oleLoanForm.getReturnInstanceUuid() != null) {
359 oleLoanForm.setReturnCheck(true);
360 super.refresh(oleLoanForm, result, request, response);
361 ModelAndView modelAndView = validateItem(oleLoanForm, result, request, response);
362 oleLoanForm.setReturnItemUuid(null);
363 oleLoanForm.setReturnInstanceUuid(null);
364 return modelAndView;
365 }
366 return super.refresh(oleLoanForm, result, request, response);
367 }
368
369
370
371
372
373
374
375
376
377
378 @RequestMapping(params = "methodToCall=searchPatron")
379 public ModelAndView searchPatron(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
380 HttpServletRequest request, HttpServletResponse response) {
381 LOG.debug("Inside the search patron method");
382 Long b1 = System.currentTimeMillis();
383 fastAddBarcode = "";
384 OleLoanForm oleLoanForm = (OleLoanForm) form;
385 oleLoanForm.setLoanList(new ArrayList<OleLoanDocument>(0));
386 oleLoanForm.setBlockPatron(false);
387 oleLoanForm.setExistingLoanList(new ArrayList<OleLoanDocument>(0));
388 oleLoanForm.setInformation("");
389 oleLoanForm.setSuccessInfo("");
390 oleLoanForm.setReturnInformation("");
391 oleLoanForm.getErrorsAndPermission().clear();
392 oleLoanForm.setPatronbill(false);
393 oleLoanForm.setShowExistingLoan(false);
394 try {
395 String maxSessionTime = oleLoanForm.getMaxTimeForCheckOutConstant();
396 if (LOG.isInfoEnabled()) {
397 LOG.info("session timeout:" + maxSessionTime);
398 }
399 if (maxSessionTime != null && !maxSessionTime.equalsIgnoreCase("")){
400 oleLoanForm.setMaxSessionTime(Integer.parseInt(maxSessionTime));
401 }
402
403 if (!getLoanProcessor().isValidCirculationDesk()) {
404 oleLoanForm.setLoanLoginUserInfo(GlobalVariables.getUserSession().getPrincipalName() + " " + OLEConstants.OleCirculationDesk.OLE_CIRCULATION_DESK_VALIDATIONS);
405 return super.start(oleLoanForm, result, request, response);
406 }
407 getLoanProcessor().validateCalanderForCirculationDesk(oleLoanForm.getCirculationDesk());
408 OleLoanDocument oleProxyLoanDocument = null;
409 List<OlePatronDocument> oleRealPatron = oleLoanForm.getRealPatronList();
410 List<OlePatronDocument> oleCurrentPatronDocumentList = oleLoanForm.getCurrentPatronList();
411 OlePatronDocument oleCurrentPatronDocument = new OlePatronDocument();
412 if (oleCurrentPatronDocumentList != null && oleCurrentPatronDocumentList.size() > 0) {
413 oleCurrentPatronDocument = oleCurrentPatronDocumentList.get(0);
414 String barcode = oleLoanForm.getPatronBarcode();
415 if (oleLoanForm.isProxyDisplay() && barcode != null && !barcode.equalsIgnoreCase("") && oleCurrentPatronDocument.getBarcode() != null && !barcode.equalsIgnoreCase(oleCurrentPatronDocument.getBarcode())) {
416 oleLoanForm.getCurrentPatronList().clear();
417 oleLoanForm.setRealPatronBarcode(null);
418 oleLoanForm.setPatronBarcode(barcode);
419 oleLoanForm.setRealPatronList(null);
420 oleLoanForm.setProxyDisplay(false);
421 oleLoanForm.setBackUpDummyLoan(null);
422 oleRealPatron.clear();
423 }
424 }
425 if (oleRealPatron != null && oleRealPatron.size() > 0 && !oleCurrentPatronDocument.isSelfCheckOut()) {
426 for (int realPatron = 0; realPatron < oleRealPatron.size(); realPatron++) {
427 OlePatronDocument olePatronDocument = oleRealPatron.get(realPatron);
428 if (olePatronDocument.isRealPatronCheck()) {
429 oleLoanForm.setRealPatronBarcode(olePatronDocument.getBarcode());
430 oleLoanForm.setRealPatronFlag(false);
431 oleProxyLoanDocument = getLoanProcessor().getLoanDocument(olePatronDocument.getBarcode(), null, oleLoanForm.isSelfCheckOut(), false);
432 break;
433 }
434 }
435 }
436 boolean isSelfCheckout = oleCurrentPatronDocument.isSelfCheckOut();
437 if (oleCurrentPatronDocument.isSelfCheckOut()) {
438 oleLoanForm.setSelfCheckOut(false);
439 oleLoanForm.setRealPatronFlag(false);
440 }
441 Long b2 = System.currentTimeMillis();
442 Long b3 = b2-b1;
443 LOG.info("The time taken for pre-loaning patron"+b3);
444 OleLoanDocument oleLoanDocument = getLoanProcessor().getLoanDocument(oleLoanForm.getPatronBarcode(), oleLoanForm.getRealPatronBarcode(), isSelfCheckout, false);
445 Long b4 = System.currentTimeMillis();
446 if (oleLoanDocument.isLostPatron()) {
447 oleLoanForm.setBlockUser(true);
448 }else {
449 oleLoanForm.setBlockUser(false);
450 }
451 if (oleLoanDocument.getPatronUserNotes() != null) {
452 oleLoanForm.setPatronNoteFlag(true);
453 oleLoanForm.setPatronUserNote(oleLoanDocument.getPatronUserNotes());
454 oleLoanForm.setPatronNoteTypeId(oleLoanDocument.getPatronNoteTypeId());
455 }
456 boolean activeProxyValue = true;
457 int proxyPatronCount = 0;
458 int proxyDisplayCount = 0;
459 if (oleLoanDocument.getRealPatron() != null && oleLoanDocument.getRealPatron().size() > 0) {
460 List<OlePatronDocument> realPatronActiveListOld = new ArrayList<OlePatronDocument>();
461 for (OlePatronDocument oleRealPatronDocument : oleLoanDocument.getRealPatron()) {
462 if (!realPatronActiveListOld.contains(oleRealPatronDocument)) {
463 realPatronActiveListOld.add(oleRealPatronDocument);
464 }
465 }
466 List<OlePatronDocument> realPatronActiveList = new ArrayList<OlePatronDocument>();
467 for (OlePatronDocument oleRealPatronDocument : realPatronActiveListOld) {
468 List<OleProxyPatronDocument> proxyPatronActiveList = new ArrayList<OleProxyPatronDocument>();
469 for (OleProxyPatronDocument oleProxyPatronDocument : oleRealPatronDocument.getOleProxyPatronDocuments()) {
470 if (oleProxyPatronDocument.getProxyPatronId().equalsIgnoreCase(oleLoanDocument.getPatronId())) {
471 proxyPatronCount++;
472 if (oleProxyPatronDocument.getProxyPatronExpirationDate() == null || !oleProxyPatronDocument.getProxyPatronExpirationDate().before(new Timestamp(System.currentTimeMillis()))) {
473 proxyPatronActiveList.add(oleProxyPatronDocument);
474 proxyDisplayCount++;
475 }
476 }
477 }
478 if (proxyPatronActiveList.size() > 0) {
479 oleLoanForm.setProxyDisplay(true);
480 oleRealPatronDocument.setOleProxyPatronDocuments(proxyPatronActiveList);
481 oleRealPatronDocument.setOleProxyPatronDocumentList(proxyPatronActiveList);
482 realPatronActiveList.add(oleRealPatronDocument);
483 } else {
484 activeProxyValue = false;
485 }
486 }
487 if (realPatronActiveList.size() > 0) {
488 oleLoanForm.setRealPatronList(realPatronActiveList);
489 List<OlePatronDocument> currentPatronList = new ArrayList<>();
490 currentPatronList.add(oleLoanDocument.getOlePatron());
491 oleLoanForm.setCurrentPatronList(currentPatronList);
492 oleLoanForm.setRealPatronFlag(true);
493 }
494 }
495 if (!activeProxyValue && proxyPatronCount != 0 && proxyDisplayCount != proxyPatronCount) {
496 oleLoanDocument = getLoanProcessor().getLoanDocument(oleLoanForm.getPatronBarcode(), oleLoanForm.getRealPatronBarcode(), false, true);
497 }
498 oleLoanForm.setBorrowerCode(oleLoanDocument.getBorrowerTypeCode());
499 oleLoanForm.setPatronId(oleLoanDocument.getPatronId());
500 String patronNameURL = getLoanProcessor().patronNameURL(oleLoanForm.getOldPrincipalId(), oleLoanForm.getPatronId());
501 oleLoanForm.setPatronNameURL(patronNameURL);
502 oleLoanForm.setProxyPatronId(oleLoanDocument.getProxyPatronId());
503
504 oleLoanForm.setRealPatronType(oleLoanDocument.getRealPatronType());
505 oleLoanForm.setAddressVerified(oleLoanDocument.isAddressVerified());
506 oleLoanForm.setBlockLoan(oleLoanDocument.isBlockLoan());
507 oleLoanForm.setBorrowerTypeId(oleLoanDocument.getBorrowerTypeId());
508 oleLoanForm.setInformation("");
509 if (oleLoanDocument.getRealPatronBarcode() != null) {
510 for (OlePatronDocument olePatronDocument : oleLoanForm.getRealPatronList()) {
511 if (olePatronDocument.isRealPatronCheck()) {
512 oleLoanForm.setRealPatronId(olePatronDocument.getOlePatronId());
513 }
514 }
515 if (oleLoanForm.getRealPatronId() != null && (oleLoanForm.getRealPatronId() != null && !oleLoanForm.getRealPatronId().equalsIgnoreCase(""))) {
516
517 oleLoanDocument.setRealPatronName(oleLoanForm.getRealPatronName());
518 }
519
520 }
521
522
523 oleLoanForm.setDummyLoan(oleLoanDocument);
524 oleLoanForm.setBlockItem(false);
525 oleLoanForm.setBlockPatron(false);
526 oleLoanForm.setNonCirculatingFlag(false);
527 oleLoanForm.setItem(null);
528 oleLoanForm.setOleItem(null);
529 oleLoanForm.getErrorsAndPermission().putAll(oleLoanDocument.getErrorsAndPermission());
530 if (oleLoanDocument.getErrorMessage() != null) {
531 oleLoanForm.setSuccess(false);
532 oleLoanForm.setInformation("");
533 oleLoanForm.setMessage(oleLoanDocument.getErrorMessage());
534 getLoanProcessor().setErrorFlagForPatron(oleLoanDocument, oleLoanForm);
535 oleLoanForm.setPatronName(null);
536 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
537 oleLoanForm.setAudioEnable(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
538 }
539 if (oleProxyLoanDocument != null) {
540 oleLoanForm.setRealPatronName(oleLoanDocument.getPatronName());
541 oleLoanDocument = oleProxyLoanDocument;
542 patronNameURL = getLoanProcessor().patronNameURL(oleLoanForm.getOldPrincipalId(), oleLoanForm.getProxyPatronId());
543 oleLoanForm.setPatronNameURL(patronNameURL);
544 } else {
545 oleLoanForm.setRealPatronName(null);
546 }
547 oleLoanForm.setPatronName(oleLoanDocument.getPatronName());
548 oleLoanForm.setBorrowerType(oleLoanDocument.getBorrowerTypeName());
549 oleLoanForm.setPreferredAddress(oleLoanDocument.getPreferredAddress());
550 oleLoanForm.setEmail(oleLoanDocument.getEmail());
551 oleLoanForm.setPhoneNumber(oleLoanDocument.getPhoneNumber());
552 oleLoanForm.setItemFocus(true);
553 oleLoanForm.setPatronFocus(false);
554
555 Long b5 = System.currentTimeMillis();
556 Long total = b5 - b4;
557 LOG.info("The time taken for post patron search:"+total);
558 } catch (Exception e) {
559 oleLoanForm.setInformation(e.getMessage());
560 LOG.error("Exception while search patron time", e);
561 }
562
563 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
564 }
565
566
567
568
569
570
571
572
573
574
575 @RequestMapping(params = "methodToCall=addItem")
576 public ModelAndView addItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
577 HttpServletRequest request, HttpServletResponse response) {
578 LOG.debug("Inside the add item method");
579 Long begin = System.currentTimeMillis();
580 OleLoanForm oleLoanForm = (OleLoanForm) form;
581 oleLoanForm.setBlockItem(false);
582 if(oleLoanForm.getItem().equals("")){
583 GlobalVariables.getMessageMap().putError(KRADConstants.GLOBAL_ERRORS, OLEConstants.EMPTY_ITEM_BARCODE);
584 return getUIFModelAndView(oleLoanForm);
585 }
586 try {
587 oleLoanForm.setOleFormKey(oleLoanForm.getFormKey());
588 oleLoanForm.setInformation("");
589 oleLoanForm.setSuccessInfo("");
590 oleLoanForm.setReturnInformation("");
591
592 if (!getLoanProcessor().isValidCirculationDesk()) {
593 oleLoanForm.setLoanLoginUserInfo(GlobalVariables.getUserSession().getPrincipalName() + " " + OLEConstants.OleCirculationDesk.OLE_CIRCULATION_DESK_VALIDATIONS);
594 return super.start(oleLoanForm, result, request, response);
595 }
596 boolean renewalFlag = false;
597 List<OleLoanDocument> existItemList = new ArrayList<OleLoanDocument>();
598 if (oleLoanForm.getExistingLoanList() != null && !oleLoanForm.getExistingLoanList().isEmpty())
599 existItemList.addAll(oleLoanForm.getExistingLoanList());
600 if (oleLoanForm.getLoanList() != null && !oleLoanForm.getLoanList().isEmpty())
601 existItemList.addAll(oleLoanForm.getLoanList());
602 String item = oleLoanForm.getItem();
603
604 for (OleLoanDocument oleLoanDocument : existItemList) {
605
606 if (oleLoanDocument.getItemId() != null && oleLoanDocument.getItemId().equals(item)) {
607 oleLoanForm.setRenewalFlag(true);
608 oleLoanForm.setBlockItem(true);
609 oleLoanForm.setBlockPatron(true);
610 oleLoanForm.setSuccess(false);
611 oleLoanForm.setMessage(OLEConstants.RENEWAL_ITM_POPUP);
612 renewalFlag = true;
613 break;
614 }
615 }
616
617
618
619 if(!renewalFlag){
620 OleLoanDocument loanDocument = getLoanProcessor().retrieveByPatronAndItem(oleLoanForm.getPatronId(),item);
621 if (loanDocument!=null && loanDocument.getItemId() != null && loanDocument.getItemId().equals(item)) {
622 oleLoanForm.setRenewalLoan(loanDocument);
623 oleLoanForm.setRenewalFlag(true);
624 oleLoanForm.setBlockItem(true);
625 oleLoanForm.setBlockPatron(true);
626 oleLoanForm.setSuccess(false);
627 oleLoanForm.setMessage(OLEConstants.RENEWAL_ITM_POPUP);
628 renewalFlag = true;
629 }
630 }
631 if (!renewalFlag) {
632 try {
633 OleLoanDocument oleLoanDocument = new OleLoanDocument();
634 oleLoanDocument.setItemUuid(oleLoanForm.getItemUuid());
635 oleLoanForm.setAddressVerified(false);
636 oleLoanForm.getErrorsAndPermission().clear();
637 if (!getLoanProcessor().isClaimsReturnedItem(oleLoanForm.getItem(), oleLoanDocument)) {
638 oleLoanForm = getLoanProcessor().processLoan(oleLoanForm, oleLoanDocument);
639 oleLoanForm.setClaimsFlag(false);
640 } else {
641 oleLoanForm.setMessage("claims Returned Item");
642 oleLoanForm.setSuccess(false);
643 oleLoanForm.setClaimsFlag(true);
644 oleLoanForm.setRecordNote(false);
645 }
646 } catch (Exception e) {
647 LOG.error("Exception", e);
648 oleLoanForm.setInformation(e.getMessage());
649 }
650 }
651
652 oleLoanForm.setPatronbill(getLoanProcessor().checkPatronBill(oleLoanForm.getPatronId()));
653 Long end = System.currentTimeMillis();
654 Long timeTaken = end - begin;
655 LOG.info("-----------TimeTaken to complete one loan-----------"+timeTaken);
656 } catch (Exception e) {
657 LOG.error("Exception while adding an item", e);
658 }
659 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
660 }
661
662
663
664
665
666
667
668
669
670
671 @RequestMapping(params = "methodToCall=loan")
672 public ModelAndView loanPatron(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
673 HttpServletRequest request, HttpServletResponse response) {
674 Long begin = System.currentTimeMillis();
675 DateFormat df = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
676 LOG.debug("Inside the loan patron method");
677 if (loginUserList == null) {
678 loginUserList = new ArrayList<>();
679 }
680 StringBuffer buffer = new StringBuffer();
681 OleLoanForm oleLoanForm = (OleLoanForm) form;
682 String newPrincipalId = oleLoanForm.getNewPrincipalId();
683 oleLoanForm.setInformation("");
684 oleLoanForm.setSuccessInfo("");
685 oleLoanForm.setReturnInformation("");
686 OleLoanDocument oleLoanDocumentChk = null;
687 ModelAndView overrideModelView = null;
688 if (StringUtils.isBlank(oleLoanForm.getItem())) {
689 try {
690 String principalId = GlobalVariables.getUserSession().getPrincipalId();
691 Boolean overRideFlag = getLoanProcessor().checkOverRidePermission(principalId, oleLoanForm);
692 if (!overRideFlag) {
693 oleLoanDocumentChk = getLoanProcessor().getLoanDocument(oleLoanForm.getPatronBarcode(), oleLoanForm.getRealPatronBarcode(), oleLoanForm.isSelfCheckOut(), false);
694 if (oleLoanDocumentChk.getErrorMessage() != null) {
695 if (!oleLoanForm.getLoanLoginName().equalsIgnoreCase("") || !oleLoanForm.getLoanLoginName().isEmpty()) {
696 buffer.append(oleLoanForm.getLoanLoginName() + "," + oleLoanForm.getCirculationDesk());
697 getLoanProcessor().getLoanUserList(loginUserList, buffer);
698 } else {
699 if (!oleLoanForm.getOldPrincipalId().equalsIgnoreCase("") || !oleLoanForm.getOldPrincipalId().isEmpty()) {
700 buffer.append(oleLoanForm.getOldPrincipalId() + "," + oleLoanForm.getCirculationDesk());
701 getLoanProcessor().getLoanUserList(loginUserList, buffer);
702 }
703 }
704 overrideModelView = this.overRide(form, result, request, response);
705 }
706 }
707 } catch (Exception e) {
708 LOG.error("Check for Address Verified and Block Failed." + e.getMessage(), e);
709 }
710 } else {
711 if (!oleLoanForm.getLoanLoginName().equalsIgnoreCase("") || !oleLoanForm.getLoanLoginName().isEmpty()) {
712 buffer.append(oleLoanForm.getLoanLoginName() + "," + oleLoanForm.getCirculationDesk());
713 getLoanProcessor().getLoanUserList(loginUserList, buffer);
714 } else {
715 if (!oleLoanForm.getOldPrincipalId().equalsIgnoreCase("") || !oleLoanForm.getOldPrincipalId().isEmpty()) {
716 buffer.append(oleLoanForm.getOldPrincipalId() + "," + oleLoanForm.getCirculationDesk());
717 getLoanProcessor().getLoanUserList(loginUserList, buffer);
718 }
719 }
720 overrideModelView = this.overRide(form, result, request, response);
721 }
722 if (overrideModelView == null) {
723 try {
724 List<OleLoanDocument> existingItemList = new ArrayList<OleLoanDocument>();
725 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
726 Timestamp checkinDate = new Timestamp(System.currentTimeMillis());
727 if (oleLoanDocument != null) {
728 if (oleLoanDocument.getItemLoanStatus() != null && oleLoanDocument.getItemLoanStatus().equalsIgnoreCase(OLEConstants.ITEM_STATUS_CHECKEDOUT)) {
729 oleLoanForm.setCheckInItem(oleLoanForm.getItem());
730 oleLoanForm.setBackGroundCheckIn(true);
731
732 oleLoanForm.setBackUpDummyLoan(oleLoanDocument);
733 oleLoanDocument = getLoanProcessor().getOleLoanDocumentUsingItemBarcode(oleLoanForm.getCheckInItem());
734 oleLoanDocument.setCheckInDate(checkinDate);
735 oleLoanForm.getErrorsAndPermission().clear();
736 oleLoanDocument = getLoanProcessor().returnLoan(oleLoanForm.getCheckInItem(), oleLoanDocument);
737 oleLoanForm.setDummyLoan(oleLoanDocument);
738 if (oleLoanDocument.getErrorMessage() != null) {
739 oleLoanForm.setSuccess(true);
740 oleLoanForm.setMessage(null);
741 oleLoanForm.setReturnSuccess(false);
742 oleLoanForm.setReturnMessage(oleLoanDocument.getErrorMessage());
743 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
744 }
745 if (oleLoanDocument.isCopyRequest()) {
746 oleLoanForm.setSuccess(true);
747 oleLoanForm.setMessage(null);
748 oleLoanForm.setCopyRequest(true);
749 oleLoanForm.setReturnSuccess(false);
750 oleLoanForm.setReturnMessage(OLEConstants.COPY_REQUEST_FULFILL);
751 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
752 }
753 if (oleLoanDocument.isNumberOfPieces() || (oleLoanDocument.getOleItem() != null && oleLoanDocument.getOleItem().getNumberOfPieces() != null && !oleLoanDocument.getOleItem().getNumberOfPieces().equalsIgnoreCase(""))) {
754 oleLoanForm.setSuccess(true);
755 oleLoanForm.setMessage(null);
756 oleLoanForm.setNumberOfPieces(true);
757 oleLoanForm.setReturnSuccess(false);
758 oleLoanDocument.setContinueCheckIn(true);
759 oleLoanDocument.setBackgroundCheckInMissingPiece(true);
760 if (oleLoanDocument.getOleItem() != null && oleLoanDocument.getOleItem().getNumberOfPieces() != null) {
761 if (oleLoanDocument.getOleItem().getMissingPieceFlagNote() != null) {
762 oleLoanDocument.setDescription(oleLoanDocument.getOleItem().getMissingPieceFlagNote());
763 } else {
764 oleLoanDocument.setDescription("");
765 }
766 }
767 if (oleLoanDocument.getItemNumberOfPieces() != null) {
768 oleLoanForm.setReturnMessage(OLEConstants.VERIFY_PIECES + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.PIECES_RETURNED
769 + OLEConstants.BREAK + "Total No of Pieces : " + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.BREAK + "No of missing Pieces : " + (oleLoanDocument.getOleItem().getMissingPiecesCount() != null ? oleLoanDocument.getOleItem().getMissingPiecesCount() : "0"));
770 } else if (oleLoanDocument.getOleItem() != null && oleLoanDocument.getOleItem().getNumberOfPieces() != null) {
771 oleLoanForm.setReturnMessage(OLEConstants.VERIFY_PIECES + oleLoanDocument.getOleItem().getNumberOfPieces() + OLEConstants.PIECES_RETURNED
772 + OLEConstants.BREAK + "Total No of Pieces : " + oleLoanDocument.getOleItem().getNumberOfPieces() + OLEConstants.BREAK + "No of missing Pieces : " + (oleLoanDocument.getOleItem().getMissingPiecesCount() != null ? oleLoanDocument.getOleItem().getMissingPiecesCount() : "0"));
773 }
774 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
775 }
776 OleLoanForm oleReturnLoanForm = (OleLoanForm) oleLoanForm;
777 if (oleReturnLoanForm.getDummyLoan() != null) {
778 oleLoanDocument.setItemLoanStatus(oleReturnLoanForm.getDummyLoan().getItemStatus());
779 oleLoanForm.getDummyLoan().setItemLoanStatus(oleReturnLoanForm.getDummyLoan().getItemStatus());
780 }
781 } else if (oleLoanForm.getBackUpDummyLoan() != null) {
782 oleLoanDocument = oleLoanForm.getBackUpDummyLoan();
783 oleLoanDocument.setBackgroundCheckInMissingPiece(oleLoanForm.getDummyLoan().isBackgroundCheckInMissingPiece());
784 if (oleLoanForm.getDummyLoan() != null) {
785 oleLoanDocument.setItemLoanStatus(oleLoanForm.getDummyLoan().getItemStatus());
786 oleLoanDocument.setItemDamagedStatus(oleLoanForm.getDummyLoan().isItemDamagedStatus());
787 oleLoanDocument.setItemDamagedNote(oleLoanForm.getDummyLoan().getItemDamagedNote());
788 oleLoanDocument.getOleItem().setMissingPieceFlagNote(oleLoanForm.getMissingPieceMessage());
789 if (oleLoanDocument.getOleItem() != null) {
790 oleLoanDocument.getOleItem().setMissingPiecesCount(oleLoanForm.getDummyLoan().getMissingPiecesCount());
791 oleLoanDocument.getOleItem().setMissingPieceFlag(oleLoanForm.getDummyLoan().isMissingPieceFlag());
792 }
793 }
794 oleLoanForm.setBackUpDummyLoan(null);
795 }
796 boolean indefinite = false;
797 if (oleLoanForm.getItem() != null && !oleLoanForm.getItem().isEmpty() && oleLoanForm.getDueDateMap() == null && oleLoanDocument.getExpirationDate() == null) {
798 indefinite = true;
799 }
800 if ((oleLoanForm.getItem() != null && !oleLoanForm.getItem().isEmpty()) || (oleLoanForm.getOleItem() != null && !oleLoanForm.getOleItem().getItemIdentifier().isEmpty()) || indefinite) {
801 if (oleLoanForm.getDueDateMap() != null) {
802 Timestamp timestamp;
803 Pattern pattern;
804 Matcher matcher;
805 SimpleDateFormat fmt = new SimpleDateFormat(OLEConstants.OlePatron.PATRON_MAINTENANCE_DATE_FORMAT);
806 boolean timeFlag = false;
807 if (oleLoanForm.getPopDateTime() != null && !oleLoanForm.getPopDateTime().isEmpty()) {
808 String[] str = oleLoanForm.getPopDateTime().split(":");
809 pattern = Pattern.compile(OLEConstants.TIME_24_HR_PATTERN);
810 matcher = pattern.matcher(oleLoanForm.getPopDateTime());
811 timeFlag = matcher.matches();
812 if (timeFlag) {
813 if (str != null && str.length <= 2) {
814 oleLoanForm.setPopDateTime(oleLoanForm.getPopDateTime() + OLEConstants.CHECK_IN_TIME_MS);
815 }
816 timestamp = Timestamp.valueOf(new SimpleDateFormat(OLEConstants.CHECK_IN_DATE_TIME_FORMAT).format(oleLoanForm.getDueDateMap()).concat(" ").concat(oleLoanForm.getPopDateTime()));
817 } else {
818 oleLoanForm.setPopDateTimeInfo(OLEConstants.DUE_DATE_TIME_FORMAT_MESSAGE);
819
820 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
821 }
822 } else if (fmt.format(oleLoanForm.getDueDateMap()).compareTo(fmt.format(new Date())) == 0) {
823 timestamp = new Timestamp(new Date().getTime());
824 } else {
825 timestamp = Timestamp.valueOf(new SimpleDateFormat(OLEConstants.CHECK_IN_DATE_TIME_FORMAT).format(oleLoanForm.getDueDateMap()).concat(" ").concat(new SimpleDateFormat("HH:mm:ss").format(new Date())));
826 }
827 oleLoanDocument.setLoanDueDate(timestamp);
828 }
829 if (oleLoanDocument.getItemLoanStatus() != null && !oleLoanDocument.getItemLoanStatus().equalsIgnoreCase(OLEConstants.ITEM_STATUS_CHECKEDOUT) || oleLoanDocument.isBackgroundCheckInMissingPiece()) {
830 getLoanProcessor().saveLoan(oleLoanForm.getBackUpDummyLoan() != null ? oleLoanForm.getBackUpDummyLoan() : oleLoanDocument);
831 if (oleLoanForm.getBackUpDummyLoan() != null) {
832 oleLoanDocument = oleLoanForm.getBackUpDummyLoan();
833 oleLoanDocument.setBackgroundCheckInMissingPiece(oleLoanForm.getDummyLoan().isBackgroundCheckInMissingPiece());
834 if (oleLoanForm.getDummyLoan() != null) {
835 oleLoanDocument.setItemLoanStatus(oleLoanForm.getDummyLoan().getItemStatus());
836 oleLoanDocument.setItemDamagedStatus(oleLoanForm.getDummyLoan().isItemDamagedStatus());
837 oleLoanDocument.setItemDamagedNote(oleLoanForm.getDummyLoan().getItemDamagedNote());
838 oleLoanDocument.getOleItem().setMissingPieceFlagNote(oleLoanForm.getMissingPieceMessage());
839 if (oleLoanDocument.getOleItem() != null) {
840 oleLoanDocument.getOleItem().setMissingPiecesCount(oleLoanForm.getDummyLoan().getMissingPiecesCount());
841 oleLoanDocument.getOleItem().setMissingPieceFlag(oleLoanForm.getDummyLoan().isMissingPieceFlag());
842 }
843 }
844 oleLoanForm.setBackUpDummyLoan(null);
845 }
846 oleLoanForm.setSuccessMessage(oleLoanDocument.getSuccessMessage());
847 if (!oleLoanForm.isCheckOut())
848 existingItemList.add(oleLoanDocument);
849 oleLoanDocument.setBackgroundCheckInMissingPiece(false);
850 }
851
852 if (oleLoanForm.getLoanList() != null && !oleLoanForm.getLoanList().isEmpty()) {
853 existingItemList.addAll(oleLoanForm.getLoanList());
854 }
855 oleLoanForm.setLoanList(existingItemList);
856 }
857 if (StringUtils.isNotEmpty(oleLoanDocument.getItemUuid())) {
858 org.kuali.ole.docstore.common.document.Item item = getDocstoreClientLocator().getDocstoreClient().retrieveItem(oleLoanDocument.getItemUuid());
859 String itemXmlContent = item.getContent();
860
861 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
862 if(StringUtils.isBlank(oleLoanDocument.getLocation())){
863 getLoanProcessor().getLocation(oleItem, oleLoanDocument, item);
864 }
865 if (oleLoanDocument.getLocation() == null || oleLoanDocument.getLocation().isEmpty()) {
866 getLoanProcessor().getDefaultHoldingLocation(oleLoanDocument);
867 }
868 if (oleLoanDocument.getCheckInDate() == null) {
869 oleLoanDocument.setCheckInDate(checkinDate);
870 }
871 if (oleLoanDocument.getOleCirculationDesk() == null) {
872 oleLoanDocument.setCirculationLocationId(oleLoanForm.getCirculationDesk());
873 }
874 if (oleItem.isMissingPieceFlag()) {
875 oleLoanDocument.setMissingPieceNote(oleItem.getMissingPieceFlagNote());
876 oleLoanDocument.setMissingPieceFlag(oleItem.isMissingPieceFlag());
877 }
878 if (oleItem.isItemDamagedStatus()) {
879 oleLoanDocument.setItemDamagedNote(oleItem.getDamagedItemNote());
880 }
881 if (oleLoanForm.getPatronName() == null) {
882 oleLoanForm.setPatronName(oleLoanDocument.getPatronName());
883 }
884 if (oleItem.isClaimsReturnedFlag()) {
885 if (oleItem.getClaimsReturnedFlagCreateDate() != null)
886 oleLoanDocument.setClaimsReturnedDate(new Timestamp(df.parse(oleItem.getClaimsReturnedFlagCreateDate()).getTime()));
887 oleLoanDocument.setClaimsReturnedIndicator(true);
888 oleLoanDocument.setClaimsReturnNote(oleItem.getClaimsReturnedNote());
889 }
890 if (oleLoanForm.getPatronName() == null) {
891 oleLoanForm.setPatronName(oleLoanDocument.getPatronName());
892 }
893 if (oleLoanForm.isCheckOut()) {
894 if (!oleLoanDocument.getItemLoanStatus().equalsIgnoreCase(OLEConstants.ITEM_STATUS_CHECKEDOUT))
895 getLoanProcessor().saveLoan(oleLoanForm.getBackUpDummyLoan() != null ? oleLoanForm.getBackUpDummyLoan() : oleLoanDocument);
896 oleLoanForm.setSuccessMessage(oleLoanDocument.getSuccessMessage());
897 List<OleLoanDocument> oleLoanDocuments = new ArrayList<OleLoanDocument>();
898 if (oleLoanDocument.getOleItem().getItemStatus() != null) {
899 oleLoanDocument.setItemStatusCode(oleLoanDocument.getOleItem().getItemStatus().getCodeValue());
900 } else {
901 oleLoanDocument.setItemStatusCode(oleLoanDocument.getItemLoanStatus());
902 }
903 OleItemAvailableStatus oleItemAvailableStatus = getLoanProcessor().validateAndGetItemStatus(oleLoanDocument.getItemStatusCode());
904 oleLoanDocument.setItemStatus(oleItemAvailableStatus != null ? oleItemAvailableStatus.getItemAvailableStatusName() : null);
905 oleLoanDocument.setDescription(oleLoanForm.getDescription());
906 oleLoanDocuments.add(oleLoanDocument);
907 if (oleLoanForm.getItemReturnList() != null) {
908 oleLoanDocuments.addAll(oleLoanForm.getItemReturnList());
909 }
910 oleLoanForm.setItemReturnList(oleLoanDocuments);
911 if (oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
912 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
913 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
914
915 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
916 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
917 if (oleNoticeBo != null) {
918 oleNoticeBo.setCheckInDate(dateFormat.format(date));
919 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
920 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
921 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
922 if (replyToEmail!=null){
923 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
924 }else {
925 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
926 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
927 fromAddress = OLEConstants.KUALI_MAIL;
928 }
929 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
930 }
931 if (LOG.isInfoEnabled()) {
932 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
933 }
934 }
935 } else {
936 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
937 oleLoanForm.setBillAvailability(false);
938 } else {
939 oleLoanForm.setBillAvailability(true);
940 }
941 }
942 }
943 if (oleLoanDocument.isCheckOut()) {
944 oleLoanForm.setDueDateSlip(true);
945 oleLoanForm.setBillAvailability(false);
946 }
947 oleLoanForm.setReturnSuccess(true);
948 oleLoanForm.setCheckOut(false);
949 }
950 oleLoanForm.setSuccess(true);
951 oleLoanForm.setMessage(null);
952 oleLoanForm.setItem("");
953 oleLoanForm.setInformation("");
954 oleLoanForm.setPopDateTimeInfo("");
955 oleLoanForm.setAddressVerified(false);
956 if (oleLoanDocument.isClaimsReturnedIndicator()) {
957 saveGeneralNoteForFlaggedItem(OLEConstants.CLAIMS_CHECKED_OUT_FLAG, true, oleLoanDocument, true, false, oleLoanForm.isBackGroundCheckIn(), oleLoanForm.getPatronBarcode());
958 }
959 }
960 if (oleLoanDocument.isMissingPieceFlag() || oleLoanDocument.isItemDamagedStatus()) {
961 flaggedNoteSave(form, result, request, response);
962 }
963 }
964 } catch (Exception e) {
965 oleLoanForm.setInformation(e.getMessage());
966 LOG.error("Exception", e);
967 }
968 }
969
970
971
972
973
974
975
976 oleLoanForm.setOleFormKey(oleLoanForm.getFormKey());
977 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
978 oleLoanForm.setAudioEnable(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
979 oleLoanForm.setItemUuid(null);
980 oleLoanForm.setInstanceUuid(null);
981 if (oleLoanForm.getDummyLoan() != null && oleLoanForm.getDummyLoan().getOlePatron() != null && oleLoanForm.getDummyLoan().getErrorMessage() != null) {
982 oleLoanForm.setMessage(null);
983 oleLoanForm.setBlockPatron(false);
984 oleLoanForm.setBlockItem(false);
985 oleLoanForm.setSuccess(true);
986 }
987 Long end = System.currentTimeMillis();
988 Long timeTaken = end - begin;
989 LOG.info("-----------TimeTaken to complete override loan-----------"+timeTaken);
990 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
991 }
992
993
994
995
996
997
998
999
1000
1001
1002 @RequestMapping(params = "methodToCall=noLoan")
1003 public ModelAndView doNotLoanPatron(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1004 HttpServletRequest request, HttpServletResponse response) {
1005 LOG.debug("Inside the do not loan patron method");
1006 OleLoanForm oleLoanForm = (OleLoanForm) form;
1007 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
1008 if (oleLoanForm.isCheckOut()) {
1009 List<OleLoanDocument> oleLoanDocuments = new ArrayList<OleLoanDocument>();
1010 if (oleLoanDocument.getOleItem().getItemStatus() != null) {
1011 oleLoanDocument.setItemStatusCode(oleLoanDocument.getOleItem().getItemStatus().getCodeValue());
1012 } else {
1013 oleLoanDocument.setItemStatusCode(oleLoanDocument.getItemLoanStatus());
1014 }
1015 OleItemAvailableStatus oleItemAvailableStatus = getLoanProcessor().validateAndGetItemStatus(oleLoanDocument.getItemStatusCode());
1016 oleLoanDocument.setItemStatus(oleItemAvailableStatus != null ? oleItemAvailableStatus.getItemAvailableStatusName() : null);
1017 oleLoanDocuments.add(oleLoanDocument);
1018 if (oleLoanForm.getItemReturnList() != null) {
1019 oleLoanDocuments.addAll(oleLoanForm.getItemReturnList());
1020 }
1021 if (oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
1022 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
1023 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
1024
1025 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
1026 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
1027 if (oleNoticeBo != null) {
1028 oleNoticeBo.setCheckInDate(dateFormat.format(date));
1029 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
1030 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
1031 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
1032 if (replyToEmail != null) {
1033 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
1034 } else {
1035 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
1036 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
1037 fromAddress = OLEConstants.KUALI_MAIL;
1038 }
1039 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
1040 }
1041 if (LOG.isInfoEnabled()) {
1042 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
1043 }
1044 }
1045 } else {
1046 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
1047 oleLoanForm.setBillAvailability(false);
1048 } else {
1049 oleLoanForm.setBillAvailability(true);
1050 }
1051 }
1052 }
1053 oleLoanForm.setItemReturnList(oleLoanDocuments);
1054 oleLoanForm.setReturnSuccess(true);
1055 oleLoanForm.setCheckOut(false);
1056 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
1057 oleLoanForm.setAudioEnable(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
1058 }
1059 if (oleLoanForm.getItem() == null || "".equals(oleLoanForm.getItem())) {
1060 clearPatronScreen(oleLoanForm, result, request, response);
1061 }
1062 oleLoanForm.setAddressVerified(false);
1063 oleLoanForm.setItem("");
1064 oleLoanForm.setInformation("");
1065 oleLoanForm.setReturnInformation("");
1066 oleLoanForm.setDueDateSlip(false);
1067 oleLoanForm.setMessage(null);
1068 oleLoanForm.setSuccess(true);
1069 oleLoanForm.setItemUuid(null);
1070 oleLoanForm.setInstanceUuid(null);
1071 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
1072 }
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083 @RequestMapping(params = "methodToCall=openFastAdd")
1084 public ModelAndView openFastAdd(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1085 HttpServletRequest request, HttpServletResponse response) {
1086 LOG.debug("Inside the openFastAdd method");
1087 OleLoanForm oleLoanForm = (OleLoanForm) form;
1088 oleLoanForm.setFastAddItemIndicator(true);
1089 String url = ConfigContext.getCurrentContextConfig().getProperty("ole.fs.url.base") + "/ole-kr-krad/fastAddController?viewId=FastAddItemView&methodToCall=start";
1090 oleLoanForm.setFastAddUrl(url);
1091 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1092 }
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104 @RequestMapping(params = "methodToCall=deletePatronUserNote")
1105 public ModelAndView deletePatronUserNote(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1106 HttpServletRequest request, HttpServletResponse response) {
1107 LOG.debug("Inside the delete patron user note method");
1108 OleLoanForm oleLoanForm = (OleLoanForm) form;
1109 oleLoanForm.setPatronNoteFlag(false);
1110 try {
1111 getLoanProcessor().deletePatronUserNote(oleLoanForm.getPatronId(), oleLoanForm.getPatronNoteTypeId());
1112 } catch (Exception e) {
1113 oleLoanForm.setInformation(e.getMessage());
1114 LOG.error("Exception while deleting patron user note", e);
1115 }
1116 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1117 }
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128 @RequestMapping(params = "methodToCall=editDueDate")
1129 public ModelAndView editDueDate(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1130 HttpServletRequest request, HttpServletResponse response) {
1131 LOG.debug("Inside the edit due date method");
1132 if (loginUserList == null) {
1133 loginUserList = new ArrayList<>();
1134 }
1135 StringBuffer buffer = new StringBuffer();
1136 OleLoanForm oleLoanForm = (OleLoanForm) form;
1137 oleLoanForm.setInformation("");
1138 oleLoanForm.setSuccessInfo("");
1139 oleLoanForm.setReturnInformation("");
1140 List<OleLoanDocument> alterDueDateList = new ArrayList<OleLoanDocument>();
1141 alterDueDateList = getLoanProcessor().setListValues(oleLoanForm.getLoanList(), oleLoanForm.getExistingLoanList(), false, null, false);
1142
1143 if (alterDueDateList.size() != 0) {
1144 oleLoanForm.setAlterDueDateList(alterDueDateList);
1145 oleLoanForm.setInformation("");
1146 if (!oleLoanForm.getLoanLoginName().equalsIgnoreCase("") || !oleLoanForm.getLoanLoginName().isEmpty()) {
1147 buffer.append(oleLoanForm.getLoanLoginName() + "," + oleLoanForm.getCirculationDesk());
1148 getLoanProcessor().getLoanUserList(loginUserList, buffer);
1149 } else {
1150 if (!oleLoanForm.getOldPrincipalId().equalsIgnoreCase("") || !oleLoanForm.getOldPrincipalId().isEmpty()) {
1151 buffer.append(oleLoanForm.getOldPrincipalId() + "," + oleLoanForm.getCirculationDesk());
1152 getLoanProcessor().getLoanUserList(loginUserList, buffer);
1153 }
1154 }
1155 ModelAndView overrideModelView = this.overRide(form, result, request, response);
1156
1157
1158
1159
1160
1161 if (overrideModelView == null){
1162 oleLoanForm.setAlterDueDateFlag(true);
1163 }
1164 } else{
1165 oleLoanForm.setInformation(OLEConstants.ALTER_DUE_DATE_ERR_INFO);
1166 }
1167
1168 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1169 }
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180 @RequestMapping(params = "methodToCall=updateDueDate")
1181 public ModelAndView updateDueDate(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1182 HttpServletRequest request, HttpServletResponse response) {
1183 LOG.debug("Inside the update due date method");
1184 OleLoanForm oleLoanForm = (OleLoanForm) form;
1185 oleLoanForm.setInformation("");
1186 oleLoanForm.setSuccessInfo("");
1187 oleLoanForm.setReturnInformation("");
1188 boolean timeFlag = true;
1189 try {
1190 oleLoanForm.setAlterDueDateTimeInfo("");
1191 timeFlag = getLoanProcessor().updateLoan(oleLoanForm.getAlterDueDateList(),oleLoanForm.getPatronId(), false, false,oleLoanForm.getBorrowerCode());
1192 if (!timeFlag) {
1193 oleLoanForm.setAlterDueDateTimeInfo(OLEConstants.ALTER_DUE_DATE_TIME_FORMAT_MESSAGE);
1194 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1195 }
1196
1197 } catch (Exception e) {
1198 oleLoanForm.setInformation(e.getMessage());
1199 LOG.error("Exception while updating due date", e);
1200 }
1201 oleLoanForm.setAlterDueDateFlag(false);
1202 List<OleLoanDocument> sortedExistingLoanList = oleLoanForm.getExistingLoanList();
1203 List<OleLoanDocument> LoanDocumentList = new ArrayList<>();
1204 List<OleLoanDocument> indefiniteLoanDocumentList = new ArrayList<>();
1205 for (OleLoanDocument loanDoc : sortedExistingLoanList) {
1206 if (loanDoc.getLoanDueDate() != null && !(loanDoc.getLoanDueDate().toString().isEmpty())) {
1207 LoanDocumentList.add(loanDoc);
1208 } else {
1209 indefiniteLoanDocumentList.add(loanDoc);
1210 }
1211
1212 }
1213 Collections.sort(LoanDocumentList, new Comparator<OleLoanDocument>() {
1214 public int compare(OleLoanDocument o1, OleLoanDocument o2) {
1215 return o1.getLoanDueDate().compareTo(o2.getLoanDueDate());
1216 }
1217 });
1218 LoanDocumentList.addAll(indefiniteLoanDocumentList);
1219 oleLoanForm.setExistingLoanList(LoanDocumentList);
1220 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1221 }
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232 @RequestMapping(params = "methodToCall=closeAlterDueDate")
1233 public ModelAndView closeAlterDueDate(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1234 HttpServletRequest request, HttpServletResponse response) {
1235 LOG.debug("Inside the close Alter due date method");
1236 OleLoanForm oleLoanForm = (OleLoanForm) form;
1237
1238
1239
1240
1241
1242
1243 List<OleLoanDocument> resetAlterDueDate = oleLoanForm.getAlterDueDateList();
1244 if (resetAlterDueDate != null) {
1245 for (int restDueDate = 0; restDueDate < resetAlterDueDate.size(); restDueDate++) {
1246 OleLoanDocument oleLoanDocument = (OleLoanDocument) resetAlterDueDate.get(restDueDate);
1247 if(oleLoanDocument!=null){
1248 oleLoanDocument.setLoanDueDate(new Timestamp(oleLoanDocument.getPastDueDate().getTime()));
1249 oleLoanDocument.setPastDueDate(null);
1250 }
1251 }
1252 }
1253
1254 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1255 }
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266 @RequestMapping(params = "methodToCall=claimsReturn")
1267 public ModelAndView claimsReturn(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1268 HttpServletRequest request, HttpServletResponse response) {
1269 LOG.debug("Inside the claims return method");
1270 if (loginUserList == null) {
1271 loginUserList = new ArrayList<>();
1272 }
1273 StringBuffer buffer = new StringBuffer();
1274 OleLoanForm oleLoanForm = (OleLoanForm) form;
1275 oleLoanForm.setInformation("");
1276 oleLoanForm.setSuccessInfo("");
1277 oleLoanForm.setReturnInformation("");
1278 oleLoanForm.setRemoveClaimsReturnFlag(false);
1279 boolean checkedItemsFlag = false;
1280 if (oleLoanForm.getLoanList().size() > 0) {
1281 for (int currentLoan = 0; currentLoan < oleLoanForm.getLoanList().size(); currentLoan++) {
1282 OleLoanDocument oleLoanDocument = (OleLoanDocument) oleLoanForm.getLoanList().get(currentLoan);
1283 if (oleLoanDocument.isCheckNo()) {
1284 try {
1285 String itemXmlContent = getLoanProcessor().getItemXML(oleLoanDocument.getItemUuid());
1286 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
1287 oleLoanForm.setClaimsReturnNote(oleItem.getClaimsReturnedNote());
1288 oleLoanForm.setItemClaimsReturnFlag(oleItem.isClaimsReturnedFlag());
1289 } catch (Exception e) {
1290 throw new RuntimeException();
1291 }
1292 checkedItemsFlag = true;
1293 break;
1294 }
1295 }
1296 }
1297 if (oleLoanForm.getExistingLoanList().size() > 0) {
1298 for (int currentLoan = 0; currentLoan < oleLoanForm.getExistingLoanList().size(); currentLoan++) {
1299 OleLoanDocument oleLoanDocument = (OleLoanDocument) oleLoanForm.getExistingLoanList().get(currentLoan);
1300 if (oleLoanDocument.isCheckNo()) {
1301 try {
1302 String itemXmlContent = getLoanProcessor().getItemXML(oleLoanDocument.getItemUuid());
1303 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
1304 oleLoanForm.setItemClaimsReturnFlag(oleItem.isClaimsReturnedFlag());
1305 oleLoanForm.setClaimsReturnNote(oleItem.getClaimsReturnedNote());
1306 } catch (Exception e) {
1307 throw new RuntimeException();
1308 }
1309 checkedItemsFlag = true;
1310 break;
1311 }
1312 }
1313 }
1314 if (checkedItemsFlag) {
1315 oleLoanForm.setInformation("");
1316 if (!oleLoanForm.getLoanLoginName().equalsIgnoreCase("") || !oleLoanForm.getLoanLoginName().isEmpty()) {
1317 buffer.append(oleLoanForm.getLoanLoginName() + "," + oleLoanForm.getCirculationDesk());
1318 getLoanProcessor().getLoanUserList(loginUserList, buffer);
1319 } else {
1320 if (!oleLoanForm.getOldPrincipalId().equalsIgnoreCase("") || !oleLoanForm.getOldPrincipalId().isEmpty()) {
1321 buffer.append(oleLoanForm.getOldPrincipalId() + "," + oleLoanForm.getCirculationDesk());
1322 getLoanProcessor().getLoanUserList(loginUserList, buffer);
1323 }
1324 }
1325 ModelAndView overrideModelView = this.overRide(form, result, request, response);
1326
1327
1328
1329
1330
1331 if (overrideModelView == null)
1332 oleLoanForm.setClaimsReturnFlag(true);
1333 } else
1334 oleLoanForm.setInformation(OLEConstants.CLAIMS_ITM_ERR_INFO);
1335 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1336 }
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347 @RequestMapping(params = "methodToCall=applyClaimsReturn")
1348 public ModelAndView applyClaimsReturn(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1349 HttpServletRequest request, HttpServletResponse response) {
1350 LOG.debug("Inside the apply claims return method");
1351 OleLoanForm oleLoanForm = (OleLoanForm) form;
1352 oleLoanForm.setInformation("");
1353 oleLoanForm.setSuccessInfo("");
1354 oleLoanForm.setReturnInformation("");
1355 List<OleLoanDocument> claimsList = new ArrayList<OleLoanDocument>();
1356 claimsList = getLoanProcessor().setListValues(oleLoanForm.getLoanList(), oleLoanForm.getExistingLoanList(), oleLoanForm.isClaimsReturnFlag(), oleLoanForm.getClaimsReturnNote(), oleLoanForm.isRemoveClaimsReturnFlag());
1357 try {
1358 getLoanProcessor().updateLoan(claimsList, oleLoanForm.getPatronId(), true, oleLoanForm.isRemoveClaimsReturnFlag(),oleLoanForm.getBorrowerCode());
1359
1360 } catch (Exception e) {
1361 LOG.error("Exception while setting claims return", e);
1362 oleLoanForm.setInformation(e.getMessage());
1363 }
1364 oleLoanForm.setClaimsReturnFlag(false);
1365 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1366 }
1367
1368
1369 @RequestMapping(params = "methodToCall=showMissingPieceDialogBox")
1370 public ModelAndView showMissingPieceDialogBox(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1371 HttpServletRequest request, HttpServletResponse response) {
1372 OleLoanForm oleLoanForm = (OleLoanForm) form;
1373 int count = 0;
1374 oleLoanForm.setDialogFlag(false);
1375 oleLoanForm.setDialogItemNoOfPieces(null);
1376 oleLoanForm.setDialogMissingPieceCount(null);
1377 oleLoanForm.setDialogText(null);
1378 oleLoanForm.setDialogItemNoOfPiecesReadOnly(false);
1379 oleLoanForm.setDialogMissingPieceCountReadOnly(false);
1380 oleLoanForm.setDialogErrorMessage(null);
1381 oleLoanForm.setInformation("");
1382 oleLoanForm.setSuccessInfo("");
1383 OleLoanDocument loanDocument = new OleLoanDocument();
1384 if (oleLoanForm.getLoanList().size() > 0) {
1385 for (OleLoanDocument oleLoanDocument : oleLoanForm.getLoanList()) {
1386 if (oleLoanDocument.isCheckNo()) {
1387 loanDocument = oleLoanDocument;
1388 count++;
1389 }
1390 }
1391 }
1392 if (oleLoanForm.getExistingLoanList().size() > 0) {
1393 for (OleLoanDocument oleLoanDocument : oleLoanForm.getExistingLoanList()) {
1394 if (oleLoanDocument.isCheckNo()) {
1395 loanDocument = oleLoanDocument;
1396 count++;
1397 }
1398 }
1399 }
1400 if (count == 1) {
1401 try {
1402 String itemXmlContent = getLoanProcessor().getItemXML(loanDocument.getItemUuid());
1403 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
1404 oleLoanForm.setDialogText(oleItem.getMissingPieceFlagNote());
1405 if (!oleItem.isMissingPieceFlag()) {
1406 oleLoanForm.setDialogFlag(true);
1407 } else {
1408 oleLoanForm.setRemoveMissingPieceButton(true);
1409 }
1410 oleLoanForm.setDialogMissingPieceCount(oleItem.getMissingPiecesCount());
1411 oleLoanForm.setDialogItemNoOfPieces(oleItem.getNumberOfPieces());
1412 if (oleItem.getNumberOfPieces() != null && !oleItem.getNumberOfPieces().equalsIgnoreCase("")) {
1413 oleLoanForm.setDialogItemNoOfPiecesReadOnly(true);
1414 }
1415 if (oleItem.isMissingPieceFlag()) {
1416 if (oleItem.getMissingPiecesCount() != null && !oleItem.getMissingPiecesCount().equalsIgnoreCase("")) {
1417 oleLoanForm.setDialogMissingPieceCountReadOnly(true);
1418 }
1419
1420 }
1421 } catch (Exception e) {
1422 throw new RuntimeException();
1423 }
1424 oleLoanForm.setMissingPieceDialog(true);
1425 oleLoanForm.setMissingPieceLoanDocument(loanDocument);
1426 } else
1427 oleLoanForm.setInformation(OLEConstants.SELECT_SINGLE_ITEM);
1428
1429 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1430 }
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441 @RequestMapping(params = "methodToCall=updateMissingPieceItem")
1442 public ModelAndView updateMissingPieceItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1443 HttpServletRequest request, HttpServletResponse response) {
1444 LOG.debug("Inside the claims return method");
1445 if (loginUserList == null) {
1446 loginUserList = new ArrayList<>();
1447 }
1448 MissingPieceItemRecord missingPieceItemRecord = new MissingPieceItemRecord();
1449 StringBuffer buffer = new StringBuffer();
1450 OleLoanForm oleLoanForm = (OleLoanForm) form;
1451
1452
1453
1454
1455
1456
1457 SimpleDateFormat df = new SimpleDateFormat("MM/dd/yyyy");
1458 String parsedDate = df.format((new Date()));
1459 OleLoanDocument loanDocument = oleLoanForm.getMissingPieceLoanDocument();
1460 if (oleLoanForm.getDialogItemNoOfPieces() == null || oleLoanForm.getDialogItemNoOfPieces() != null && oleLoanForm.getDialogItemNoOfPieces().equalsIgnoreCase("")) {
1461 oleLoanForm.setDialogErrorMessage("Provide information for no of pieces");
1462 oleLoanForm.setDialogItemNoOfPiecesReadOnly(false);
1463 oleLoanForm.setMissingPieceDialog(true);
1464 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1465 }
1466 if (oleLoanForm.getDialogMissingPieceCount() != null && oleLoanForm.getDialogItemNoOfPieces().equalsIgnoreCase("")) {
1467 int noOfPiece = Integer.parseInt(oleLoanForm.getDialogItemNoOfPieces());
1468 if (noOfPiece < 1) {
1469 oleLoanForm.setMissingPieceDialog(true);
1470 oleLoanForm.setDialogItemNoOfPiecesReadOnly(false);
1471 oleLoanForm.setDialogErrorMessage(OLEConstants.ERROR_MISSING_ITEM_NO_GREATER);
1472 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1473 }
1474 }
1475 oleLoanForm.setDialogItemNoOfPiecesReadOnly(true);
1476 if (oleLoanForm.getDialogMissingPieceCount() == null || (oleLoanForm.getDialogMissingPieceCount() != null && oleLoanForm.getDialogMissingPieceCount().equalsIgnoreCase(""))) {
1477 oleLoanForm.setMissingPieceDialog(true);
1478 oleLoanForm.setDialogMissingPieceCountReadOnly(false);
1479 oleLoanForm.setDialogErrorMessage(OLEConstants.ERROR_MISSING_ITEM_COUNT_REQUIRED);
1480 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1481 }
1482 if (oleLoanForm.getDialogMissingPieceCount() != null && !oleLoanForm.getDialogMissingPieceCount().equalsIgnoreCase("")) {
1483 int count = Integer.parseInt(oleLoanForm.getDialogMissingPieceCount());
1484 int noOfPiece = Integer.parseInt(oleLoanForm.getDialogItemNoOfPieces());
1485 if (count < 1) {
1486 oleLoanForm.setMissingPieceDialog(true);
1487 oleLoanForm.setDialogErrorMessage(OLEConstants.ERROR_MISSING_COUNT_NO_LESS);
1488 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1489 }
1490 if (count > noOfPiece) {
1491 oleLoanForm.setMissingPieceDialog(true);
1492 oleLoanForm.setDialogMissingPieceCountReadOnly(false);
1493 oleLoanForm.setDialogErrorMessage(OLEConstants.ERROR_MISSING_ITEM_GREATER_COUNT);
1494 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1495 }
1496 }
1497
1498 if (oleLoanForm.getMissingPieceLoanDocument() != null && oleLoanForm.getMissingPieceLoanDocument().getItemUuid() != null) {
1499 org.kuali.ole.docstore.common.document.Item item = new ItemOleml();
1500 try {
1501 boolean isMissingPieceFlag = false;
1502 String itemXmlContent = getLoanProcessor().getItemXML(oleLoanForm.getMissingPieceLoanDocument().getItemUuid());
1503 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
1504 boolean isUpdateNote=false;
1505 boolean isCreateNote=false;
1506 boolean isMissingFlagEnabledDB=(oleItem != null && oleItem.isMissingPieceFlag())?true:false;
1507 isCreateNote=!isMissingFlagEnabledDB && !oleLoanForm.isRemoveMissingPieceFlag();
1508 isUpdateNote=isMissingFlagEnabledDB && !oleLoanForm.isRemoveMissingPieceFlag();
1509 if (oleLoanForm.isRemoveMissingPieceFlag()) {
1510 oleItem.setMissingPieceFlag(false);
1511 isMissingPieceFlag = false;
1512 } else {
1513 oleItem.setMissingPieceFlag(true);
1514 isMissingPieceFlag = true;
1515 }
1516 if(isCreateNote){
1517 missingPieceItemRecord.setMissingPieceCount(oleLoanForm.getDialogMissingPieceCount());
1518 missingPieceItemRecord.setMissingPieceFlagNote(oleLoanForm.getDialogText());
1519 missingPieceItemRecord.setMissingPieceDate(parsedDate);
1520 missingPieceItemRecord.setItemId(oleLoanForm.getMissingPieceLoanDocument().getItemUuid());
1521 missingPieceItemRecord.setOperatorId(GlobalVariables.getUserSession().getPrincipalId());
1522 missingPieceItemRecord.setPatronBarcode(oleLoanForm.getPatronBarcode());
1523
1524 if(CollectionUtils.isNotEmpty(oleItem.getMissingPieceItemRecordList())){
1525
1526 oleItem.getMissingPieceItemRecordList().add(missingPieceItemRecord);
1527 } else {
1528 List<MissingPieceItemRecord> missingPieceItemRecords=new ArrayList<MissingPieceItemRecord>();
1529 missingPieceItemRecords.add(missingPieceItemRecord);
1530 oleItem.setMissingPieceItemRecordList(missingPieceItemRecords);
1531 }
1532 }else{
1533 if(isUpdateNote){
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548 Map<String,String> map = new HashMap<>();
1549 map.put("itemId", DocumentUniqueIDPrefix.getDocumentId(loanDocument.getItemUuid()));
1550 List<org.kuali.ole.docstore.engine.service.storage.rdbms.pojo.MissingPieceItemRecord> missingPieceItemRecordList = (List<org.kuali.ole.docstore.engine.service.storage.rdbms.pojo.MissingPieceItemRecord>) KRADServiceLocator.getBusinessObjectService().findMatchingOrderBy(org.kuali.ole.docstore.engine.service.storage.rdbms.pojo.MissingPieceItemRecord.class, map, "missingPieceItemId", true);
1551 List<MissingPieceItemRecord> missingPieceItemRecords = new ArrayList<>();
1552 for(int index=0 ; index < missingPieceItemRecordList.size() ; index++){
1553 MissingPieceItemRecord missingPieceItemRecord1 = new MissingPieceItemRecord();
1554 if(index == missingPieceItemRecordList.size()-1){
1555
1556
1557
1558
1559
1560
1561
1562 DateFormat dfs = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
1563 String missingPieceItemDate = dfs.format((new Date()));
1564 missingPieceItemRecord1.setMissingPieceDate(missingPieceItemDate);
1565 missingPieceItemRecord1.setMissingPieceCount(oleLoanForm.getDialogMissingPieceCount());
1566 missingPieceItemRecord1.setPatronBarcode(oleLoanForm.getPatronBarcode());
1567 missingPieceItemRecord1.setOperatorId(GlobalVariables.getUserSession().getPrincipalId());
1568 missingPieceItemRecord1.setItemId(oleLoanForm.getMissingPieceLoanDocument().getItemUuid());
1569 missingPieceItemRecord1.setMissingPieceFlagNote(oleLoanForm.getDialogText());
1570
1571 } else {
1572 if (missingPieceItemRecordList.get(index).getMissingPieceDate() != null && !missingPieceItemRecordList.get(index).getMissingPieceDate().toString().isEmpty()) {
1573 SimpleDateFormat format1 = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss");
1574 SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
1575 Date missingPieceItemDate = null;
1576 try {
1577 missingPieceItemDate = format2.parse(missingPieceItemRecordList.get(index).getMissingPieceDate().toString());
1578 } catch (ParseException e) {
1579 LOG.error("format string to Date " + e);
1580 }
1581 missingPieceItemRecord1.setMissingPieceDate(format1.format(missingPieceItemDate).toString());
1582 }
1583 missingPieceItemRecord1.setMissingPieceFlagNote(missingPieceItemRecordList.get(index).getMissingPieceFlagNote());
1584 missingPieceItemRecord1.setMissingPieceCount(missingPieceItemRecordList.get(index).getMissingPieceCount());
1585 missingPieceItemRecord1.setOperatorId(missingPieceItemRecordList.get(index).getOperatorId());
1586 missingPieceItemRecord1.setPatronBarcode(missingPieceItemRecordList.get(index).getPatronBarcode());
1587 missingPieceItemRecord1.setItemId(missingPieceItemRecordList.get(index).getItemId());
1588 }
1589 missingPieceItemRecords.add(missingPieceItemRecord1);
1590 }
1591 oleItem.setMissingPieceItemRecordList(missingPieceItemRecords);
1592 }
1593 }
1594
1595
1596
1597
1598
1599 oleItem.setMissingPiecesCount(oleLoanForm.getDialogMissingPieceCount());
1600 oleItem.setNumberOfPieces(oleLoanForm.getDialogItemNoOfPieces());
1601 oleItem.setMissingPieceFlagNote(oleLoanForm.getDialogText());
1602 itemXmlContent = new ItemOlemlRecordProcessor().toXML(oleItem);
1603 if (LOG.isDebugEnabled()) {
1604 LOG.debug("itemXmlContent" + itemXmlContent);
1605 }
1606 item.setContent(itemXmlContent);
1607 item.setCategory(OLEConstants.WORK_CATEGORY);
1608 item.setType(DocType.ITEM.getCode());
1609 item.setFormat(OLEConstants.OLEML_FORMAT);
1610 item.setId(oleLoanForm.getMissingPieceLoanDocument().getItemUuid());
1611 getDocstoreClientLocator().getDocstoreClient().updateItem(item);
1612 if (isMissingPieceFlag) {
1613 oleLoanForm.getMissingPieceLoanDocument().setMissingPieceNote(oleLoanForm.getDialogText());
1614 } else {
1615 oleLoanForm.getMissingPieceLoanDocument().setMissingPieceNote("");
1616 }
1617 oleLoanForm.getMissingPieceLoanDocument().setCheckNo(false);
1618 oleLoanForm.setRemoveMissingPieceFlag(false);
1619 } catch (Exception e) {
1620 LOG.error("Exception occured when updating item" + e);
1621 }
1622 } else {
1623 oleLoanForm.setMissingPieceDialog(true);
1624 oleLoanForm.setErrorMessage("Not updated successfully");
1625
1626 }
1627 oleLoanForm.setMissingPieceDialog(false);
1628 oleLoanForm.setRemoveMissingPieceButton(false);
1629 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1630 }
1631
1632 @RequestMapping(params = "methodToCall=removeMissingPieceFromItem")
1633 public ModelAndView removeMissingPieceFromItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1634 HttpServletRequest request, HttpServletResponse response) {
1635 LOG.debug("Inside the claims return method");
1636 if (loginUserList == null) {
1637 loginUserList = new ArrayList<>();
1638 }
1639 StringBuffer buffer = new StringBuffer();
1640 OleLoanForm oleLoanForm = (OleLoanForm) form;
1641
1642
1643
1644
1645
1646
1647 oleLoanForm.setRemoveMissingPieceFlag(true);
1648 updateMissingPieceItem(form, result, request, response);
1649
1650 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1651 }
1652
1653 @RequestMapping(params = "methodToCall=removeDamagedFlagFromItem")
1654 public ModelAndView removeDamagedFlagFromItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1655 HttpServletRequest request, HttpServletResponse response) {
1656 LOG.debug("Inside the claims return method");
1657 if (loginUserList == null) {
1658 loginUserList = new ArrayList<>();
1659 }
1660 StringBuffer buffer = new StringBuffer();
1661 OleLoanForm oleLoanForm = (OleLoanForm) form;
1662
1663
1664
1665
1666
1667
1668 oleLoanForm.setDialogFlag(false);
1669 updateDamagedItem(form, result, request, response);
1670 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1671 }
1672
1673 @RequestMapping(params = "methodToCall=updateDamagedItem")
1674 public ModelAndView updateDamagedItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1675 HttpServletRequest request, HttpServletResponse response) {
1676 LOG.debug("Inside the claims return method");
1677 if (loginUserList == null) {
1678 loginUserList = new ArrayList<>();
1679 }
1680 StringBuffer buffer = new StringBuffer();
1681 OleLoanForm oleLoanForm = (OleLoanForm) form;
1682
1683
1684
1685
1686
1687
1688 if (oleLoanForm.getLoanList().size() > 0) {
1689 if (oleLoanForm.getLoanList().size() > 0) {
1690 for (OleLoanDocument oleLoanDocument : oleLoanForm.getLoanList()) {
1691 if (oleLoanDocument.isCheckNo()) {
1692 try {
1693 String itemXmlContent = getLoanProcessor().getItemXML(oleLoanDocument.getItemUuid());
1694 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
1695 if (oleLoanForm.isDialogFlag()) {
1696 oleLoanDocument.setItemDamagedNote(oleLoanForm.getDialogText());
1697 getLoanProcessor().updateItemDamagedHistory(oleItem,oleLoanDocument,oleLoanForm.getPatronId());
1698 } else {
1699 oleLoanDocument.setItemDamagedNote("");
1700 }
1701 oleItem.setItemDamagedStatus(oleLoanForm.isDialogFlag());
1702 oleItem.setDamagedItemNote(oleLoanForm.getDialogText());
1703 itemXmlContent = new ItemOlemlRecordProcessor().toXML(oleItem);
1704 if (LOG.isDebugEnabled()) {
1705 LOG.debug("itemXmlContent" + itemXmlContent);
1706 }
1707 org.kuali.ole.docstore.common.document.Item item = new ItemOleml();
1708 item.setContent(itemXmlContent);
1709 item.setCategory(OLEConstants.WORK_CATEGORY);
1710 item.setType(DocType.ITEM.getCode());
1711 item.setFormat(OLEConstants.OLEML_FORMAT);
1712 item.setId(oleLoanDocument.getItemUuid());
1713 getDocstoreClientLocator().getDocstoreClient().updateItem(item);
1714 if (oleLoanForm.isDialogFlag()) {
1715 oleLoanDocument.setItemDamagedNote(oleLoanForm.getDialogText());
1716 } else {
1717 oleLoanDocument.setItemDamagedNote("");
1718 }
1719 oleLoanDocument.setCheckNo(false);
1720 } catch (Exception e) {
1721 throw new RuntimeException();
1722 }
1723 }
1724 }
1725 }
1726 }
1727 if (oleLoanForm.getExistingLoanList().size() > 0) {
1728 for (OleLoanDocument oleLoanDocument : oleLoanForm.getExistingLoanList()) {
1729 if (oleLoanDocument.isCheckNo()) {
1730 try {
1731 String itemXmlContent = getLoanProcessor().getItemXML(oleLoanDocument.getItemUuid());
1732 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
1733 if (oleLoanForm.isDialogFlag()) {
1734 oleLoanDocument.setItemDamagedNote(oleLoanForm.getDialogText());
1735 getLoanProcessor().updateItemDamagedHistory(oleItem,oleLoanDocument,oleLoanForm.getPatronId());
1736 } else {
1737 oleLoanDocument.setItemDamagedNote("");
1738 }
1739 oleItem.setItemDamagedStatus(oleLoanForm.isDialogFlag());
1740 oleItem.setDamagedItemNote(oleLoanForm.getDialogText());
1741 itemXmlContent = new ItemOlemlRecordProcessor().toXML(oleItem);
1742 if (LOG.isDebugEnabled()) {
1743 LOG.debug("itemXmlContent" + itemXmlContent);
1744 }
1745 org.kuali.ole.docstore.common.document.Item item = new ItemOleml();
1746 item.setContent(itemXmlContent);
1747 item.setCategory(OLEConstants.WORK_CATEGORY);
1748 item.setType(DocType.ITEM.getCode());
1749 item.setFormat(OLEConstants.OLEML_FORMAT);
1750 item.setId(oleLoanDocument.getItemUuid());
1751 getDocstoreClientLocator().getDocstoreClient().updateItem(item);
1752 if (oleLoanForm.isDialogFlag()) {
1753 oleLoanDocument.setItemDamagedNote(oleLoanForm.getDialogText());
1754 } else {
1755 oleLoanDocument.setItemDamagedNote("");
1756 }
1757 oleLoanDocument.setCheckNo(false);
1758 } catch (Exception e) {
1759 throw new RuntimeException();
1760 }
1761 }
1762 }
1763
1764 }
1765 oleLoanForm.setRemoveItemDamagedButton(false);
1766 oleLoanForm.setMissingPieceDialog(false);
1767 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1768 }
1769
1770
1771 @RequestMapping(params = "methodToCall=showDamagedDialogBox")
1772 public ModelAndView showDamagedDialogBox(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1773 HttpServletRequest request, HttpServletResponse response) {
1774
1775 LOG.debug("Inside the apply claims return method");
1776 OleLoanForm oleLoanForm = (OleLoanForm) form;
1777
1778
1779
1780
1781
1782
1783 int count = 0;
1784 oleLoanForm.setDialogFlag(false);
1785 oleLoanForm.setDialogItemNoOfPieces(null);
1786 oleLoanForm.setDialogMissingPieceCount(null);
1787 oleLoanForm.setDialogText(null);
1788 oleLoanForm.setDialogItemNoOfPiecesReadOnly(false);
1789 oleLoanForm.setDialogMissingPieceCountReadOnly(false);
1790 oleLoanForm.setDialogErrorMessage(null);
1791 oleLoanForm.setInformation("");
1792 oleLoanForm.setSuccessInfo("");
1793 oleLoanForm.setRemoveItemDamagedButton(false);
1794 OleLoanDocument loanDocument = null;
1795 int damagedItemCount=0;
1796 if (oleLoanForm.getLoanList().size() > 0) {
1797 for (OleLoanDocument oleLoanDocument : oleLoanForm.getLoanList()) {
1798 if (oleLoanDocument.isCheckNo()) {
1799 loanDocument = oleLoanDocument;
1800 count++;
1801 if(StringUtils.isNotEmpty(loanDocument.getItemDamagedNote())){
1802 damagedItemCount++;
1803 }
1804 }
1805 }
1806 }
1807 if (oleLoanForm.getExistingLoanList().size() > 0) {
1808 for (OleLoanDocument oleLoanDocument : oleLoanForm.getExistingLoanList()) {
1809 if (oleLoanDocument.isCheckNo()) {
1810 loanDocument = oleLoanDocument;
1811 count++;
1812 if(StringUtils.isNotEmpty(loanDocument.getItemDamagedNote())){
1813 damagedItemCount++;
1814 }
1815 }
1816 }
1817 }
1818 if (count > 0) {
1819 oleLoanForm.setDamagedItemDialog(true);
1820 oleLoanForm.setDialogFlag(true);
1821 if(damagedItemCount>0){
1822 oleLoanForm.setRemoveItemDamagedButton(true);
1823 }
1824 if (count == 1 && loanDocument != null && loanDocument.getItemUuid() != null) {
1825 try {
1826 String itemXmlContent = getLoanProcessor().getItemXML(loanDocument.getItemUuid());
1827 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
1828 if (oleItem != null) {
1829 oleLoanForm.setDialogText(oleItem.getDamagedItemNote());
1830 }
1831 } catch (Exception e) {
1832 if (LOG.isDebugEnabled()) {
1833 LOG.error("while retrieving item damaged status info error" + e);
1834 }
1835 }
1836 }
1837 } else {
1838 oleLoanForm.setDamagedItemDialog(false);
1839 oleLoanForm.setInformation(OLEConstants.CLAIMS_ITM_ERR_INFO);
1840 }
1841 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1842 }
1843
1844 @RequestMapping(params = "methodToCall=deactivateAllDialogs")
1845 public ModelAndView deactivateAllDialogs(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1846 HttpServletRequest request, HttpServletResponse response) {
1847
1848 LOG.debug("Inside the apply claims return method");
1849 OleLoanForm oleLoanForm = (OleLoanForm) form;
1850
1851
1852
1853
1854
1855
1856
1857 oleLoanForm.setDialogFlag(false);
1858 oleLoanForm.setDialogItemNoOfPieces(null);
1859 oleLoanForm.setDialogMissingPieceCount(null);
1860 oleLoanForm.setDialogText(null);
1861 oleLoanForm.setDialogItemNoOfPiecesReadOnly(false);
1862 oleLoanForm.setDialogMissingPieceCountReadOnly(false);
1863 oleLoanForm.setDialogErrorMessage(null);
1864 oleLoanForm.setMissingPieceDialog(false);
1865 oleLoanForm.setDamagedItemDialog(false);
1866 oleLoanForm.setRemoveItemDamagedButton(false);
1867 for(OleLoanDocument loanDocument:oleLoanForm.getLoanList()){
1868 loanDocument.setCheckNo(false);
1869 }
1870 for (OleLoanDocument loanDocument : oleLoanForm.getExistingLoanList()) {
1871 loanDocument.setCheckNo(false);
1872 }
1873 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1874
1875 }
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886 @RequestMapping(params = "methodToCall=changeCirculationDeskLocation")
1887 public ModelAndView changeCirculationDeskLocation(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1888 HttpServletRequest request, HttpServletResponse response) {
1889 LOG.debug("Inside the change circulation desk location method");
1890 OleLoanForm oleLoanForm = (OleLoanForm) form;
1891 oleLoanForm.setConfirmMessage(OLEConstants.CHANGE_LOC_MESS);
1892 oleLoanForm.setChangeLocationFlag(true);
1893
1894
1895
1896
1897
1898
1899
1900
1901 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1902 }
1903
1904 @RequestMapping(params = "methodToCall=changeReturnCirculationDeskLocation")
1905 public ModelAndView changeReturnCirculationDeskLocation(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1906 HttpServletRequest request, HttpServletResponse response) {
1907 LOG.debug("Inside the change circulation desk location method");
1908 OleLoanForm oleLoanForm = (OleLoanForm) form;
1909 oleLoanForm.setConfirmMessage(OLEConstants.CHANGE_LOC_MESS);
1910 oleLoanForm.setChangeLocationFlag(true);
1911 return getUIFModelAndView(oleLoanForm, "ReturnItemViewPage");
1912 }
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923 @RequestMapping(params = "methodToCall=resetLocation")
1924 public ModelAndView resetLocation(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1925 HttpServletRequest request, HttpServletResponse response) {
1926 LOG.debug("Inside the reset location method");
1927 OleLoanForm oleLoanForm = (OleLoanForm) form;
1928 oleLoanForm.setCirculationDesk(oleLoanForm.getPreviousCirculationDesk());
1929 oleLoanForm.setChangeLocationFlag(false);
1930 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
1931 }
1932
1933 @RequestMapping(params = "methodToCall=resetReturnLocation")
1934 public ModelAndView resetReturnLocation(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1935 HttpServletRequest request, HttpServletResponse response) {
1936 LOG.debug("Inside the reset location method");
1937 OleLoanForm oleLoanForm = (OleLoanForm) form;
1938 oleLoanForm.setCirculationDesk(oleLoanForm.getPreviousCirculationDesk());
1939 oleLoanForm.setChangeLocationFlag(false);
1940 return getUIFModelAndView(oleLoanForm, "ReturnItemViewPage");
1941 }
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952 @RequestMapping(params = "methodToCall=saveAndClear")
1953 public ModelAndView clearPatron(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1954 HttpServletRequest request, HttpServletResponse response) {
1955 LOG.debug("Inside the clear patron method");
1956 fastAddBarcode = "";
1957 OleLoanForm oleLoanForm = (OleLoanForm) form;
1958 String currentLocation = oleLoanForm.getCirculationDesk();
1959 oleLoanForm.setPreviousCirculationDesk(currentLocation);
1960 oleLoanForm.setNewPrincipalId("");
1961 oleLoanForm.setAddressVerified(false);
1962 oleLoanForm.setOverrideRenewItemFlag(false);
1963 oleLoanForm.setCurrentDate(null);
1964 oleLoanForm.setInformation("");
1965 oleLoanForm.setSuccessInfo("");
1966 oleLoanForm.setReturnInformation("");
1967 oleLoanForm.setBorrowerType(null);
1968 oleLoanForm.setPatronBarcode(null);
1969 oleLoanForm.setPatronName(null);
1970 oleLoanForm.setProxyPatronId(null);
1971 oleLoanForm.setRealPatronBarcode(null);
1972 oleLoanForm.setPatronId(null);
1973 oleLoanForm.setRealPatronList(null);
1974 oleLoanForm.setLoanList(null);
1975 oleLoanForm.setDueDateMap(null);
1976 oleLoanForm.setExistingLoanList(null);
1977 oleLoanForm.setDueDateMap(null);
1978 oleLoanForm.setMessage(null);
1979 oleLoanForm.setSuccess(true);
1980 oleLoanForm.setChangeLocationFlag(false);
1981 oleLoanForm.setBlockLoan(false);
1982 oleLoanForm.setItemFocus(false);
1983 oleLoanForm.setSelfCheckOut(false);
1984 oleLoanForm.setCurrentPatronList(null);
1985 oleLoanForm.setPatronFocus(true);
1986 oleLoanForm.setBackGroundCheckIn(false);
1987 oleLoanForm.setRemoveMissingPieceFlag(false);
1988 oleLoanForm.setRecordDamagedItemNote(false);
1989 oleLoanForm.setRecordMissingPieceNote(false);
1990 oleLoanForm.setRecordCheckoutMissingPieceNote(false);
1991 oleLoanForm.setDisplayRecordNotePopup(false);
1992 oleLoanForm.setCheckoutRecordFlag(false);
1993 oleLoanForm.setSkipMissingPieceRecordPopup(false);
1994 oleLoanForm.setSkipDamagedRecordPopup(false);
1995 oleLoanForm.setDisplayMissingPieceNotePopup(false);
1996 oleLoanForm.setCheckoutMissingPieceRecordFlag(false);
1997 oleLoanForm.setDisplayDamagedRecordNotePopup(false);
1998 oleLoanForm.setCheckoutDamagedRecordFlag(false);
1999 oleLoanForm.setPatronbill(false);
2000 oleLoanForm.setPopDateTimeInfo("");
2001 GlobalVariables.getUserSession().clearBackdoorUser();
2002 GlobalVariables.getUserSession().setBackdoorUser(oleLoanForm.getOldPrincipalId());
2003
2004 oleLoanForm.setNewPrincipalId(null);
2005
2006 if (!oleLoanForm.isClearUI()) {
2007 String principalId = GlobalVariables.getUserSession().getPrincipalId();
2008 OleCirculationDeskDetail oleCirculationDeskDetail = getLoanProcessor().getDefaultCirculationDesk(principalId);
2009 if (oleCirculationDeskDetail != null) {
2010 oleLoanForm.setCirculationDesk(oleCirculationDeskDetail.getCirculationDeskId());
2011 oleLoanForm.setPreviousCirculationDesk(oleLoanForm.getCirculationDesk());
2012
2013 }
2014 }
2015 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2016
2017 }
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028 @RequestMapping(params = "methodToCall=clearPatron")
2029 public ModelAndView clearPatronScreen(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2030 HttpServletRequest request, HttpServletResponse response) {
2031 LOG.debug("Inside the clear patron Screen method");
2032 fastAddBarcode = "";
2033 OleLoanForm oleLoanForm = (OleLoanForm) form;
2034 String currentLocation = oleLoanForm.getCirculationDesk();
2035 oleLoanForm.setPreviousCirculationDesk(currentLocation);
2036 if (oleLoanForm.getLoanList() != null && oleLoanForm.getLoanList().size() > 0 && !oleLoanForm.isChangeLocationFlag() && getLoanProcessor().getParameter(OLEConstants.PRINT_DUE_DATE_PER_TRANSACTION).equalsIgnoreCase("No")) {
2037 oleLoanForm.setDueDateSlip(true);
2038 printDueDateSlipList = oleLoanForm.getLoanList();
2039 }
2040
2041 oleLoanForm.setAddressVerified(false);
2042 oleLoanForm.setOverrideRenewItemFlag(false);
2043 oleLoanForm.setInformation("");
2044 oleLoanForm.setSuccessInfo("");
2045 oleLoanForm.setReturnInformation("");
2046 oleLoanForm.setBorrowerType(null);
2047 oleLoanForm.setPatronBarcode(null);
2048 oleLoanForm.setPatronName(null);
2049 oleLoanForm.setProxyPatronId(null);
2050 oleLoanForm.setRealPatronBarcode(null);
2051 oleLoanForm.setPatronId(null);
2052 oleLoanForm.setRealPatronList(null);
2053 oleLoanForm.setLoanList(null);
2054 oleLoanForm.setDueDateMap(null);
2055 oleLoanForm.setExistingLoanList(null);
2056 oleLoanForm.setDueDateMap(null);
2057 oleLoanForm.setMessage(null);
2058 oleLoanForm.setSuccess(true);
2059 oleLoanForm.setChangeLocationFlag(false);
2060
2061 oleLoanForm.setBlockLoan(false);
2062 oleLoanForm.setItemFocus(false);
2063 oleLoanForm.setSelfCheckOut(false);
2064 oleLoanForm.setCurrentPatronList(null);
2065 oleLoanForm.setPatronFocus(true);
2066 oleLoanForm.setBackGroundCheckIn(false);
2067 oleLoanForm.setRemoveMissingPieceFlag(false);
2068 oleLoanForm.setRecordDamagedItemNote(false);
2069 oleLoanForm.setRecordMissingPieceNote(false);
2070 oleLoanForm.setRecordCheckoutMissingPieceNote(false);
2071 oleLoanForm.setDisplayRecordNotePopup(false);
2072 oleLoanForm.setCheckoutRecordFlag(false);
2073 oleLoanForm.setSkipMissingPieceRecordPopup(false);
2074 oleLoanForm.setSkipDamagedRecordPopup(false);
2075 oleLoanForm.setDisplayMissingPieceNotePopup(false);
2076 oleLoanForm.setCheckoutMissingPieceRecordFlag(false);
2077 oleLoanForm.setDisplayDamagedRecordNotePopup(false);
2078 oleLoanForm.setCheckoutDamagedRecordFlag(false);
2079 oleLoanForm.setPatronbill(false);
2080 oleLoanForm.setSuccessMessage(null);
2081 oleLoanForm.setPopDateTimeInfo("");
2082
2083
2084
2085
2086 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2087
2088 }
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099 @RequestMapping(params = "methodToCall=overRide")
2100 public ModelAndView overRide(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2101 HttpServletRequest request, HttpServletResponse response) {
2102 LOG.debug("Inside the override method");
2103 OleLoanForm oleLoanForm = (OleLoanForm) form;
2104
2105
2106
2107
2108
2109
2110 oleLoanForm.setInformation("");
2111 oleLoanForm.setSuccessInfo("");
2112 oleLoanForm.setReturnInformation("");
2113 oleLoanForm.setOverideMethodCall(oleLoanForm.getMethodToCall());
2114 oleLoanForm.setOverrideFlag(true);
2115 String principalId = GlobalVariables.getUserSession().getPrincipalId();
2116 boolean newPrincipalFlag = false;
2117 if (StringUtils.isNotBlank(oleLoanForm.getNewPrincipalName())) {
2118 newPrincipalFlag = true;
2119 }
2120 if (newPrincipalFlag) {
2121 Person people = SpringContext.getBean(PersonService.class).getPersonByPrincipalName(oleLoanForm.getNewPrincipalName());
2122 if(people!=null){
2123 principalId=people.getPrincipalId();
2124 oleLoanForm.setNewPrincipalId(principalId);
2125 }
2126 if (people == null) {
2127 oleLoanForm.setOverrideLoginMessage(oleLoanForm.getNewPrincipalName() + " is invalid user Name.Please enter your user Name.");
2128 oleLoanForm.setOverrideErrorMessage(null);
2129 oleLoanForm.setNewPrincipalId(null);
2130 oleLoanForm.setNewPrincipalName(null);
2131 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2132 }
2133 } else {
2134 if(StringUtils.isNotBlank(principalId)){
2135 Person people = SpringContext.getBean(PersonService.class).getPerson(principalId);
2136 if(people == null) {
2137 oleLoanForm.setOverrideLoginMessage(people.getPrincipalName() + " is invalid user Name.Please enter your user Name.");
2138 oleLoanForm.setOverrideErrorMessage(null);
2139 oleLoanForm.setNewPrincipalId(null);
2140 oleLoanForm.setNewPrincipalName(null);
2141 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2142 }
2143 }
2144 }
2145 Boolean overRideFlag = getLoanProcessor().checkOverRidePermission(principalId, oleLoanForm);
2146 if (overRideFlag) {
2147 if ((!"".equals(oleLoanForm.getNewPrincipalId()) && oleLoanForm.getNewPrincipalId() != null)) {
2148
2149
2150
2151 oleLoanForm.getDummyLoan().setLoanApproverId(oleLoanForm.getNewPrincipalId());
2152
2153 }
2154 if (!newPrincipalFlag) {
2155
2156
2157
2158 oleLoanForm.getDummyLoan().setLoanApproverId(principalId);
2159
2160 }
2161 oleLoanForm.setNewPrincipalId("");
2162 oleLoanForm.setOverrideFlag(false);
2163 oleLoanForm.setOverideMethodCall("");
2164 return null;
2165 }
2166 oleLoanForm.setNewPrincipalId(null);
2167
2168 if (!"".equals(oleLoanForm.getNewPrincipalId())) {
2169 oleLoanForm.setOverrideLoginMessage(principalId + " " + OLEConstants.OVERRIDE_LOGIN_ERR_INFO + OLEConstants.BREAK + oleLoanForm.getOverrideErrorMessage());
2170 oleLoanForm.setOverrideErrorMessage(null);
2171 }
2172
2173 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2174 }
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185 @RequestMapping(params = "methodToCall=loanLogin")
2186 public ModelAndView loanLogin(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2187 HttpServletRequest request, HttpServletResponse response) {
2188 LOG.debug("Inside the loanLogin method");
2189 OleLoanForm oleLoanForm = (OleLoanForm) form;
2190 if (loginUserList == null) {
2191 loginUserList = new ArrayList<>();
2192 }
2193 oleLoanForm.setValidLogin(getLoanProcessor().isAuthorized(oleLoanForm.getLoanLoginName()));
2194 String patronNameURL = getLoanProcessor().patronNameURL(oleLoanForm.getLoanLoginName(), oleLoanForm.getPatronId());
2195 oleLoanForm.setPatronNameURL(patronNameURL);
2196 if (oleLoanForm.getLoanLoginName() != null && !oleLoanForm.getLoanLoginName().trim().isEmpty() && oleLoanForm.isValidLogin()) {
2197 oleLoanForm.setLoanLoginUserInfo("");
2198 oleLoanForm.setLoanLoginMessage(false);
2199 String loginUser = GlobalVariables.getUserSession().getPrincipalName();
2200 String circulationDesk = oleLoanForm.getCirculationDesk();
2201 GlobalVariables.getUserSession().setBackdoorUser(oleLoanForm.getLoanLoginName());
2202 start(form, result, request, response);
2203 if (getLoanProcessor().getCircDeskId() != null) {
2204 oleLoanForm.setCirculationDesk(getLoanProcessor().getCircDeskId());
2205 }
2206 StringBuffer users = new StringBuffer();
2207 users.append(loginUser + "," + circulationDesk);
2208 loginUserList.add(users.toString());
2209 }
2210 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2211 }
2212
2213 @RequestMapping(params = "methodToCall=loanLogout")
2214 public ModelAndView loanLogout(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2215 HttpServletRequest request, HttpServletResponse response) {
2216 LOG.debug("Inside the loanLogout method");
2217 int count;
2218 OleLoanForm oleLoanForm = (OleLoanForm) form;
2219 if (oleLoanForm.getOldPrincipalId() != null && !oleLoanForm.getOldPrincipalId().trim().isEmpty()) {
2220 oleLoanForm.setLoanLoginUserInfo("");
2221 oleLoanForm.setLoanLoginMessage(false);
2222 if (loginUserList == null) {
2223 GlobalVariables.getUserSession().setBackdoorUser(null);
2224 return cancel(form, result, request, response);
2225 }
2226 if (loginUserList.size() > 0) {
2227 count = loginUserList.size() - 1;
2228 String usersList = loginUserList.get(count);
2229 loginUserList.remove(count);
2230 String user = GlobalVariables.getUserSession().getPrincipalName();
2231 String circulationId = oleLoanForm.getCirculationDesk();
2232 StringBuffer currentUser = new StringBuffer();
2233 currentUser.append(user + "," + circulationId);
2234 if (usersList.equalsIgnoreCase(currentUser.toString())) {
2235 if (loginUserList.size() > 0) {
2236 int size = loginUserList.size() - 1;
2237 usersList = loginUserList.get(size);
2238 loginUserList.remove(size);
2239 } else {
2240 GlobalVariables.getUserSession().setBackdoorUser(null);
2241 return cancel(form, result, request, response);
2242 }
2243 }
2244 if (usersList == "" || usersList.isEmpty()) {
2245 GlobalVariables.getUserSession().setBackdoorUser(null);
2246 return cancel(form, result, request, response);
2247 }
2248 String[] usersAndCirculationId = usersList.split(",");
2249 oleLoanForm.setLoginUser(usersAndCirculationId[0]);
2250 String patronNameURL = getLoanProcessor().patronNameURL(oleLoanForm.getLoginUser(), oleLoanForm.getPatronId());
2251 oleLoanForm.setPatronNameURL(patronNameURL);
2252 if (oleLoanForm.getLoginUser().equalsIgnoreCase(OLEConstants.ADMIN_USER)) {
2253 GlobalVariables.getUserSession().setBackdoorUser(null);
2254 return cancel(form, result, request, response);
2255 }
2256 GlobalVariables.getUserSession().setBackdoorUser(oleLoanForm.getLoginUser());
2257 start(form, result, request, response);
2258 oleLoanForm.setCirculationDesk(usersAndCirculationId[1]);
2259 } else {
2260 GlobalVariables.getUserSession().setBackdoorUser(null);
2261 return cancel(form, result, request, response);
2262 }
2263 }
2264 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2265 }
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276 @RequestMapping(params = "methodToCall=noOverRide")
2277 public ModelAndView noOverRide(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2278 HttpServletRequest request, HttpServletResponse response) {
2279 LOG.debug("Inside the no override method");
2280 OleLoanForm oleLoanForm = (OleLoanForm) form;
2281
2282
2283
2284
2285
2286
2287 oleLoanForm.setOverrideFlag(false);
2288 oleLoanForm.setOverideMethodCall("");
2289 oleLoanForm.setOverrideLoginMessage("");
2290 oleLoanForm.setInformation("");
2291 oleLoanForm.setSuccessInfo("");
2292 oleLoanForm.setReturnInformation("");
2293 GlobalVariables.getUserSession().setBackdoorUser(oleLoanForm.getLoanLoginName());
2294 oleLoanForm.setNewPrincipalId(oleLoanForm.getLoanLoginName());
2295
2296 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2297 }
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308 @RequestMapping(params = "methodToCall=renewalItem")
2309 public ModelAndView renewalItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2310 HttpServletRequest request, HttpServletResponse response) {
2311 LOG.debug("Inside the renewal item method");
2312 OleLoanForm oleLoanForm = (OleLoanForm) form;
2313 int renewCurrentCount = 0;
2314 oleLoanForm.setInformation("");
2315 oleLoanForm.setSuccessInfo("");
2316 oleLoanForm.setMessage("");
2317 oleLoanForm.setPopDateTimeInfo("");
2318 oleLoanForm.setOverrideRenewItemFlag(false);
2319 oleLoanForm.setRenewalFlag(false);
2320 List<OleLoanDocument> existingItemList = new ArrayList<OleLoanDocument>();
2321 existingItemList.addAll(oleLoanForm.getExistingLoanList());
2322 if (oleLoanForm.getLoanList() != null && !oleLoanForm.getLoanList().isEmpty())
2323 existingItemList.addAll(oleLoanForm.getLoanList());
2324 OleLoanDocument oleLoanDocument = null;
2325 for (int i = 0; i < existingItemList.size(); i++) {
2326 OleLoanDocument loanDocument = existingItemList.get(i);
2327 if (loanDocument.getItemId()!=null && loanDocument.getItemId().equals(oleLoanForm.getItem())) {
2328 if(loanDocument.getLoanId()==null){
2329 oleLoanDocument = getLoanProcessor().getLoanDocumentsUsingItemIdAndPatronId(loanDocument.getItemUuid(),oleLoanForm.getPatronId());
2330 oleLoanDocument.setClaimsReturnNote(loanDocument.getClaimsReturnNote());
2331 oleLoanDocument.setClaimsReturnedIndicator(loanDocument.isClaimsReturnedIndicator());
2332 oleLoanDocument.setClaimsReturnedDate(loanDocument.getClaimsReturnedDate());
2333 oleLoanDocument.setBibUuid(loanDocument.getBibUuid());
2334 }else{
2335 oleLoanDocument = loanDocument;
2336 }
2337 oleLoanDocument.setOleItem(loanDocument.getOleItem());
2338 oleLoanDocument.setRenewalItemFlag(true);
2339 oleLoanDocument.setErrorMessage(null);
2340 renewCurrentCount = i;
2341 break;
2342 }
2343 }
2344 if(oleLoanDocument==null){
2345 OleLoanDocument loanDocument = oleLoanForm.getRenewalLoan();
2346 if (loanDocument.getItemId()!=null && loanDocument.getItemId().equals(oleLoanForm.getItem())) {
2347 if(loanDocument.getLoanId()==null){
2348 oleLoanDocument = getLoanProcessor().getLoanDocumentsUsingItemIdAndPatronId(loanDocument.getItemUuid(),oleLoanForm.getPatronId());
2349 oleLoanDocument.setClaimsReturnNote(loanDocument.getClaimsReturnNote());
2350 oleLoanDocument.setClaimsReturnedIndicator(loanDocument.isClaimsReturnedIndicator());
2351 oleLoanDocument.setClaimsReturnedDate(loanDocument.getClaimsReturnedDate());
2352 oleLoanDocument.setBibUuid(loanDocument.getBibUuid());
2353 }else{
2354 oleLoanDocument = loanDocument;
2355 }
2356 oleLoanDocument.setOleItem(loanDocument.getOleItem());
2357 oleLoanDocument.setRenewalItemFlag(true);
2358 oleLoanDocument.setErrorMessage(null);
2359 }
2360 }
2361 if(oleLoanDocument.getRenewalLoanDueDate() == null && oleLoanForm.getDueDateMap() != null){
2362 Timestamp timestamp;
2363 Pattern pattern;
2364 Matcher matcher;
2365 SimpleDateFormat fmt = new SimpleDateFormat(OLEConstants.OlePatron.PATRON_MAINTENANCE_DATE_FORMAT);
2366 boolean timeFlag = false;
2367 if (oleLoanForm.getPopDateTime() != null && !oleLoanForm.getPopDateTime().isEmpty()) {
2368 String[] str = oleLoanForm.getPopDateTime().split(":");
2369 pattern = Pattern.compile(OLEConstants.TIME_24_HR_PATTERN);
2370 matcher = pattern.matcher(oleLoanForm.getPopDateTime());
2371 timeFlag = matcher.matches();
2372 if (timeFlag) {
2373 if (str != null && str.length <= 2) {
2374 oleLoanForm.setPopDateTime(oleLoanForm.getPopDateTime() + OLEConstants.CHECK_IN_TIME_MS);
2375 }
2376 timestamp = Timestamp.valueOf(new SimpleDateFormat(OLEConstants.CHECK_IN_DATE_TIME_FORMAT).format(oleLoanForm.getDueDateMap()).concat(" ").concat(oleLoanForm.getPopDateTime()));
2377 } else {
2378 oleLoanForm.setPopDateTimeInfo(OLEConstants.DUE_DATE_TIME_FORMAT_MESSAGE);
2379
2380 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2381 }
2382 } else if (fmt.format(oleLoanForm.getDueDateMap()).compareTo(fmt.format(new Date())) == 0) {
2383 timestamp = new Timestamp(new Date().getTime());
2384 } else {
2385 timestamp = Timestamp.valueOf(new SimpleDateFormat(OLEConstants.CHECK_IN_DATE_TIME_FORMAT).format(oleLoanForm.getDueDateMap()).concat(" ").concat(new SimpleDateFormat("HH:mm:ss").format(new Date())));
2386 }
2387 oleLoanDocument.setManualRenewalDueDate(timestamp);
2388 if(oleLoanDocument.getLoanDueDate() != null && oleLoanDocument.getLoanDueDate().equals(oleLoanDocument.getManualRenewalDueDate())){
2389 oleLoanDocument.setRenewNotFlag(true);
2390 }else{
2391 oleLoanDocument.setRenewNotFlag(false);
2392 }
2393
2394 oleLoanForm.setNonCirculatingFlag(false);
2395 }else{
2396 oleLoanDocument.setManualRenewalDueDate(null);
2397 }
2398 if(oleLoanDocument.getLoanDueDate() == null && oleLoanDocument.isRenewalItemFlag()){
2399 oleLoanForm.setInformation("");
2400 oleLoanForm.setReturnInformation("");
2401 oleLoanForm.setRenewalFlag(false);
2402 oleLoanForm.setSuccess(true);
2403 oleLoanForm.setMessage("");
2404 oleLoanForm.setOverrideRenewal(false);
2405 oleLoanForm.setRenewDueDateFlag(false);
2406 oleLoanForm.setOverrideRenewItemFlag(false);
2407 oleLoanForm.setNonCirculatingFlag(false);
2408 oleLoanForm.setRenewPermission(oleLoanDocument.isRenewPermission());
2409 oleLoanForm.setSuccessInfo(OLEConstants.RENEWAL_INDEFINITE_INFO);
2410 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
2411 }
2412 if (!oleLoanForm.isOverrideRenewal()) {
2413
2414
2415 try {
2416 oleLoanDocument.setPatronId(oleLoanForm.getPatronId());
2417 oleLoanDocument.setBorrowerTypeId(oleLoanForm.getBorrowerTypeId());
2418 oleLoanDocument.setBorrowerTypeName(oleLoanForm.getBorrowerType());
2419 oleLoanDocument.setBorrowerTypeCode(oleLoanForm.getBorrowerCode());
2420 oleLoanDocument.setCirculationLocationId(oleLoanForm.getCirculationDesk());
2421 oleLoanDocument = getLoanProcessor().addLoan(oleLoanDocument.getPatronBarcode(), oleLoanDocument.getItemId(), oleLoanDocument, null);
2422 if(oleLoanDocument.isNonCirculatingItem()){
2423 oleLoanForm.setNonCirculatingFlag(oleLoanDocument.isNonCirculatingItem());
2424 }
2425 if(oleLoanDocument.isIndefiniteCheckFlag()){
2426 oleLoanForm.setRenewalFlag(false);
2427 oleLoanForm.setOverrideRenewItemFlag(false);
2428 oleLoanForm.setSuccess(true);
2429 oleLoanForm.setMessage("");
2430 oleLoanForm.setRenewPermission(oleLoanDocument.isRenewPermission());
2431 oleLoanForm.setSuccessInfo(OLEConstants.RENEWAL_INDEFINITE_INFO);
2432 }
2433 if (oleLoanDocument.getErrorMessage() == null && !oleLoanDocument.isRenewNotFlag()) {
2434 oleLoanForm.setRenewalFlag(false);
2435 oleLoanForm.setOverrideRenewItemFlag(false);
2436 oleLoanForm.setSuccess(true);
2437 oleLoanForm.setMessage("");
2438
2439 oleLoanForm.setRenewPermission(oleLoanDocument.isRenewPermission());
2440 oleLoanForm.setSuccessInfo(OLEConstants.RENEWAL_ITM_SUCCESS_INFO);
2441 } else if(oleLoanDocument.isRenewNotFlag()){
2442 oleLoanForm.setRenewalFlag(false);
2443 oleLoanForm.setOverrideRenewItemFlag(false);
2444 oleLoanForm.setSuccess(true);
2445 oleLoanForm.setMessage("");
2446
2447 oleLoanForm.setRenewPermission(oleLoanDocument.isRenewPermission());
2448 oleLoanForm.setSuccessInfo(OLEConstants.RENEWAL_DUEDATE_SAME_INFO);
2449 } else {
2450 if (!oleLoanForm.isOverrideRenewal())
2451 oleLoanForm.setOverrideRenewal(true);
2452 oleLoanForm.setOverrideRenewItemFlag(true);
2453
2454
2455
2456 oleLoanForm.setRenewPermission(oleLoanDocument.isRenewPermission());
2457 String errMsg = oleLoanDocument.getErrorMessage().substring(0, oleLoanDocument.getErrorMessage().lastIndexOf("(OR)"));
2458 if(getLoanProcessor().checkPendingRequestforItem(oleLoanDocument.getItemUuid())){
2459 PermissionService service = KimApiServiceLocator.getPermissionService();
2460 boolean hasPermission = service.hasPermission(GlobalVariables.getUserSession().getPrincipalId(),OLEConstants.DLVR_NMSPC,OLEConstants.PENDING_RQST_RENEWAL_ITM_INFO);
2461 oleLoanForm.setOverrideRenewItemFlag(true);
2462 oleLoanForm.setRenewalFlag(true);
2463 if (hasPermission) {
2464 oleLoanForm.setRenewalFlag(false);
2465 oleLoanForm.setRenewPermission(true);
2466 }
2467 }
2468 oleLoanForm.setMessage(errMsg);
2469 }
2470 if(!oleLoanDocument.isIndefiniteCheckFlag()) {
2471 if (oleLoanForm.getExistingLoanList() != null && oleLoanForm.getExistingLoanList().size() > 0) {
2472
2473 for (int i = 0; i < oleLoanForm.getExistingLoanList().size(); i++) {
2474 if ((oleLoanForm.getExistingLoanList().get(i).getItemId()).equalsIgnoreCase(oleLoanDocument.getItemId())) {
2475 oleLoanForm.getExistingLoanList().remove(i);
2476 break;
2477 }
2478 }
2479 }
2480 if (oleLoanForm.getLoanList() != null && oleLoanForm.getLoanList().size() > 0) {
2481 for (int i = 0; i < oleLoanForm.getLoanList().size(); i++) {
2482 if ((oleLoanForm.getLoanList().get(i).getItemId()).equalsIgnoreCase(oleLoanDocument.getItemId())) {
2483 oleLoanForm.getLoanList().remove(i);
2484 break;
2485 }
2486 }
2487 }
2488 oleLoanForm.setOleLoanDocumentToLoanList(oleLoanDocument);
2489 }
2490
2491 } catch (Exception e) {
2492 oleLoanForm.setInformation(e.getMessage());
2493 LOG.error("Exception", e);
2494 }
2495 } else {
2496 try {
2497 ModelAndView overrideModelView = this.overRide(form, result, request, response);
2498
2499
2500 if (overrideModelView == null) {
2501 getLoanProcessor().overrideSaveLoanForRenewal(oleLoanDocument);
2502
2503 if (oleLoanForm.getExistingLoanList() != null && oleLoanForm.getExistingLoanList().size() > 0) {
2504
2505 for (int i = 0; i < oleLoanForm.getExistingLoanList().size(); i++) {
2506 if ((oleLoanForm.getExistingLoanList().get(i).getItemId()).equalsIgnoreCase(oleLoanDocument.getItemId())) {
2507 oleLoanForm.getExistingLoanList().remove(i);
2508 break;
2509 }
2510 }
2511 }
2512 if (oleLoanForm.getLoanList() != null && oleLoanForm.getLoanList().size() > 0) {
2513 for (int i = 0; i < oleLoanForm.getLoanList().size(); i++) {
2514 if ((oleLoanForm.getLoanList().get(i).getItemId()).equalsIgnoreCase(oleLoanDocument.getItemId())) {
2515 oleLoanForm.getLoanList().remove(i);
2516 break;
2517 }
2518 }
2519 }
2520 oleLoanForm.setOleLoanDocumentToLoanList(oleLoanDocument);
2521 oleLoanForm.setMessage("");
2522 oleLoanForm.setSuccess(true);
2523 oleLoanForm.setOverrideRenewal(false);
2524 oleLoanForm.setRenewalFlag(false);
2525 oleLoanForm.setOverrideRenewItemFlag(false);
2526 if(!oleLoanDocument.isNonCirculatingItem()){
2527 oleLoanForm.setNonCirculatingFlag(false);
2528 }
2529 if(oleLoanDocument.isRenewNotFlag()){
2530 oleLoanForm.setSuccessInfo(OLEConstants.RENEWAL_DUEDATE_SAME_INFO);
2531 }else {
2532 oleLoanForm.setSuccessInfo(OLEConstants.RENEWAL_ITM_SUCCESS_INFO);
2533 }
2534 }
2535
2536
2537 } catch (Exception e) {
2538 LOG.error("Exception", e);
2539 oleLoanForm.setInformation(e.getMessage());
2540 }
2541
2542 }
2543
2544 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
2545 }
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556 @RequestMapping(params = "methodToCall=doNotRenewalItem")
2557 public ModelAndView doNotRenewalItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2558 HttpServletRequest request, HttpServletResponse response) {
2559 LOG.debug("Inside the do not renewal item method");
2560 OleLoanForm oleLoanForm = (OleLoanForm) form;
2561 oleLoanForm.setInformation("");
2562 oleLoanForm.setSuccessInfo("");
2563 oleLoanForm.setReturnInformation("");
2564 oleLoanForm.setRenewalFlag(false);
2565 oleLoanForm.setSuccess(true);
2566 oleLoanForm.setMessage("");
2567 oleLoanForm.setOverrideRenewal(false);
2568 oleLoanForm.setRenewDueDateFlag(false);
2569 oleLoanForm.setOverrideRenewItemFlag(false);
2570 oleLoanForm.setNonCirculatingFlag(false);
2571 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
2572 }
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583 @RequestMapping(params = "methodToCall=renewalItems")
2584 public ModelAndView renewalItems(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2585 HttpServletRequest request, HttpServletResponse response) {
2586 LOG.debug("Inside the renewal items method");
2587 OleLoanForm oleLoanForm = (OleLoanForm) form;
2588 oleLoanForm.setInformation("");
2589 oleLoanForm.setSuccessInfo("");
2590 oleLoanForm.setMessage("");
2591 oleLoanForm.setOleFormKey(oleLoanForm.getFormKey());
2592 List<OleLoanDocument> existingItemList = new ArrayList<OleLoanDocument>(0);
2593 List<OleLoanDocument> renewalItemList = new ArrayList<OleLoanDocument>(0);
2594 existingItemList.addAll(oleLoanForm.getExistingLoanList());
2595 existingItemList.addAll(oleLoanForm.getLoanList());
2596 boolean renewSelectFlag = true;
2597 for (int i = 0; i < existingItemList.size(); i++) {
2598 OleLoanDocument loanDocument = existingItemList.get(i);
2599 if (loanDocument.isCheckNo()) {
2600 renewSelectFlag = false;
2601 break;
2602 }
2603 }
2604 if (!renewSelectFlag) {
2605 String errMsg = "";
2606 for (int i = 0; i < existingItemList.size(); i++) {
2607 OleLoanDocument loanDocument = existingItemList.get(i);
2608 loanDocument.setErrorMessage(null);
2609 if (loanDocument.isCheckNo()) {
2610 renewSelectFlag = false;
2611 loanDocument.setCheckNo(false);
2612 renewalItemList.add(loanDocument);
2613 oleLoanForm.setRenewDueDateList(renewalItemList);
2614 }
2615 }
2616 List<OleLoanDocument> renewObjects = (List<OleLoanDocument>) getLoanProcessor().getLoanObjectsFromDAO(renewalItemList,oleLoanForm.getPatronId());
2617 int i=0;
2618 renewalItemList = new ArrayList<OleLoanDocument>(0);
2619 for(Object loanObject : renewObjects){
2620 OleLoanDocument loanDocument = (OleLoanDocument) loanObject;
2621 try {
2622 loanDocument.setPatronId(oleLoanForm.getPatronId());
2623 loanDocument.setBorrowerTypeId(oleLoanForm.getBorrowerTypeId());
2624 loanDocument.setBorrowerTypeName(oleLoanForm.getBorrowerType());
2625 loanDocument.setBorrowerTypeCode(oleLoanForm.getBorrowerCode());
2626 loanDocument.setRenewalItemFlag(true);
2627 loanDocument.setCirculationLocationId(oleLoanForm.getCirculationDesk());
2628 loanDocument = getLoanProcessor().addLoan(loanDocument.getPatronBarcode(), loanDocument.getItemId(), loanDocument, null);
2629
2630
2631
2632
2633
2634
2635 oleLoanForm.setNonCirculatingFlag(loanDocument.isNonCirculatingItem());
2636 if(loanDocument.isIndefiniteCheckFlag()){
2637 errMsg = errMsg + (i + 1) + ". " + OLEConstants.RENEWAL_INDEFINITE_INFO + " (" + loanDocument.getItemId() + ")<br/>";
2638 oleLoanForm.setRenewDueDateFlag(false);
2639
2640
2641
2642 oleLoanForm.setNonCirculatingFlag(false);
2643 i++;
2644 } else if(loanDocument.isRenewNotFlag()){
2645 errMsg = errMsg + (i + 1) + ". " + OLEConstants.RENEWAL_DUEDATE_SAME_INFO + " (" + loanDocument.getItemId() + ")<br/>";
2646 oleLoanForm.setRenewDueDateFlag(false);
2647
2648
2649
2650
2651 oleLoanForm.setNonCirculatingFlag(false);
2652 } else if (loanDocument.getErrorMessage() == null) {
2653 errMsg = errMsg + (i + 1) + ". " + OLEConstants.RENEWAL_ITM_SUCCESS_INFO + " (" + loanDocument.getItemId() + ")<br/>";
2654 i++;
2655
2656 if (oleLoanForm.getExistingLoanList() != null && oleLoanForm.getExistingLoanList().size() > 0) {
2657
2658 for (int existingList = 0; existingList < oleLoanForm.getExistingLoanList().size(); existingList++) {
2659 if ((oleLoanForm.getExistingLoanList().get(existingList).getItemId()).equalsIgnoreCase(loanDocument.getItemId())) {
2660 oleLoanForm.getExistingLoanList().remove(existingList);
2661 break;
2662 }
2663 }
2664 }
2665 if (oleLoanForm.getLoanList()!=null && oleLoanForm.getLoanList().size()>0){
2666 for (int loanList = 0; loanList < oleLoanForm.getLoanList().size(); loanList++) {
2667 if ((oleLoanForm.getLoanList().get(loanList).getItemId()).equalsIgnoreCase(loanDocument.getItemId())) {
2668 oleLoanForm.getLoanList().remove(loanList);
2669 break;
2670 }
2671 }
2672 }
2673 oleLoanForm.setOleLoanDocumentToLoanList(loanDocument);
2674 } else {
2675 if (getLoanProcessor().checkPendingRequestforItem(loanDocument.getItemUuid())){
2676 PermissionService service = KimApiServiceLocator.getPermissionService();
2677 boolean hasPermission = service.hasPermission(GlobalVariables.getUserSession().getPrincipalId(),OLEConstants.DLVR_NMSPC,OLEConstants.PENDING_RQST_RENEWAL_ITM_INFO);
2678 if (!hasPermission){
2679 loanDocument.setRenewPermissionForRequestedItem(true);
2680 }
2681 }
2682 loanDocument.setErrorMessage(loanDocument.getErrorMessage().substring(0, loanDocument.getErrorMessage().lastIndexOf("(OR)")));
2683 oleLoanForm.setRenewDueDateFlag(true);
2684 renewalItemList.add(loanDocument);
2685 oleLoanForm.setRenewDueDateList(renewalItemList);
2686 }
2687 } catch (Exception e) {
2688 LOG.error("Exception", e);
2689 }
2690
2691 }
2692 if (errMsg!="")
2693 oleLoanForm.setSuccessInfo(errMsg);
2694 }
2695 if (renewSelectFlag)
2696 oleLoanForm.setInformation(OLEConstants.RENEWAL_ITM_ERR_INFO);
2697
2698 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
2699 }
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711 @RequestMapping(params = "methodToCall=overrideRenewItems")
2712 public ModelAndView overrideRenewItems(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2713 HttpServletRequest request, HttpServletResponse response) {
2714 LOG.debug("Inside the renewal items method");
2715 OleLoanForm oleLoanForm = (OleLoanForm) form;
2716 oleLoanForm.setOleFormKey(oleLoanForm.getFormKey());
2717 oleLoanForm.setMessage("");
2718 oleLoanForm.setPopDateTimeInfo("");
2719 String info = oleLoanForm.getSuccessInfo()!=null ? oleLoanForm.getSuccessInfo() : "";
2720 List<OleLoanDocument> renewItemList = new ArrayList<OleLoanDocument>(0);
2721 renewItemList.addAll(oleLoanForm.getRenewDueDateList());
2722 try {
2723 boolean renewSelectFlag = true;
2724 for (int i = 0; i < renewItemList.size(); i++) {
2725 OleLoanDocument loanDocument = renewItemList.get(i);
2726 if (loanDocument.isRenewCheckNo()) {
2727 renewSelectFlag = false;
2728 break;
2729 }
2730 }
2731 if (!renewSelectFlag) {
2732 ModelAndView overrideModelView = this.overRide(form, result, request, response);
2733 if (overrideModelView == null) {
2734
2735 for (int i = 0; i < renewItemList.size(); i++) {
2736 OleLoanDocument loanDocument = renewItemList.get(i);
2737
2738 loanDocument.setErrorMessage(null);
2739 Timestamp currentDate = new Timestamp(System.currentTimeMillis());
2740 if (loanDocument.isRenewCheckNo()) {
2741 loanDocument.setRenewCheckNo(false);
2742
2743 if(loanDocument.isNonCirculatingItem() && loanDocument.getRenewalDateMap() != null){
2744 Timestamp timestamp;
2745 Pattern pattern;
2746 Matcher matcher;
2747 SimpleDateFormat fmt = new SimpleDateFormat(OLEConstants.OlePatron.PATRON_MAINTENANCE_DATE_FORMAT);
2748 boolean timeFlag = false;
2749 oleLoanForm.setDueDateMap(loanDocument.getRenewalDateMap());
2750 if (loanDocument.getRenewalDateTime() != null && !loanDocument.getRenewalDateTime().isEmpty()) {
2751 String[] str = loanDocument.getRenewalDateTime().split(":");
2752 pattern = Pattern.compile(OLEConstants.TIME_24_HR_PATTERN);
2753 matcher = pattern.matcher(loanDocument.getRenewalDateTime());
2754 timeFlag = matcher.matches();
2755 if (timeFlag) {
2756 if (str != null && str.length <= 2) {
2757 loanDocument.setRenewalDateTime(loanDocument.getRenewalDateTime() + OLEConstants.CHECK_IN_TIME_MS);
2758 }
2759 timestamp = Timestamp.valueOf(new SimpleDateFormat(OLEConstants.CHECK_IN_DATE_TIME_FORMAT).format(loanDocument.getRenewalDateMap()).concat(" ").concat(loanDocument.getRenewalDateTime()));
2760 } else {
2761 oleLoanForm.setPopDateTimeInfo(OLEConstants.DUE_DATE_TIME_FORMAT_MESSAGE);
2762
2763 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2764 }
2765 } else if (fmt.format(oleLoanForm.getDueDateMap()).compareTo(fmt.format(new Date())) == 0) {
2766 timestamp = new Timestamp(new Date().getTime());
2767 } else {
2768 timestamp = Timestamp.valueOf(new SimpleDateFormat(OLEConstants.CHECK_IN_DATE_TIME_FORMAT).format(oleLoanForm.getDueDateMap()).concat(" ").concat(new SimpleDateFormat("HH:mm:ss").format(new Date())));
2769 }
2770 loanDocument.setManualRenewalDueDate(timestamp);
2771
2772 oleLoanForm.setNonCirculatingFlag(false);
2773 }else{
2774 loanDocument.setManualRenewalDueDate(null);
2775 }
2776 getLoanProcessor().overrideSaveLoanForRenewal(loanDocument);
2777 loanDocument.setErrorMessage(OLEConstants.RENEWAL_ITM_SUCCESS_INFO);
2778 for (int j = 0; j < oleLoanForm.getExistingLoanList().size(); j++) {
2779 if (loanDocument.getLoanId().equals(oleLoanForm.getExistingLoanList().get(j).getLoanId())) {
2780 oleLoanForm.getExistingLoanList().remove(j);
2781 oleLoanForm.setOleLoanDocumentToLoanList(loanDocument);
2782 }
2783 if(loanDocument.getItemId().equals(oleLoanForm.getExistingLoanList().get(j).getItemId())){
2784 OleLoanDocument existingLoan = oleLoanForm.getExistingLoanList().get(j);
2785 existingLoan.setLoanDueDate(loanDocument.getLoanDueDate());
2786 existingLoan.setNumberOfRenewals(loanDocument.getNumberOfRenewals());
2787 existingLoan.setCourtesyNoticeFlag(false);
2788 }
2789 }
2790 if (oleLoanForm.getLoanList()!=null && oleLoanForm.getLoanList().size()>0){
2791 for (int loanList = 0; loanList < oleLoanForm.getLoanList().size(); loanList++) {
2792 if ((oleLoanForm.getLoanList().get(loanList).getItemId()).equalsIgnoreCase(loanDocument.getItemId())) {
2793 OleLoanDocument existingLoan = oleLoanForm.getLoanList().get(loanList);
2794 existingLoan.setLoanDueDate(loanDocument.getLoanDueDate());
2795 existingLoan.setCourtesyNoticeFlag(false);
2796 existingLoan.setNumberOfRenewals(loanDocument.getNumberOfRenewals());
2797 break;
2798 }
2799 }
2800 }
2801 oleLoanForm.setMessage("");
2802 oleLoanForm.setSuccess(true);
2803 oleLoanForm.setOverrideRenewal(false);
2804 oleLoanForm.setNonCirculatingFlag(loanDocument.isNonCirculatingItem());
2805 if(loanDocument.isRenewNotFlag()){
2806 info = info + (i + 1) + ". " + OLEConstants.RENEWAL_DUEDATE_SAME_INFO + " (" + loanDocument.getItemId() + ")<br/>";
2807 }else {
2808 info = info + (i + 1) + ". " + OLEConstants.RENEWAL_ITM_SUCCESS_INFO + " (" + loanDocument.getItemId() + ")<br/>";
2809 }
2810
2811
2812
2813 }
2814
2815 oleLoanForm.setOverrideRenewItemFlag(false);
2816 }
2817
2818 }
2819 }
2820 if (info!=""){
2821 oleLoanForm.setSuccessInfo(info);
2822 }
2823 } catch (Exception e) {
2824 LOG.error("Exception ---> " + e, e);
2825 }
2826 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
2827 }
2828
2829
2830
2831
2832
2833
2834
2835 private LoanProcessor getLoanProcessor() {
2836 if (loanProcessor == null) {
2837 loanProcessor = SpringContext.getBean(LoanProcessor.class);
2838 }
2839 return loanProcessor;
2840 }
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851 @RequestMapping(params = "methodToCall=validateItem")
2852 public ModelAndView validateItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
2853 HttpServletRequest request, HttpServletResponse response) {
2854 if (LOG.isDebugEnabled()) {
2855 LOG.debug(" Inside Validate Item ");
2856 }
2857 long begin = System.currentTimeMillis();
2858 OleLoanForm oleLoanForm = (OleLoanForm) form;
2859 oleLoanForm.setRouteToLocation(null);
2860 oleLoanForm.setSuccessMessage(null);
2861
2862
2863
2864 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
2865 oleLoanForm.setAudioEnable(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
2866 oleLoanForm.setOleFormKey(oleLoanForm.getFormKey());
2867 oleLoanForm.setReturnInformation("");
2868 oleLoanForm.setErrorMessage("");
2869 OleLoanDocument oleLoanDocument = null;
2870 if (oleLoanForm.getCheckInItem() != null) {
2871 oleLoanDocument = getLoanProcessor().getOleLoanDocumentUsingItemBarcode(oleLoanForm.getCheckInItem());
2872 } else {
2873 oleLoanDocument = getLoanProcessor().getOleLoanDocumentUsingItemUUID(oleLoanForm.getReturnItemUuid());
2874 }
2875 if (oleLoanDocument == null) {
2876 oleLoanDocument = new OleLoanDocument();
2877 }
2878 Timestamp timestamp;
2879 Pattern pattern;
2880 Matcher matcher;
2881 boolean timeFlag = false;
2882 SimpleDateFormat fmt = new SimpleDateFormat(OLEConstants.OlePatron.PATRON_MAINTENANCE_DATE_FORMAT);
2883 if (oleLoanForm.getCheckInTime() != null && !oleLoanForm.getCheckInTime().isEmpty()) {
2884 String[] str = oleLoanForm.getCheckInTime().split(":");
2885 pattern = Pattern.compile(OLEConstants.TIME_24_HR_PATTERN);
2886 matcher = pattern.matcher(oleLoanForm.getCheckInTime());
2887 timeFlag = matcher.matches();
2888 if (timeFlag) {
2889 if (str != null && str.length <= 2) {
2890 oleLoanForm.setCheckInTime(oleLoanForm.getCheckInTime() + OLEConstants.CHECK_IN_TIME_MS);
2891 }
2892 timestamp = Timestamp.valueOf(new SimpleDateFormat(OLEConstants.CHECK_IN_DATE_TIME_FORMAT).format(oleLoanForm.getCheckInDate()).concat(" ").concat(oleLoanForm.getCheckInTime()));
2893 } else {
2894
2895 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2896 }
2897 } else if (fmt.format(oleLoanForm.getCheckInDate()).compareTo(fmt.format(new Date())) == 0) {
2898 timestamp = new Timestamp(new Date().getTime());
2899 } else {
2900 timestamp = Timestamp.valueOf(new SimpleDateFormat(OLEConstants.CHECK_IN_DATE_TIME_FORMAT).format(oleLoanForm.getCheckInDate()).concat(" ").concat(new SimpleDateFormat("HH:mm:ss").format(new Date())));
2901 }
2902 oleLoanDocument.setCheckInDate(timestamp);
2903 try {
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913 if (!getLoanProcessor().isValidCirculationDesk()) {
2914 oleLoanForm.setLoanLoginUserInfo(GlobalVariables.getUserSession().getPrincipalName() + " " + OLEConstants.OleCirculationDesk.OLE_CIRCULATION_DESK_VALIDATIONS);
2915 return super.start(oleLoanForm, result, request, response);
2916 }
2917 oleLoanDocument.setCirculationLocationId(oleLoanForm.getCirculationDesk());
2918
2919 if (LOG.isDebugEnabled()) {
2920 LOG.debug("Check-in Item Barcode Number --->" + oleLoanForm.getCheckInItem());
2921 }
2922 oleLoanDocument.setItemUuid(oleLoanForm.getReturnItemUuid());
2923 oleLoanForm.getErrorsAndPermission().clear();
2924 oleLoanDocument.setSkipDamagedCheckIn(oleLoanForm.isSkipDamagedCheckIn());
2925 oleLoanDocument = getLoanProcessor().returnLoan(oleLoanForm.getCheckInItem(), oleLoanDocument);
2926 if(oleLoanDocument!=null && oleLoanDocument.getOleItem()!=null && oleLoanDocument.getOleItem().getCheckinNote()==null){
2927 getLoanProcessor().updateInTransitHistory(oleLoanDocument,oleLoanForm.getRouteToLocation());
2928 }
2929 oleLoanForm.setItemDamagedStatus(oleLoanDocument.isItemDamagedStatus());
2930 if (oleLoanDocument.isItemDamagedStatus() && (!oleLoanDocument.isSkipDamagedCheckIn())) {
2931 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2932 } else {
2933 if (oleLoanForm.isRecordDamagedItemNote()) {
2934 saveGeneralNoteForFlaggedItem(OLEConstants.DAMAGED_ITEM_CHECKED_IN_FLAG, true, oleLoanDocument, false, true, false, oleLoanForm.getPatronBarcode());
2935 oleLoanForm.setRecordDamagedItemNote(false);
2936 }
2937 oleLoanForm.setSkipDamagedCheckIn(false);
2938 oleLoanForm.setItemDamagedStatus(false);
2939 }
2940 org.kuali.ole.docstore.common.document.Item item = getDocstoreClientLocator().getDocstoreClient().retrieveItem(oleLoanDocument.getItemUuid());
2941 String itemXmlContent = item.getContent();
2942 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
2943 getLoanProcessor().getLocation(oleItem, oleLoanDocument, item);
2944 if (oleLoanDocument.getLocation() == null || oleLoanDocument.getLocation().isEmpty()) {
2945 getLoanProcessor().getDefaultHoldingLocation(oleLoanDocument);
2946 }
2947 if (oleItem.isClaimsReturnedFlag()) {
2948 oleLoanForm.setDummyLoan(oleLoanDocument);
2949 oleLoanForm.setClaimsReturned(true);
2950 oleLoanForm.setRecordNote(false);
2951 oleLoanForm.setReturnSuccess(false);
2952 oleLoanForm.setReturnMessage(OLEConstants.CLAIMS_RETURNED_MESSAGE);
2953 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2954 }
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967 oleLoanForm.setDummyLoan(oleLoanDocument);
2968 if (oleLoanDocument.isCopyRequest()) {
2969 oleLoanForm.setCopyRequest(true);
2970 oleLoanForm.setReturnSuccess(false);
2971 oleLoanForm.setReturnMessage(OLEConstants.COPY_REQUEST_FULFILL);
2972 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2973 }
2974 if (oleLoanDocument.isNumberOfPieces()) {
2975 oleLoanForm.setNumberOfPieces(true);
2976 oleLoanForm.setReturnSuccess(false);
2977 if (oleLoanDocument.getOleItem() != null && oleLoanDocument.getOleItem().isMissingPieceFlag()) {
2978 oleLoanForm.setReturnMessage(OLEConstants.VERIFY_PIECES + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.PIECES_RETURNED
2979 + OLEConstants.BREAK + "Total No of Pieces : " + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.BREAK + "No of missing Pieces : " + (oleLoanDocument.getOleItem().getMissingPiecesCount() != null ? oleLoanDocument.getOleItem().getMissingPiecesCount() : "0"));
2980 } else {
2981 oleLoanForm.setReturnMessage(OLEConstants.VERIFY_PIECES + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.PIECES_RETURNED
2982 + OLEConstants.BREAK + "Total No of Pieces : " + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.BREAK + "No of missing Pieces : " + (oleLoanDocument.getOleItem().getMissingPiecesCount() != null ? oleLoanDocument.getOleItem().getMissingPiecesCount() : "0"));
2983 }
2984 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
2985 }
2986 String checkInNote = oleLoanDocument.getOleItem().getCheckinNote();
2987 if (checkInNote != null && !checkInNote.isEmpty() && oleLoanForm.getReturnMessage() == null) {
2988 oleLoanForm.setCheckInNote(OLEConstants.CHECK_IN_NOTE_HEADER + checkInNote);
2989 oleLoanForm.setRouteToLocation(oleLoanDocument.getRouteToLocation());
2990 String principalId = GlobalVariables.getUserSession().getPrincipalId();
2991 oleLoanForm.setOkOrRemoveNote(getLoanProcessor().checkPermissionForRemoveNote(principalId));
2992 }
2993 if (!oleLoanDocument.isBackGroundCheckOut() && oleLoanDocument.getErrorMessage() != null) {
2994 oleLoanForm.setReturnSuccess(false);
2995 oleLoanForm.setReturnMessage(oleLoanDocument.getErrorMessage());
2996 } else {
2997 List<OleLoanDocument> oleLoanDocuments = new ArrayList<OleLoanDocument>();
2998 if (!oleLoanDocument.isCheckOut() || oleLoanDocument.getErrorMessage() == null)
2999 oleLoanDocuments.add(oleLoanDocument);
3000 if (oleLoanForm.getItemReturnList() != null) {
3001 oleLoanDocuments.addAll(oleLoanForm.getItemReturnList());
3002 }
3003 oleLoanForm.setItemReturnList(oleLoanDocuments);
3004
3005
3006 OleLoanDocument tempOleLoanDocumentObj = null;
3007 List<OleLoanDocument> currentSessionList = oleLoanForm.getLoanList() != null ? oleLoanForm.getLoanList() : new ArrayList<OleLoanDocument>();
3008 for (OleLoanDocument currentOleLoanDocument : currentSessionList) {
3009 if (currentOleLoanDocument.getItemId().equals(oleLoanForm.getCheckInItem())) {
3010 tempOleLoanDocumentObj = currentOleLoanDocument;
3011 break;
3012 }
3013 }
3014 currentSessionList.remove(tempOleLoanDocumentObj);
3015 oleLoanForm.setLoanList(currentSessionList);
3016
3017 oleLoanForm.setCheckInItem("");
3018 }
3019 } catch (Exception e) {
3020 LOG.error("Exception in validate Item " + e);
3021 oleLoanForm.setReturnInformation(e.getMessage());
3022 oleLoanForm.setBillAvailability(false);
3023 try {
3024 org.kuali.ole.docstore.common.document.content.instance.Item oleItem = getLoanProcessor().checkItemStatusForItemBarcode(oleLoanForm.getCheckInItem());
3025 if(oleItem != null && oleItem.getItemStatus() != null && !oleItem.getItemStatus().getCodeValue().equalsIgnoreCase(OLEConstants.ITEM_STATUS_CHECKEDOUT)){
3026 getLoanProcessor().rollbackItemStatus(oleItem,OLEConstants.ITEM_STATUS_CHECKEDOUT,oleLoanForm.getCheckInItem());
3027 oleLoanForm.setReturnInformation(OLEConstants.RETURN_PROCESS_FAILURE);
3028 }
3029
3030 }catch (Exception rollback){
3031 LOG.error("Exception occured during rollback item records " + rollback.getMessage());
3032 }
3033 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3034 }
3035 if (!oleLoanForm.isCheckInNoteExists() && oleLoanForm.getCheckInNote() != null && oleLoanForm.getReturnMessage() == null) {
3036 oleLoanForm.setDummyLoan(oleLoanDocument);
3037 oleLoanForm.setCheckInNoteExists(true);
3038 oleLoanForm.setReturnSuccess(false);
3039 oleLoanForm.setReturnMessage(oleLoanForm.getCheckInNote());
3040 long end = System.currentTimeMillis();
3041 long total = end - begin;
3042 LOG.info("Time taken Inside Validate Item - checkin note"+total);
3043 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3044 }
3045 if (oleLoanDocument.isCheckOut() && oleLoanDocument.getErrorMessage() != null && oleLoanForm.getReturnMessage() == null) {
3046 oleLoanForm.setDueDateEmpty(oleLoanDocument.isDueDateEmpty());
3047 oleLoanForm.setDummyLoan(oleLoanDocument);
3048 oleLoanForm.setReturnSuccess(false);
3049 oleLoanForm.setMessage(oleLoanDocument.getErrorMessage());
3050 oleLoanForm.setCheckOut(true);
3051 oleLoanForm.setItem(oleLoanForm.getCheckInItem());
3052 oleLoanForm.setOleItem(oleLoanDocument.getOleItem());
3053 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3054 }
3055 if ((oleLoanForm.getReturnMessage() == null) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
3056 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
3057 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
3058
3059 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
3060
3061 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
3062 if (oleNoticeBo != null) {
3063 oleNoticeBo.setCheckInDate(dateFormat.format(date));
3064
3065 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
3066 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
3067 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
3068 if (replyToEmail != null) {
3069 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3070 } else {
3071 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
3072 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
3073 fromAddress = OLEConstants.KUALI_MAIL;
3074 }
3075 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3076 }
3077 if (LOG.isInfoEnabled()) {
3078 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
3079 }
3080 }
3081 } else {
3082 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
3083 oleLoanForm.setBillAvailability(false);
3084 } else {
3085 oleLoanForm.setBillAvailability(true);
3086 }
3087 }
3088 }
3089 if (oleLoanDocument.isCheckOut()) {
3090 oleLoanForm.setDueDateSlip(true);
3091 oleLoanForm.setBillAvailability(false);
3092 }
3093 if (request != null && !"".equalsIgnoreCase(request.toString())) {
3094 oleLoanForm.setDueDateSlip(false);
3095 }
3096 if (oleLoanDocument.getItemStatus() != null && oleLoanDocument.getItemStatus().equalsIgnoreCase(OLEConstants.ITEM_STATUS_RECENTLY_RETURNED)) {
3097 oleLoanForm.setBillAvailability(false);
3098 oleLoanForm.setDueDateSlip(false);
3099 }
3100 long end = System.currentTimeMillis();
3101 long total = end - begin;
3102 LOG.info("Time taken Inside Validate Item"+total);
3103 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3104 }
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115 @RequestMapping(params = "methodToCall=returnItem")
3116 public ModelAndView returnItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3117 HttpServletRequest request, HttpServletResponse response) {
3118 if (LOG.isDebugEnabled()) {
3119 LOG.debug(" Inside Return Item ");
3120 }
3121 long begin = System.currentTimeMillis();
3122 OleLoanForm oleLoanForm = (OleLoanForm) form;
3123
3124
3125
3126
3127
3128
3129 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
3130 oleLoanForm.setAudioEnable(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
3131 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
3132 String principalId = GlobalVariables.getUserSession().getPrincipalId();
3133 Boolean overRideFlag = getLoanProcessor().checkOverRidePermission(principalId, oleLoanForm);
3134 if (oleLoanForm.getMissingPieceCount() != null) {
3135 oleLoanDocument.setMissingPiecesCount(oleLoanForm.getMissingPieceCount());
3136 }
3137 if (!overRideFlag) {
3138 ModelAndView modelAndView = this.overRide(form, result, request, response);
3139 if (modelAndView != null) {
3140 return modelAndView;
3141 }
3142 }
3143 try {
3144 oleLoanForm.getErrorsAndPermission().clear();
3145 oleLoanDocument = getLoanProcessor().returnLoan(oleLoanDocument);
3146
3147 if (oleLoanDocument.isNumberOfPieces()) {
3148 oleLoanForm.setNumberOfPieces(true);
3149 oleLoanForm.setReturnSuccess(false);
3150
3151 oleLoanForm.setReturnMessage(OLEConstants.VERIFY_PIECES + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.PIECES_RETURNED
3152 + OLEConstants.BREAK + "Total No of Pieces : " + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.BREAK + "No of missing Pieces : " + (oleLoanDocument.getOleItem().getMissingPiecesCount() != null ? oleLoanDocument.getOleItem().getMissingPiecesCount() : "0"));
3153 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3154 }
3155 String checkInNote = oleLoanDocument.getOleItem().getCheckinNote();
3156 if (!oleLoanForm.isBackGroundCheckIn() && checkInNote != null && !checkInNote.isEmpty()) {
3157 oleLoanForm.setNumberOfPieces(false);
3158 oleLoanForm.setCheckInNote(OLEConstants.CHECK_IN_NOTE_HEADER + checkInNote);
3159 oleLoanForm.setRouteToLocation(oleLoanDocument.getRouteToLocation());
3160 oleLoanForm.setOkOrRemoveNote(getLoanProcessor().checkPermissionForRemoveNote(principalId));
3161 }
3162 List<OleLoanDocument> oleLoanDocuments = new ArrayList<OleLoanDocument>();
3163 if (!oleLoanDocument.isCheckOut() || oleLoanDocument.getErrorMessage() == null)
3164 oleLoanDocuments.add(oleLoanDocument);
3165 if (oleLoanForm.getItemReturnList() != null) {
3166 oleLoanDocuments.addAll(oleLoanForm.getItemReturnList());
3167 }
3168 if (!oleLoanForm.isTempClaimsFlag()) {
3169 oleLoanForm.setItemReturnList(oleLoanDocuments);
3170 } else {
3171 oleLoanForm.setTempClaimsFlag(false);
3172 }
3173
3174 } catch (Exception e) {
3175 LOG.error("Exception in return Item " + e, e);
3176 }
3177 oleLoanForm.setReturnSuccess(true);
3178 oleLoanForm.setReturnMessage(null);
3179 oleLoanForm.setCheckInItem("");
3180 oleLoanForm.setReturnInformation("");
3181 if (!oleLoanForm.isCheckInNoteExists() && oleLoanForm.getCheckInNote() != null) {
3182 oleLoanForm.setDummyLoan(oleLoanDocument);
3183 oleLoanForm.setCheckInNoteExists(true);
3184 oleLoanForm.setReturnSuccess(false);
3185 oleLoanForm.setReturnMessage(oleLoanForm.getCheckInNote());
3186 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3187 }
3188 if (oleLoanDocument.isCheckOut() && oleLoanDocument.getErrorMessage() != null) {
3189 oleLoanForm.setDueDateEmpty(oleLoanDocument.isDueDateEmpty());
3190 oleLoanForm.setDummyLoan(oleLoanDocument);
3191 oleLoanForm.setReturnSuccess(false);
3192 oleLoanForm.setMessage(oleLoanDocument.getErrorMessage());
3193 oleLoanForm.setCheckOut(true);
3194 oleLoanForm.setItem(oleLoanForm.getCheckInItem());
3195 oleLoanForm.setOleItem(oleLoanDocument.getOleItem());
3196 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3197 }
3198 if (oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
3199 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
3200 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
3201
3202 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
3203
3204 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
3205 if (oleNoticeBo != null) {
3206 oleNoticeBo.setCheckInDate(dateFormat.format(date));
3207
3208 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
3209 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
3210 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
3211 if (replyToEmail != null) {
3212 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3213 } else {
3214 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
3215 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
3216 fromAddress = OLEConstants.KUALI_MAIL;
3217 }
3218 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3219 }
3220 if (LOG.isInfoEnabled()) {
3221 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
3222 }
3223 }
3224 } else {
3225 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
3226 oleLoanForm.setBillAvailability(false);
3227 } else {
3228 oleLoanForm.setBillAvailability(true);
3229 }
3230 }
3231 }
3232 if (oleLoanDocument.isCheckOut()) {
3233 oleLoanForm.setDueDateSlip(true);
3234 oleLoanForm.setBillAvailability(false);
3235 }
3236 if (oleLoanForm.isBackGroundCheckIn()) {
3237 oleLoanForm.setItem(oleLoanForm.getCheckInItem());
3238 oleLoanForm.setOleItem(oleLoanDocument.getOleItem());
3239 oleLoanDocument.setItemLoanStatus(oleLoanDocument.getItemStatusCode());
3240 loanPatron(oleLoanForm, result, request, response);
3241 }
3242 long end = System.currentTimeMillis();
3243 long total = end - begin;
3244 LOG.info("Time taken Inside Return Item"+total);
3245 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3246 }
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257 @RequestMapping(params = "methodToCall=noReturnItem")
3258 public ModelAndView doNotReturnItem(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3259 HttpServletRequest request, HttpServletResponse response) {
3260 if (LOG.isDebugEnabled()) {
3261 LOG.debug(" Inside Do Not Return Item ");
3262 }
3263 OleLoanForm oleLoanForm = (OleLoanForm) form;
3264
3265
3266
3267
3268 oleLoanForm.setReturnInformation("");
3269 oleLoanForm.setCheckInItem("");
3270 oleLoanForm.setReturnMessage(null);
3271 oleLoanForm.setReturnSuccess(true);
3272 oleLoanForm.setCheckInNote(null);
3273 oleLoanForm.setNumberOfPieces(false);
3274 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
3275 if (oleLoanForm.getDummyLoan().isCheckOut() && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
3276 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
3277 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
3278
3279 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
3280 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
3281 if (oleNoticeBo != null) {
3282 oleNoticeBo.setCheckInDate(dateFormat.format(date));
3283 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
3284 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
3285 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
3286 if (replyToEmail != null) {
3287 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3288 } else {
3289 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
3290 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
3291 fromAddress = OLEConstants.KUALI_MAIL;
3292 }
3293 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3294 }
3295 if (LOG.isInfoEnabled()) {
3296 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
3297 }
3298 }
3299 } else {
3300 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
3301 oleLoanForm.setBillAvailability(false);
3302 } else {
3303 oleLoanForm.setBillAvailability(true);
3304 }
3305 }
3306 }
3307 if (oleLoanForm.getDummyLoan() != null && oleLoanForm.getDummyLoan().isCheckOut()) {
3308 oleLoanForm.setDueDateSlip(true);
3309 oleLoanForm.setBillAvailability(false);
3310 }
3311 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3312 }
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323 @RequestMapping(params = "methodToCall=continueCheckIn")
3324 public ModelAndView continueCheckIn(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3325 HttpServletRequest request, HttpServletResponse response) {
3326 if (LOG.isDebugEnabled()) {
3327 LOG.debug(" Inside Continue Check-in ");
3328 }
3329 long begin = System.currentTimeMillis();
3330 OleLoanForm oleLoanForm = (OleLoanForm) form;
3331
3332
3333
3334
3335
3336 String audioOption = getLoanProcessor().getParameter(OLEConstants.AUDIO_OPTION);
3337 oleLoanForm.setAudioEnable(audioOption != null && !audioOption.isEmpty() && audioOption.equalsIgnoreCase(OLEConstants.TRUE));
3338 String description = oleLoanForm.getDescription();
3339 String matchCheck = oleLoanForm.getMatchCheck();
3340 String copyCheck = oleLoanForm.getCopyCheck();
3341 oleLoanForm.getErrorsAndPermission().clear();
3342 OleLoanDocument oleLoanDocument = new OleLoanDocument();
3343 oleLoanDocument = oleLoanForm.getDummyLoan();
3344 oleLoanDocument.setDescription(oleLoanForm.getDescription());
3345 oleLoanDocument.setMissingPieceNote(oleLoanForm.getMissingPieceNote());
3346 if (oleLoanForm.getMissingPieceCount() != null) {
3347 oleLoanDocument.setMissingPiecesCount(oleLoanForm.getMissingPieceCount());
3348 }
3349 try {
3350 if (copyCheck != null && copyCheck.equalsIgnoreCase(OLEConstants.TRUE)) {
3351 oleLoanForm.setCopyCheck("");
3352 getLoanProcessor().deleteRequestRecord(oleLoanDocument.getOleDeliverRequestBo());
3353 oleLoanDocument = getLoanProcessor().returnLoan(oleLoanDocument);
3354
3355 } else if (copyCheck != null && copyCheck.equalsIgnoreCase(OLEConstants.FALSE)) {
3356 return endCheckInSession(form, result, request, response);
3357 }
3358
3359
3360
3361
3362
3363
3364
3365 String itemUUid = oleLoanDocument.getItemUuid();
3366 org.kuali.ole.docstore.common.document.Item item = new ItemOleml();
3367 item = getDocstoreClientLocator().getDocstoreClient().retrieveItem(itemUUid);
3368 String itemXmlContent = item.getContent();
3369 Item oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
3370 getLoanProcessor().getLocation(oleItem, oleLoanDocument, item);
3371 if (oleLoanDocument.getLocation() == null || oleLoanDocument.getLocation().isEmpty()) {
3372 getLoanProcessor().getDefaultHoldingLocation(oleLoanDocument);
3373 }
3374 org.kuali.ole.docstore.common.document.Item itemXml = new ItemOleml();
3375 boolean claimsFlag = false;
3376 if (oleItem.isClaimsReturnedFlag()) {
3377 oleLoanForm.setTempClaimsFlag(true);
3378 claimsFlag = true;
3379 oleLoanForm.setClaimsReturned(false);
3380 oleLoanForm.setReturnSuccess(true);
3381 oleLoanForm.setReturnMessage(null);
3382 oleItem.setClaimsReturnedFlag(false);
3383 oleItem.setClaimsReturnedFlagCreateDate(null);
3384 oleItem.setClaimsReturnedNote(null);
3385 oleLoanDocument.getOleItem().setClaimsReturnedFlag(false);
3386 oleLoanDocument.getOleItem().setClaimsReturnedNote(null);
3387 oleLoanDocument.getOleItem().setClaimsReturnedFlagCreateDate(null);
3388 ItemOlemlRecordProcessor itemOlemlRecordProcessor = new ItemOlemlRecordProcessor();
3389 itemXml.setContent(itemOlemlRecordProcessor.toXML(oleItem));
3390 itemXml.setCategory(OLEConstants.WORK_CATEGORY);
3391 itemXml.setType(DocType.ITEM.getCode());
3392 itemXml.setFormat(OLEConstants.OLEML_FORMAT);
3393 itemXml.setId(oleLoanDocument.getItemUuid());
3394 getDocstoreClientLocator().getDocstoreClient().updateItem(itemXml);
3395 if (oleLoanForm.isRecordNote()) {
3396 saveGeneralNoteForFlaggedItem(OLEConstants.CLAIMS_CHECKED_IN_FLAG, true, oleLoanDocument, false, true, false, oleLoanForm.getPatronBarcode());
3397 }
3398 oleLoanDocument = getLoanProcessor().returnLoan(oleLoanDocument);
3399 }
3400 if (oleLoanDocument.isCopyRequest()) {
3401 oleLoanForm.setCopyRequest(true);
3402 oleLoanForm.setReturnSuccess(false);
3403 oleLoanForm.setNumberOfPieces(true);
3404 oleLoanForm.setReturnMessage(OLEConstants.COPY_REQUEST_FULFILL);
3405 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3406 }
3407 if ((oleLoanDocument.isNumberOfPieces() && (matchCheck == null)) || (oleItem != null && StringUtils.isNotEmpty(oleItem.getNumberOfPieces())) && (matchCheck == null)) {
3408 int noOfPiece = 0;
3409 if (oleItem.getNumberOfPieces() != null && !oleItem.getNumberOfPieces().equalsIgnoreCase("")) {
3410 noOfPiece = Integer.parseInt(oleItem.getNumberOfPieces());
3411 }
3412 if (noOfPiece > 1) {
3413 oleLoanForm.setNumberOfPieces(true);
3414 oleLoanForm.setReturnSuccess(false);
3415 oleLoanForm.setReturnMessage(OLEConstants.VERIFY_PIECES + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.PIECES_RETURNED
3416 + OLEConstants.BREAK + "Total No of Pieces : " + oleLoanDocument.getItemNumberOfPieces() + OLEConstants.BREAK + "No of missing Pieces : " + (oleLoanDocument.getOleItem().getMissingPiecesCount() != null ? oleLoanDocument.getOleItem().getMissingPiecesCount() : "0"));
3417
3418 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3419 }
3420 }
3421
3422 if (matchCheck != null && matchCheck.equalsIgnoreCase(OLEConstants.TRUE)) {
3423 oleLoanDocument.setContinueCheckIn(true);
3424 oleLoanDocument = getLoanProcessor().returnLoan(oleLoanDocument);
3425 oleLoanForm.setMatchCheck(null);
3426 oleLoanForm.setErrorMessage("");
3427 oleLoanForm.setMissingPieceCount("");
3428 oleLoanForm.setDescription("");
3429 oleLoanForm.setMissingPieceNote("");
3430 oleLoanForm.setSendMissingPieceMail(false);
3431 } else if (matchCheck != null && matchCheck.equalsIgnoreCase(OLEConstants.FALSE)) {
3432 Integer numberOfPieces = Integer.parseInt(oleItem != null && oleItem.getNumberOfPieces() != null && !oleItem.getNumberOfPieces().isEmpty() ? oleItem.getNumberOfPieces() : "0");
3433 if (numberOfPieces > 1) {
3434 if (oleLoanForm.getMissingPieceCount() != null && !oleLoanForm.getMissingPieceCount().equalsIgnoreCase("")) {
3435 if (oleLoanDocument.getOleItem() != null && oleLoanDocument.getOleItem().getNumberOfPieces() != null && (!oleLoanDocument.getOleItem().getNumberOfPieces().equalsIgnoreCase(""))) {
3436 int noOfPieces = Integer.parseInt(oleLoanDocument.getOleItem().getNumberOfPieces());
3437 int missingPieceCount = Integer.parseInt(oleLoanDocument.getMissingPiecesCount());
3438 int userMissingPieceCount = Integer.parseInt((oleLoanDocument.getOleItem().getMissingPiecesCount() != null ? oleLoanDocument.getOleItem().getMissingPiecesCount() : "0"));
3439 if (missingPieceCount < 0) {
3440 oleLoanForm.setCheckOut(true);
3441 oleLoanForm.setMissingPieceValidationSuccess(true);
3442 oleLoanForm.setErrorMessage("Missing piece should not less than 0");
3443 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3444 }
3445 if (missingPieceCount + userMissingPieceCount > noOfPieces) {
3446 oleLoanForm.setCheckOut(true);
3447 oleLoanForm.setMissingPieceValidationSuccess(true);
3448 oleLoanForm.setErrorMessage("Missing piece should not be greater than sum of no of pieces and missing pieces ");
3449 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3450 }
3451 }
3452 }
3453 }
3454 oleLoanForm.setSendMissingPieceMail(true);
3455 oleLoanDocument.setDescription(description);
3456 oleLoanForm.setMissingPieceMessage(oleLoanDocument.getDescription());
3457
3458 getLoanProcessor().updateMissingPiecesItemInfo(oleLoanDocument);
3459 if (oleLoanForm.isRecordMissingPieceNote() || oleLoanForm.isRecordCheckoutMissingPieceNote()) {
3460 if (!oleLoanForm.isRecordCheckoutMissingPieceNote()) {
3461 if (oleLoanForm.isRecordMissingPieceNote()) {
3462 saveGeneralNoteForFlaggedItem(OLEConstants.MISSING_PIECE_ITEM_CHECKED_IN_FLAG, true, oleLoanDocument, false, true, false, oleLoanForm.getPatronBarcode());
3463 }
3464 } else {
3465 saveGeneralNoteForFlaggedItem(OLEConstants.MISSING_PIECE_ITEM_CHECKED_IN_FLAG, true, oleLoanDocument, false, true, true, oleLoanForm.getPatronBarcode());
3466 }
3467 oleLoanForm.setRecordMissingPieceNote(false);
3468 oleLoanForm.setRecordCheckoutMissingPieceNote(false);
3469 }
3470
3471 oleLoanDocument.setContinueCheckIn(true);
3472 oleLoanDocument = getLoanProcessor().returnLoan(oleLoanDocument);
3473 oleLoanForm.setMatchCheck(null);
3474 oleLoanForm.setErrorMessage("");
3475 oleLoanForm.setMissingPieceCount("");
3476 oleLoanForm.setDescription("");
3477 oleLoanForm.setMissingPieceNote("");
3478 if (itemUUid != null) {
3479 itemXmlContent = getLoanProcessor().getItemXML(oleLoanDocument.getItemUuid());
3480 oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
3481 oleLoanDocument.setOleItem(oleItem);
3482 oleLoanDocument.setMissingPiecesCount(oleItem.getMissingPiecesCount());
3483 oleLoanDocument.setMissingPieceFlag(oleItem.isMissingPieceFlag());
3484 if (oleItem != null) {
3485 OleItemAvailableStatus oleItemAvailableStatus = getLoanProcessor().validateAndGetItemStatus(oleLoanDocument.getItemStatusCode());
3486 oleLoanDocument.setItemStatus(oleItemAvailableStatus != null ? oleItemAvailableStatus.getItemAvailableStatusName() : null);
3487 }
3488 }
3489 } else if ((copyCheck == null || copyCheck.isEmpty()) && !oleLoanForm.isNumberOfPieces() && oleItem.isClaimsReturnedFlag()) {
3490 oleLoanDocument = getLoanProcessor().returnLoan(oleLoanDocument);
3491 }
3492 String checkInNote = oleLoanDocument.getOleItem().getCheckinNote();
3493 if (!oleLoanForm.isBackGroundCheckIn() && (oleLoanForm.isCopyRequest() || oleLoanForm.isNumberOfPieces() || claimsFlag) && checkInNote != null && !checkInNote.isEmpty()) {
3494 oleLoanForm.setNumberOfPieces(false);
3495 oleLoanForm.setCopyRequest(false);
3496 oleLoanForm.setCheckInNote(OLEConstants.CHECK_IN_NOTE_HEADER + checkInNote);
3497 oleLoanForm.setRouteToLocation(oleLoanDocument.getRouteToLocation());
3498 String principalId = GlobalVariables.getUserSession().getPrincipalId();
3499 oleLoanForm.setOkOrRemoveNote(getLoanProcessor().checkPermissionForRemoveNote(principalId));
3500 }
3501 List<OleLoanDocument> oleLoanDocuments = new ArrayList<OleLoanDocument>();
3502 if (!oleLoanDocument.isCheckOut() || oleLoanDocument.getErrorMessage() == null)
3503 oleLoanDocuments.add(oleLoanDocument);
3504 if (oleLoanForm.getItemReturnList() != null) {
3505 oleLoanDocuments.addAll(oleLoanForm.getItemReturnList());
3506 }
3507 if (!oleLoanForm.isBackGroundCheckIn()) {
3508 oleLoanForm.setItemReturnList(oleLoanDocuments);
3509
3510
3511
3512 OleLoanDocument tempOleLoanDocumentObj = null;
3513 List<OleLoanDocument> currentSessionList = oleLoanForm.getLoanList() != null ? oleLoanForm.getLoanList() : new ArrayList<OleLoanDocument>();
3514 for (OleLoanDocument currentOleLoanDocument : currentSessionList) {
3515 if (currentOleLoanDocument != null && currentOleLoanDocument.getItemId() != null && currentOleLoanDocument.getItemId().equals(oleLoanForm.getCheckInItem())) {
3516 tempOleLoanDocumentObj = currentOleLoanDocument;
3517 break;
3518 }
3519 }
3520 currentSessionList.remove(tempOleLoanDocumentObj);
3521 oleLoanForm.setLoanList(currentSessionList);
3522
3523 }
3524
3525 } catch (Exception e) {
3526 LOG.error("Exception in Continue Check-in " + e);
3527 }
3528
3529 oleLoanForm.setNumberOfPieces(false);
3530 oleLoanForm.setReturnSuccess(true);
3531 oleLoanForm.setReturnMessage(null);
3532 oleLoanForm.setCheckInItem("");
3533 oleLoanForm.setReturnInformation("");
3534 if (LOG.isDebugEnabled()) {
3535 LOG.debug("oleLoanForm.getFormKey()" + oleLoanForm.getFormKey());
3536 }
3537 if (oleLoanForm.isBackGroundCheckIn()) {
3538 oleLoanForm.setItem(oleLoanForm.getCheckInItem());
3539 oleLoanForm.setOleItem(oleLoanDocument.getOleItem());
3540 oleLoanDocument.setItemLoanStatus(oleLoanDocument.getItemStatusCode());
3541 loanPatron(oleLoanForm, result, request, response);
3542 }
3543 if (oleLoanForm.isTempClaimsFlag()) {
3544
3545 if (!oleLoanDocument.isBackGroundCheckOut() && oleLoanDocument.getErrorMessage() != null) {
3546 oleLoanForm.setReturnSuccess(false);
3547 oleLoanForm.setReturnMessage(oleLoanDocument.getErrorMessage());
3548 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3549 }
3550 }
3551 if (!oleLoanForm.isCheckInNoteExists() && oleLoanForm.getCheckInNote() != null) {
3552 oleLoanForm.setDummyLoan(oleLoanDocument);
3553 oleLoanForm.setCheckInNoteExists(true);
3554 oleLoanForm.setReturnSuccess(false);
3555 oleLoanForm.setReturnMessage(oleLoanForm.getCheckInNote());
3556 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3557 }
3558 if (oleLoanDocument.isCheckOut() && oleLoanDocument.getErrorMessage() != null) {
3559 oleLoanForm.setDueDateEmpty(oleLoanDocument.isDueDateEmpty());
3560 oleLoanForm.setDummyLoan(oleLoanDocument);
3561 oleLoanForm.setReturnSuccess(false);
3562 oleLoanForm.setMessage(oleLoanDocument.getErrorMessage());
3563 oleLoanForm.setCheckOut(true);
3564 oleLoanForm.setItem(oleLoanForm.getCheckInItem());
3565 oleLoanForm.setOleItem(oleLoanDocument.getOleItem());
3566 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3567 }
3568 if (oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
3569 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
3570 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
3571
3572 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
3573 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
3574 if (oleNoticeBo != null && (!oleLoanDocument.isBackgroundCheckInMissingPiece()) && oleLoanForm.isSendMissingPieceMail()) {
3575 oleNoticeBo.setCheckInDate(dateFormat.format(date));
3576 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
3577 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
3578 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
3579 if (replyToEmail != null) {
3580 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3581 } else {
3582 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
3583 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
3584 fromAddress = OLEConstants.KUALI_MAIL;
3585 }
3586 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3587 }
3588 if (LOG.isInfoEnabled()) {
3589 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
3590 }
3591 }
3592 } else {
3593 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
3594 oleLoanForm.setBillAvailability(false);
3595 } else {
3596 oleLoanForm.setBillAvailability(true);
3597 }
3598 }
3599 }
3600 if (oleLoanDocument.isCheckOut()) {
3601 oleLoanForm.setDueDateSlip(true);
3602 oleLoanForm.setBillAvailability(false);
3603 }
3604 long end = System.currentTimeMillis();
3605 long total = end - begin;
3606 LOG.info("Time taken Inside Continue checkin Item"+total);
3607 return getUIFModelAndView(oleLoanForm, oleLoanForm.getPageId());
3608 }
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619 @RequestMapping(params = "methodToCall=endCheckInSession")
3620 public ModelAndView endCheckInSession(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3621 HttpServletRequest request, HttpServletResponse response) {
3622 if (LOG.isDebugEnabled()) {
3623 LOG.debug(" Inside End Check-in session ");
3624 }
3625 OleLoanForm oleLoanForm = (OleLoanForm) form;
3626
3627 String parameter = getLoanProcessor().getParameter(OLEConstants.MAX_TIME_CHECK_IN);
3628 if (parameter != null) {
3629 oleLoanForm.setMaxTimeForCheckInDate(Integer.parseInt(parameter));
3630 }
3631 if (oleLoanForm.getItemReturnList() != null) {
3632 List<OleLoanDocument> holdSlipList = new ArrayList<OleLoanDocument>();
3633 for (OleLoanDocument oleLoanDocument : oleLoanForm.getItemReturnList()) {
3634 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD)) {
3635 holdSlipList.add(oleLoanDocument);
3636 }
3637 }
3638 OleCirculationDesk oleCirculationDesk = null;
3639 oleCirculationDesk = getCircDeskLocationResolver().getOleCirculationDesk(oleLoanForm.getCirculationDesk());
3640 if (holdSlipList.size() > 0 && oleCirculationDesk != null && oleCirculationDesk.isPrintSlip() && oleCirculationDesk.isHoldQueue()) {
3641 printHoldSlipList = holdSlipList;
3642 oleLoanForm.setHoldSlip(true);
3643 }
3644 }
3645 oleLoanForm.setCopyRequest(false);
3646 oleLoanForm.setNumberOfPieces(false);
3647 oleLoanForm.setReturnInformation("");
3648 oleLoanForm.setCheckInItem("");
3649 oleLoanForm.setReturnMessage(null);
3650 oleLoanForm.setReturnSuccess(true);
3651 oleLoanForm.setItemReturnList(null);
3652 oleLoanForm.setCheckInNote(null);
3653 oleLoanForm.setBillAvailability(false);
3654 oleLoanForm.setCheckInDate(new Timestamp(new Date().getTime()));
3655 oleLoanForm.setCheckInTime(null);
3656 if (!oleLoanForm.isClearUI()) {
3657 String principalId = GlobalVariables.getUserSession().getPrincipalId();
3658 OleCirculationDeskDetail oleCirculationDeskDetail = getLoanProcessor().getDefaultCirculationDesk(principalId);
3659 if (oleCirculationDeskDetail != null) {
3660 oleLoanForm.setCirculationDesk(oleCirculationDeskDetail.getCirculationDeskId());
3661 oleLoanForm.setPreviousCirculationDesk(oleLoanForm.getCirculationDesk());
3662 }
3663 }
3664 oleLoanForm.setSuccessMessage(null);
3665
3666 return getUIFModelAndView(oleLoanForm, "ReturnItemViewPage");
3667 }
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678 @RequestMapping(params = "methodToCall=printBill")
3679 public ModelAndView printBill(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3680 HttpServletRequest request, HttpServletResponse response) {
3681 OlePrintSlip olePrintSlip = new OlePrintSlip();
3682 if (LOG.isDebugEnabled()) {
3683 LOG.debug(" Inside Print Bill ");
3684 }
3685 String formKey = request.getParameter("formKey");
3686 OleLoanForm oleLoanForm = (OleLoanForm) GlobalVariables.getUifFormManager().getSessionForm(formKey);
3687 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
3688 if (oleLoanForm.getRouteToLocation() != null) {
3689 oleLoanDocument.setRouteToLocation(oleLoanForm.getRouteToLocation());
3690 }
3691 olePrintSlip.createPdfForPrintingSlip(oleLoanDocument, response);
3692 oleLoanForm.setBackGroundCheckIn(false);
3693 return null;
3694 }
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705 @RequestMapping(params = "methodToCall=printLoanBill")
3706 public ModelAndView printLoanBill(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3707 HttpServletRequest request, HttpServletResponse response) {
3708 OlePrintSlip olePrintSlip = new OlePrintSlip();
3709 if (LOG.isDebugEnabled()) {
3710 LOG.debug(" Inside Print Loan Bill ");
3711 }
3712 String formKey = request.getParameter("formKey");
3713 OleLoanForm oleLoanForm = (OleLoanForm) GlobalVariables.getUifFormManager().getSessionForm(formKey);
3714 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
3715 List<OleLoanDocument> oleLoanDocumentList = new ArrayList<OleLoanDocument>();
3716 if (getLoanProcessor().getParameter(OLEConstants.PRINT_DUE_DATE_PER_TRANSACTION).equalsIgnoreCase("No")) {
3717 oleLoanDocumentList = printDueDateSlipList;
3718 } else {
3719 if (oleLoanForm.getLoanList() != null && (oleLoanForm.getLoanList().size() > 0)) {
3720 oleLoanDocumentList.add(oleLoanForm.getLoanList().get(0));
3721 }
3722 }
3723 if (oleLoanDocument.isCheckOut()) {
3724 olePrintSlip.createPdfForBackGroundCheckOut(oleLoanDocument, response);
3725 } else if (oleLoanDocumentList != null && oleLoanDocumentList.size() > 0) {
3726 olePrintSlip.createDueDateSlipPdf(oleLoanDocumentList, response);
3727 }
3728 return null;
3729 }
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741 @RequestMapping(params = "methodToCall=checkInNote")
3742 public ModelAndView checkInNote(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3743 HttpServletRequest request, HttpServletResponse response) {
3744 if (LOG.isDebugEnabled()) {
3745 LOG.debug("Check in Note Exists ");
3746 }
3747 long begin = System.currentTimeMillis();
3748 OleLoanForm oleLoanForm = (OleLoanForm) form;
3749
3750
3751
3752
3753 OleCirculationDesk oleCirculationDesk = getCircDeskLocationResolver().getCirculationDeskByLocationCode(oleLoanForm.getRouteToLocation());
3754 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
3755 if ((oleLoanForm.getRouteToLocation() == null || oleLoanForm.getRouteToLocation().isEmpty()) && oleLoanDocument.getItemStatusCode().contains(OLEConstants.ITEM_STATUS_IN_TRANSIT)) {
3756 oleLoanForm.setInformation(OLEConstants.CIRC_DESK_REQUIRED);
3757 return getUIFModelAndView(form, "ReturnItemViewPage");
3758 } else if (oleCirculationDesk == null) {
3759 oleLoanForm.setInformation(OLEConstants.CIRC_DESK_INVALID);
3760 return getUIFModelAndView(form, "ReturnItemViewPage");
3761 } else {
3762 oleLoanDocument.setRouteToLocationName(oleCirculationDesk.getCirculationDeskPublicName());
3763 }
3764 oleLoanForm.setCheckInNoteExists(false);
3765 oleLoanForm.setReturnSuccess(true);
3766 oleLoanForm.setReturnMessage(null);
3767 oleLoanForm.setCheckInNote(null);
3768 oleLoanForm.setInformation("");
3769 oleLoanForm.setSuccessInfo("");
3770 Item oleItem = oleLoanDocument.getOleItem();
3771 if (oleItem != null) {
3772 try {
3773 getLoanProcessor().removeCheckInNote(oleItem);
3774 } catch (Exception e) {
3775 LOG.error("Exception while removing check-in note", e);
3776 }
3777 }
3778 if (oleLoanDocument.isCheckOut() && oleLoanDocument.getErrorMessage() != null) {
3779 oleLoanForm.setDueDateEmpty(oleLoanDocument.isDueDateEmpty());
3780 oleLoanForm.setDummyLoan(oleLoanDocument);
3781 oleLoanForm.setReturnSuccess(false);
3782 oleLoanForm.setMessage(oleLoanDocument.getErrorMessage());
3783 oleLoanForm.setCheckOut(true);
3784 oleLoanForm.setItem(oleLoanForm.getCheckInItem());
3785 oleLoanForm.setOleItem(oleLoanDocument.getOleItem());
3786 return getUIFModelAndView(form, "ReturnItemViewPage");
3787 }
3788 if (oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
3789 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
3790 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
3791
3792 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
3793 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
3794 if (oleNoticeBo != null) {
3795 oleNoticeBo.setCheckInDate(dateFormat.format(date));
3796 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
3797 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
3798 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
3799 if (replyToEmail != null) {
3800 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3801 } else {
3802 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
3803 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
3804 fromAddress = OLEConstants.KUALI_MAIL;
3805 }
3806 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3807 }
3808 if (LOG.isInfoEnabled()) {
3809 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
3810 }
3811 }
3812 } else {
3813 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
3814 oleLoanForm.setBillAvailability(false);
3815 } else {
3816 oleLoanForm.setBillAvailability(true);
3817 }
3818
3819 }
3820 }
3821 if (oleLoanDocument.isCheckOut() && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
3822 oleLoanForm.setDueDateSlip(true);
3823 oleLoanForm.setBillAvailability(false);
3824 }
3825 long end = System.currentTimeMillis();
3826 long total = end - begin;
3827 LOG.info("Time taken Inside Checkin note "+total);
3828 return getUIFModelAndView(form, "ReturnItemViewPage");
3829 }
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840 @RequestMapping(params = "methodToCall=okCheckInNote")
3841 public ModelAndView okCheckInNote(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3842 HttpServletRequest request, HttpServletResponse response) {
3843 if (LOG.isDebugEnabled()) {
3844 LOG.debug("Check in Note Exists ");
3845 }
3846 long begin = System.currentTimeMillis();
3847 OleLoanForm oleLoanForm = (OleLoanForm) form;
3848
3849
3850
3851
3852 OleCirculationDesk oleCirculationDesk = getCircDeskLocationResolver().getCirculationDeskByLocationCode(oleLoanForm.getRouteToLocation());
3853 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
3854 if ((oleLoanForm.getRouteToLocation() == null || oleLoanForm.getRouteToLocation().isEmpty()) && oleLoanDocument.getItemStatusCode().contains(OLEConstants.ITEM_STATUS_IN_TRANSIT)) {
3855 oleLoanForm.setInformation(OLEConstants.CIRC_DESK_REQUIRED);
3856 return getUIFModelAndView(form, "ReturnItemViewPage");
3857 } else if (oleCirculationDesk == null) {
3858 oleLoanForm.setInformation(OLEConstants.CIRC_DESK_INVALID);
3859 return getUIFModelAndView(form, "ReturnItemViewPage");
3860 } else {
3861 oleLoanDocument.setRouteToLocationName(oleCirculationDesk.getCirculationDeskPublicName());
3862 oleLoanDocument.setRouteToLocation(oleCirculationDesk.getCirculationDeskCode());
3863 }
3864 oleLoanForm.setCheckInNoteExists(false);
3865 oleLoanForm.setReturnSuccess(true);
3866 oleLoanForm.setReturnMessage(null);
3867 oleLoanForm.setCheckInNote(null);
3868 oleLoanForm.setInformation("");
3869 oleLoanForm.setSuccessInfo("");
3870
3871
3872
3873
3874
3875 if (oleLoanDocument.isCheckOut() && oleLoanDocument.getErrorMessage() != null) {
3876 oleLoanForm.setDueDateEmpty(oleLoanDocument.isDueDateEmpty());
3877 oleLoanForm.setDummyLoan(oleLoanDocument);
3878 oleLoanForm.setReturnSuccess(false);
3879 oleLoanForm.setMessage(oleLoanDocument.getErrorMessage());
3880 oleLoanForm.setCheckOut(true);
3881 oleLoanForm.setItem(oleLoanForm.getCheckInItem());
3882 oleLoanForm.setOleItem(oleLoanDocument.getOleItem());
3883 return getUIFModelAndView(form, "ReturnItemViewPage");
3884 }
3885 getLoanProcessor().updateInTransitHistory(oleLoanDocument,oleLoanForm.getRouteToLocation());
3886 if (oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
3887 if (oleLoanDocument.getOleItem().isMissingPieceFlag() && oleLoanForm.isSendMissingPieceMail()) {
3888 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
3889
3890 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
3891
3892 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
3893 if (oleNoticeBo != null) {
3894 oleNoticeBo.setCheckInDate(dateFormat.format(date));
3895 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
3896 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
3897 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
3898 if (replyToEmail != null) {
3899 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3900 } else {
3901 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
3902 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
3903 fromAddress = OLEConstants.KUALI_MAIL;
3904 }
3905 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
3906 }
3907 if (LOG.isInfoEnabled()) {
3908 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
3909 }
3910 }
3911 } else {
3912 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
3913 oleLoanForm.setBillAvailability(false);
3914 } else {
3915 oleLoanForm.setBillAvailability(true);
3916 }
3917 }
3918 }
3919 if (oleLoanDocument.isCheckOut() && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
3920 oleLoanForm.setDueDateSlip(true);
3921 oleLoanForm.setBillAvailability(false);
3922 }
3923 if (oleLoanDocument.getItemStatus() != null && oleLoanDocument.getItemStatus().equalsIgnoreCase(OLEConstants.ITEM_STATUS_RECENTLY_RETURNED)) {
3924 oleLoanForm.setBillAvailability(false);
3925 oleLoanForm.setDueDateSlip(false);
3926 }
3927 long end = System.currentTimeMillis();
3928 long total = end - begin;
3929 LOG.info("Time taken Inside okcheckin note"+total);
3930 return getUIFModelAndView(form, "ReturnItemViewPage");
3931 }
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942 @RequestMapping(params = "methodToCall=clearUI")
3943 public ModelAndView clearUI(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3944 HttpServletRequest request, HttpServletResponse response) {
3945 OleLoanForm oleLoanForm = (OleLoanForm) form;
3946 oleLoanForm.setClearUI(true);
3947 clearPatronScreen(oleLoanForm, result, request, response);
3948 endCheckInSession(oleLoanForm, result, request, response);
3949 oleLoanForm.setClearUI(false);
3950 return getUIFModelAndView(form, "PatronItemViewPage");
3951 }
3952
3953 @RequestMapping(params = "methodToCall=clearReturnUI")
3954 public ModelAndView clearReturnUI(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3955 HttpServletRequest request, HttpServletResponse response) {
3956 OleLoanForm oleLoanForm = (OleLoanForm) form;
3957 oleLoanForm.setClearUI(true);
3958 clearPatronScreen(oleLoanForm, result, request, response);
3959 endCheckInSession(oleLoanForm, result, request, response);
3960 oleLoanForm.setClearUI(false);
3961 return getUIFModelAndView(form, "ReturnItemViewPage");
3962 }
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974 @RequestMapping(params = "methodToCall=setItemBarcode")
3975 public ModelAndView setItemBarcode(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3976 HttpServletRequest request, HttpServletResponse response) throws Exception {
3977 OleLoanForm oleLoanForm = (OleLoanForm) form;
3978 oleLoanForm.setItem(fastAddBarcode);
3979 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
3980 }
3981
3982 @RequestMapping(params = "methodToCall=gotoReturn")
3983 public ModelAndView gotoReturn(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
3984 HttpServletRequest request, HttpServletResponse response) throws IOException {
3985 OleLoanForm oleLoanForm = (OleLoanForm) form;
3986 String baseUrl = ConfigContext.getCurrentContextConfig().getProperty(OLEPropertyConstants.OLE_URL_BASE);
3987 String url = baseUrl + "/portal.do?channelTitle=Loan&channelUrl=" + baseUrl + "/ole-kr-krad/loancontroller?viewId=ReturnItemView&methodToCall=start&formKey=" + oleLoanForm.getFormKey();
3988 Properties props = new Properties();
3989 props.put(UifParameters.METHOD_TO_CALL, UifConstants.MethodToCallNames.REFRESH);
3990 if (StringUtils.isNotBlank(form.getReturnFormKey())) {
3991 props.put(UifParameters.FORM_KEY, form.getReturnFormKey());
3992 }
3993 oleLoanForm.setSuccessMessage(null);
3994 oleLoanForm.setInformation("");
3995 oleLoanForm.setSuccessInfo("");
3996 return performRedirect(oleLoanForm, url, props);
3997 }
3998
3999
4000 @RequestMapping(params = "methodToCall=gotoLoan")
4001 public ModelAndView gotoLoan(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4002 HttpServletRequest request, HttpServletResponse response) throws Exception {
4003 OleLoanForm oleLoanForm = (OleLoanForm) form;
4004 oleLoanForm.setReturnCheck(false);
4005 String baseUrl = ConfigContext.getCurrentContextConfig().getProperty(OLEPropertyConstants.OLE_URL_BASE);
4006 String requestKey = request.getParameter("formKey");
4007 String url = baseUrl + "/portal.do?channelTitle=Loan&channelUrl=" + baseUrl + "/ole-kr-krad/loancontroller?viewId=PatronItemView&methodToCall=start&formKey=" + requestKey;
4008 Properties props = new Properties();
4009 props.put(UifParameters.METHOD_TO_CALL, UifConstants.MethodToCallNames.REFRESH);
4010 if (StringUtils.isNotBlank(form.getReturnFormKey())) {
4011 props.put(UifParameters.FORM_KEY, form.getReturnFormKey());
4012 }
4013 oleLoanForm.setSuccessMessage(null);
4014 oleLoanForm.setShowExistingLoan(false);
4015 return performRedirect(oleLoanForm, url, props);
4016 }
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027 @RequestMapping(params = "methodToCall=damagedCheckIn")
4028 public ModelAndView damagedCheckIn(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4029 HttpServletRequest request, HttpServletResponse response) {
4030 if (LOG.isDebugEnabled()) {
4031 LOG.debug("Check in Note Exists ");
4032 }
4033 OleLoanForm oleLoanForm = (OleLoanForm) form;
4034 OleCirculationDesk oleCirculationDesk = getCircDeskLocationResolver().getCirculationDeskByLocationCode(oleLoanForm.getRouteToLocation());
4035 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
4036 if ((oleLoanForm.getRouteToLocation() == null || oleLoanForm.getRouteToLocation().isEmpty()) && oleLoanDocument.getItemStatusCode().contains(OLEConstants.ITEM_STATUS_IN_TRANSIT)) {
4037 oleLoanForm.setInformation(OLEConstants.CIRC_DESK_REQUIRED);
4038 return getUIFModelAndView(form, "ReturnItemViewPage");
4039 } else if (oleCirculationDesk == null) {
4040 oleLoanForm.setInformation(OLEConstants.CIRC_DESK_INVALID);
4041 return getUIFModelAndView(form, "ReturnItemViewPage");
4042 } else {
4043 oleLoanDocument.setRouteToLocationName(oleCirculationDesk.getCirculationDeskPublicName());
4044 }
4045 oleLoanForm.setDamagedCheckIn(false);
4046 oleLoanForm.setReturnSuccess(true);
4047 oleLoanForm.setReturnMessage(null);
4048 oleLoanForm.setInformation("");
4049 oleLoanForm.setSuccessInfo("");
4050 if (oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isPrintSlip()) {
4051 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
4052 OleNoticeBo oleNoticeBo = getLoanProcessor().getNotice(oleLoanDocument);
4053
4054 SimpleDateFormat dateFormat = new SimpleDateFormat(OLEConstants.DATEFORMAT);
4055 Date date = new Date(oleLoanDocument.getCheckInDate().getTime());
4056 if (oleNoticeBo != null) {
4057 oleNoticeBo.setCheckInDate(dateFormat.format(date));
4058 String missingNoticeDetails = getOleDeliverBatchService().sendMissingNotice(oleNoticeBo);
4059 OleMailer oleMailer = GlobalResourceLoader.getService("oleMailer");
4060 String replyToEmail = getCircDeskLocationResolver().getReplyToEmail(oleNoticeBo.getItemShelvingLocation());
4061 if (replyToEmail != null) {
4062 oleMailer.sendEmail(new EmailFrom(replyToEmail), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
4063 } else {
4064 String fromAddress = getLoanProcessor().getParameter(OLEParameterConstants.NOTICE_FROM_MAIL);
4065 if (fromAddress != null && (fromAddress.equals("") || fromAddress.trim().isEmpty())) {
4066 fromAddress = OLEConstants.KUALI_MAIL;
4067 }
4068 oleMailer.sendEmail(new EmailFrom(fromAddress), new EmailTo(oleNoticeBo.getPatronEmailAddress()), new EmailSubject(OLEConstants.NOTICE_MAIL), new EmailBody(missingNoticeDetails), true);
4069 }
4070 if (LOG.isInfoEnabled()) {
4071 LOG.info("Mail send successfully to " + oleNoticeBo.getPatronEmailAddress());
4072 }
4073 }
4074 } else {
4075 if (oleLoanDocument.getItemStatusCode() != null && oleLoanDocument.getItemStatusCode().equals(OLEConstants.ITEM_STATUS_ON_HOLD) && oleLoanDocument.getOleCirculationDesk() != null && oleLoanDocument.getOleCirculationDesk().isHoldQueue()) {
4076 oleLoanForm.setBillAvailability(false);
4077 } else {
4078 oleLoanForm.setBillAvailability(true);
4079 }
4080 }
4081 }
4082 return getUIFModelAndView(form, "ReturnItemViewPage");
4083 }
4084
4085 @RequestMapping(params = "methodToCall=proceedLoan")
4086 public ModelAndView proceedLoan(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4087 HttpServletRequest request, HttpServletResponse response) {
4088 OleLoanForm oleLoanForm = (OleLoanForm) form;
4089 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
4090 oleLoanDocument.setItemUuid(oleLoanForm.getItemUuid());
4091 try {
4092 getLoanProcessor().isClaimsReturnedItem(oleLoanForm.getItem(), oleLoanDocument);
4093 oleLoanForm.setAddressVerified(false);
4094 oleLoanForm.getErrorsAndPermission().clear();
4095 oleLoanForm.setClaimsFlag(false);
4096 getLoanProcessor().processLoan(oleLoanForm, oleLoanDocument);
4097 } catch (Exception e) {
4098 e.printStackTrace();
4099 }
4100 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
4101 }
4102
4103 private void saveGeneralNoteForFlaggedItem(String systemParameter, boolean multiValue, OleLoanDocument oleLoanDocument, boolean isCheckOut, boolean isCheckIn, boolean backgroundCheckin, String formBarcode) {
4104 String note = getLoanProcessor().getParameter(systemParameter);
4105 SimpleDateFormat df = new SimpleDateFormat(OLEConstants.TIMESTAMP);
4106 if (multiValue) {
4107 note = note.replace("[0]", oleLoanDocument.getItemId());
4108 if (isCheckOut) {
4109 note = note.replace("[0]", oleLoanDocument.getItemId());
4110 note = note.replace("[1]", df.format(oleLoanDocument.getCreateDate()).toString());
4111 Map map = new HashMap();
4112 map.put("circulationDeskId", oleLoanDocument.getCirculationLocationId());
4113 OleCirculationDesk oleCirculationDesk = getLoanProcessor().getBusinessObjectService().findByPrimaryKey(OleCirculationDesk.class, map);
4114 note = note.replace("[2]", oleCirculationDesk.getCirculationDeskCode());
4115 if (systemParameter.equalsIgnoreCase(OLEConstants.MISSING_PIECE_ITEM_CHECKED_OUT_FLAG)) {
4116 int noOfMissingPiece = 0;
4117 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
4118 if (oleLoanDocument.getOleItem() != null && oleLoanDocument.getOleItem().getMissingPiecesCount() != null && !oleLoanDocument.getOleItem().getMissingPiecesCount().equalsIgnoreCase("")) {
4119 noOfMissingPiece = Integer.parseInt(oleLoanDocument.getOleItem().getMissingPiecesCount());
4120 }
4121 }
4122 note = note.replace("[3]", noOfMissingPiece + "");
4123 }
4124 map.clear();
4125 map.put("olePatronId", oleLoanDocument.getPatronId());
4126 OlePatronDocument olePatronDocument = getLoanProcessor().getBusinessObjectService().findByPrimaryKey(OlePatronDocument.class, map);
4127 OlePatronNotes olePatronNotes = new OlePatronNotes();
4128 olePatronNotes.setPatronNoteText(note);
4129 map.clear();
4130 map.put("patronNoteTypeCode", "GENERAL");
4131 OlePatronNoteType olePatronNoteType = (OlePatronNoteType) getLoanProcessor().getBusinessObjectService().findByPrimaryKey(OlePatronNoteType.class, map);
4132 olePatronNotes.setPatronNoteTypeId(olePatronNoteType.getPatronNoteTypeId());
4133 olePatronNotes.setOlePatronId(olePatronDocument.getOlePatronId());
4134 olePatronDocument.getNotes().add(olePatronNotes);
4135 OlePatronDocument patronDocument = (OlePatronDocument) ObjectUtils.deepCopy(olePatronDocument);
4136 getLoanProcessor().getBusinessObjectService().save(patronDocument);
4137 }
4138 if (isCheckIn) {
4139 note = note.replace("[0]", oleLoanDocument.getItemId());
4140 note = note.replace("[1]", df.format(oleLoanDocument.getCheckInDate()).toString());
4141 note = note.replace("[2]", oleLoanDocument.getOleCirculationDesk().getCirculationDeskCode());
4142 if (oleLoanDocument != null && oleLoanDocument.getOlePatron() != null && oleLoanDocument.getOlePatron().getOlePatronId() != null) {
4143 Map map = new HashMap();
4144 OlePatronDocument olePatronDocument = new OlePatronDocument();
4145
4146
4147
4148
4149 map.put("olePatronId", oleLoanDocument.getPatronId());
4150 olePatronDocument = getLoanProcessor().getBusinessObjectService().findByPrimaryKey(OlePatronDocument.class, map);
4151
4152 if (systemParameter.equalsIgnoreCase(OLEConstants.MISSING_PIECE_ITEM_CHECKED_IN_FLAG)) {
4153 int noOfMissingPiece = 0;
4154 if (oleLoanDocument.getOleItem().isMissingPieceFlag()) {
4155 if (oleLoanDocument != null && oleLoanDocument.getMissingPiecesCount() != null && !oleLoanDocument.getMissingPiecesCount().equalsIgnoreCase("")) {
4156 noOfMissingPiece = Integer.parseInt(oleLoanDocument.getMissingPiecesCount());
4157 }
4158 }
4159 note = note.replace("[3]", noOfMissingPiece + "");
4160 }
4161 List<OlePatronNotes> olePatronNotesList = olePatronDocument.getNotes();
4162 OlePatronNotes olePatronNotes = new OlePatronNotes();
4163 olePatronNotes.setPatronNoteText(note);
4164 map.clear();
4165 map.put("patronNoteTypeCode", "GENERAL");
4166 OlePatronNoteType olePatronNoteType = (OlePatronNoteType) getLoanProcessor().getBusinessObjectService().findByPrimaryKey(OlePatronNoteType.class, map);
4167 olePatronNotes.setPatronNoteTypeId(olePatronNoteType.getPatronNoteTypeId());
4168 olePatronNotes.setOlePatronId(olePatronDocument.getOlePatronId());
4169 olePatronNotesList.add(olePatronNotes);
4170 getLoanProcessor().getBusinessObjectService().save(olePatronDocument);
4171 }
4172 }
4173
4174 }
4175
4176
4177 }
4178
4179 @RequestMapping(params = "methodToCall=flaggedNoteSave")
4180 public ModelAndView flaggedNoteSave(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4181 HttpServletRequest request, HttpServletResponse response) {
4182 OleLoanForm oleLoanForm = (OleLoanForm) form;
4183 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
4184 oleLoanForm.setOleFormKey(oleLoanForm.getFormKey());
4185 Item oleItem = oleLoanDocument.getOleItem();
4186
4187 try {
4188 String itemUUid = oleLoanDocument.getItemUuid();
4189 String itemXmlContent = getLoanProcessor().getItemXML(oleLoanDocument.getItemUuid());
4190 oleItem = getLoanProcessor().getItemPojo(itemXmlContent);
4191 itemXmlContent = getLoanProcessor().getItemXML(oleLoanDocument.getItemUuid());
4192 oleLoanDocument.setOleItem(oleItem);
4193
4194 } catch (Exception e) {
4195 if (LOG.isDebugEnabled()) {
4196 LOG.error("Error occurred while retrieving item in flaggedNoteSave" + e);
4197 }
4198 }
4199
4200
4201 if (oleLoanDocument.isItemDamagedStatus()) {
4202 if (oleLoanForm.isSkipDamagedRecordPopup()) {
4203 if (oleLoanForm.isCheckoutDamagedRecordFlag()) {
4204 oleLoanForm.setMessage(null);
4205 saveGeneralNoteForFlaggedItem(OLEConstants.DAMAGED_ITEM_CHECKED_OUT_FLAG, true, oleLoanDocument, true, false, oleLoanForm.isBackGroundCheckIn(), oleLoanForm.getPatronBarcode());
4206 oleLoanForm.setCheckoutDamagedRecordFlag(false);
4207 }
4208 oleLoanForm.setDisplayDamagedRecordNotePopup(false);
4209 oleLoanForm.setSuccessMessage(oleLoanDocument.getSuccessMessage());
4210 } else {
4211 oleLoanForm.setDisplayDamagedRecordNotePopup(true);
4212 oleLoanForm.setSkipDamagedRecordPopup(true);
4213 oleLoanForm.setMessage(null);
4214 oleLoanForm.setSuccessMessage(null);
4215 return getUIFModelAndView(form);
4216 }
4217 }
4218 if (oleLoanDocument.isMissingPieceFlag() || (oleLoanDocument.getOleItem() != null && oleLoanDocument.getOleItem().isMissingPieceFlag())) {
4219 if (oleLoanForm.isSkipMissingPieceRecordPopup()) {
4220 if (oleLoanForm.isCheckoutMissingPieceRecordFlag()) {
4221 oleLoanForm.setMessage(null);
4222 saveGeneralNoteForFlaggedItem(OLEConstants.MISSING_PIECE_ITEM_CHECKED_OUT_FLAG, true, oleLoanDocument, true, false, false, oleLoanForm.getPatronBarcode());
4223 oleLoanForm.setCheckoutMissingPieceRecordFlag(false);
4224 }
4225 oleLoanForm.setDisplayMissingPieceNotePopup(false);
4226 oleLoanForm.setSuccessMessage(oleLoanDocument.getSuccessMessage());
4227 } else {
4228 oleLoanForm.setDisplayMissingPieceNotePopup(true);
4229 oleLoanForm.setSkipMissingPieceRecordPopup(true);
4230 oleLoanForm.setMessage(null);
4231 oleLoanForm.setSuccessMessage(null);
4232 return getUIFModelAndView(form);
4233 }
4234 }
4235 oleLoanForm.setSkipDamagedRecordPopup(false);
4236 oleLoanForm.setSkipMissingPieceRecordPopup(false);
4237 return getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
4238 }
4239
4240 @RequestMapping(params = "methodToCall=refreshReturnLoanList")
4241 public ModelAndView refreshReturnLoanList(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4242 HttpServletRequest request, HttpServletResponse response) {
4243 long begin = System.currentTimeMillis();
4244 OleLoanForm oleLoanForm = (OleLoanForm) form;
4245 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
4246 List<OleLoanDocument> documentList = oleLoanForm.getItemReturnList();
4247 if (documentList != null && documentList.size() > 0) {
4248 OleCirculationDesk oleCirculationDesk = null;
4249 OleLocation oleLocation = null;
4250 if (oleLoanDocument.getCirculationLocationId() != null) {
4251
4252 try{
4253 oleLocation = getCircDeskLocationResolver().getLocationByLocationCode(oleLoanDocument.getItemLocation());
4254 }
4255 catch (Exception e){
4256 LOG.error("Exception while fetching OleLocation based on item location" +e);
4257 }
4258 String routeTo = oleLoanForm.getRouteToLocation() != null ? oleLoanForm.getRouteToLocation() :
4259 (oleLoanDocument.getRouteToLocation() != null ? oleLoanDocument.getRouteToLocation() :
4260 (oleLocation != null ? oleLocation.getLocationCode() : null));
4261 documentList.get(0).setRouteToLocation(routeTo);
4262 }
4263 }
4264 long end = System.currentTimeMillis();
4265 long total = end - begin;
4266 LOG.info("Time taken Inside refreshReturnLoanList"+total);
4267 return getUIFModelAndView(form, "ReturnItemViewPage");
4268 }
4269
4270 @RequestMapping(params = "methodToCall=printHoldSlips")
4271 public ModelAndView printHoldSlips(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4272 HttpServletRequest request, HttpServletResponse response) {
4273 try {
4274 OlePrintSlip olePrintSlip = new OlePrintSlip();
4275 if (LOG.isDebugEnabled()) {
4276 LOG.debug(" Inside Print Hold Slips ");
4277 }
4278 String formKey = request.getParameter("formKey");
4279 OleLoanForm oleLoanForm = (OleLoanForm) GlobalVariables.getUifFormManager().getSessionForm(formKey);
4280 OleLoanDocument oleLoanDocument = oleLoanForm.getDummyLoan();
4281 OleCirculationDesk oleCirculationDesk = null;
4282 oleCirculationDesk = getCircDeskLocationResolver().getOleCirculationDesk(oleLoanDocument.getCirculationLocationId());
4283 olePrintSlip.createHoldSlipPdf(printHoldSlipList, response, oleCirculationDesk);
4284
4285 } catch (Exception e) {
4286 LOG.error("Exception while generating printHoldSlips " + e);
4287 }
4288 return null;
4289 }
4290
4291 @RequestMapping(params = "methodToCall=refreshExport")
4292 public ModelAndView refreshExport(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4293 HttpServletRequest request, HttpServletResponse response) {
4294 OleLoanForm loanForm=(OleLoanForm)form;
4295 Date checkInDate=loanForm.getCheckInDate();
4296 start(form,result,request,response);
4297 loanForm.setCheckInDate(checkInDate);
4298 return getUIFModelAndView(form);
4299 }
4300
4301
4302 @RequestMapping(params = "methodToCall=showExistingLoan")
4303 public ModelAndView showExistingLoan(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4304 HttpServletRequest request, HttpServletResponse response) {
4305 try {
4306 OleLoanForm loanForm = (OleLoanForm) form;
4307 loanForm.setShowExistingLoan(true);
4308 if(loanForm.getExistingLoanList().size()==0){
4309 OleLoanDocument oleLoanDocument = loanForm.getDummyLoan();
4310 if (oleLoanDocument.getRealPatronBarcode() != null) {
4311 if (loanForm.getRealPatronId() != null && (loanForm.getRealPatronId() != null && !loanForm.getRealPatronId().equalsIgnoreCase(""))) {
4312 loanForm.setExistingLoanList(getLoanProcessor().getPatronLoanedItemBySolr(loanForm.getRealPatronId()));
4313 }
4314 } else {
4315 loanForm.setExistingLoanList(getLoanProcessor().getPatronLoanedItemBySolr(oleLoanDocument.getPatronId()));
4316 }
4317 if(loanForm.getLoanList() != null && loanForm.getLoanList().size()>0){
4318 for(OleLoanDocument oleLoanDocument1 : loanForm.getLoanList()){
4319 if(loanForm.getExistingLoanList().contains(oleLoanDocument1)){
4320 loanForm.getExistingLoanList().remove(oleLoanDocument1);
4321 }
4322 }
4323
4324
4325
4326 }
4327 }
4328 } catch (Exception e) {
4329 e.printStackTrace(); }
4330 return getUIFModelAndView(form);
4331 }
4332
4333 @RequestMapping(params = "methodToCall=hideExistingLoan")
4334 public ModelAndView hideExistingLoan(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
4335 HttpServletRequest request, HttpServletResponse response) {
4336 OleLoanForm loanForm=(OleLoanForm)form;
4337 loanForm.setShowExistingLoan(false);
4338
4339 return getUIFModelAndView(form);
4340 }
4341
4342
4343 }