1 package org.kuali.ole.deliver.bo;
2
3 import org.apache.commons.collections.CollectionUtils;
4 import org.apache.commons.lang3.StringUtils;
5 import org.kuali.ole.deliver.OleLoanDocumentsFromSolrBuilder;
6 import org.kuali.ole.deliver.api.*;
7 import org.kuali.ole.deliver.processor.LoanProcessor;
8 import org.kuali.ole.sys.context.SpringContext;
9 import org.kuali.rice.kim.api.KimConstants;
10 import org.kuali.rice.kim.api.identity.IdentityService;
11 import org.kuali.rice.kim.api.identity.address.EntityAddress;
12 import org.kuali.rice.kim.api.identity.email.EntityEmail;
13 import org.kuali.rice.kim.api.identity.employment.EntityEmployment;
14 import org.kuali.rice.kim.api.identity.phone.EntityPhone;
15 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
16 import org.kuali.rice.kim.impl.identity.address.EntityAddressBo;
17 import org.kuali.rice.kim.impl.identity.affiliation.EntityAffiliationBo;
18 import org.kuali.rice.kim.impl.identity.affiliation.EntityAffiliationTypeBo;
19 import org.kuali.rice.kim.impl.identity.email.EntityEmailBo;
20 import org.kuali.rice.kim.impl.identity.employment.EntityEmploymentBo;
21 import org.kuali.rice.kim.impl.identity.entity.EntityBo;
22 import org.kuali.rice.kim.impl.identity.name.EntityNameBo;
23 import org.kuali.rice.kim.impl.identity.phone.EntityPhoneBo;
24 import org.kuali.rice.kim.impl.identity.type.EntityTypeContactInfoBo;
25 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
26 import org.kuali.rice.krad.service.KRADServiceLocator;
27
28 import java.util.*;
29
30
31
32
33 public class OlePatronDocument extends PersistableBusinessObjectBase implements OlePatronContract {
34
35 private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(OlePatronDocument.class);
36
37 private String olePatronId;
38 private String barcode;
39 private String borrowerType;
40 private String affiliationType;
41 private boolean activeIndicator;
42 private boolean generalBlock;
43 private String generalBlockNotes;
44 private boolean pagingPrivilege;
45 private boolean courtesyNotice;
46 private boolean deliveryPrivilege;
47 private boolean realPatronCheck;
48 private boolean selfCheckOut = false;
49 private Date expirationDate;
50 private Date activationDate;
51 private String firstName;
52 private String middleName;
53 private String lastName;
54 private String emailAddress;
55 private String phoneNumber;
56 private String borrowerTypeName;
57 private String processMessage;
58 private String source;
59 private String statisticalCategory;
60 private String oleSourceName;
61 private String oleStatisticalCategoryName;
62 private boolean patronBillFlag;
63 private String proxyPatronId;
64 private byte[] patronPhotograph;
65 private boolean loanFlag;
66 private boolean tempCircHistoryFlag;
67 private boolean requestFlag;
68 private boolean upload = true;
69 private boolean patronHomePage;
70 private boolean pointing;
71 private boolean startingIndexExecuted;
72 private boolean activateBarcode;
73 private boolean deactivateBarcode;
74 private String lostStatus;
75 private String lostDescription;
76 private String lostOperatorId;
77 private boolean invalidateBarcode;
78 private boolean reinstateBarcode;
79 private boolean skipBarcodeValidation;
80 private boolean barcodeChanged;
81 private boolean barcodeEditable;
82 private boolean expirationFlag=true;
83 private boolean popupDialog;
84 private String patronMessage;
85 private String uiMessageType;
86 private boolean reinstated;
87 private int numberOfClaimsReturned;
88 private boolean showLoanedRecords;
89 private boolean showRequestedItems;
90 private boolean showTemporaryCirculationHistoryRecords;
91
92 private HashMap<String,String> errorsAndPermission = new HashMap<>();
93 private String errorMessage;
94 private boolean blockPatron;
95 private String realPatronFirstName;
96
97 private String realPatronLastName;
98 private int loanCount;
99 private int requestedItemRecordsCount;
100 private int tempCirculationHistoryCount;
101
102 private transient IdentityService identityService;
103 private boolean deleteImageFlag;
104 public IdentityService getIdentityService() {
105 if (identityService == null) {
106 identityService = KimApiServiceLocator.getIdentityService();
107 }
108 return identityService;
109 }
110
111 public boolean isPatronHomePage() {
112 return patronHomePage;
113 }
114
115 public boolean isExpirationFlag() {
116 return expirationFlag;
117 }
118
119 public void setExpirationFlag(boolean expirationFlag) {
120 this.expirationFlag = expirationFlag;
121 }
122
123 public void setPatronHomePage(boolean patronHomePage) {
124 this.patronHomePage = patronHomePage;
125 }
126
127 private List<OleLoanDocument> oleLoanDocuments = new ArrayList<OleLoanDocument>();
128 private List<EntityPhoneBo> phones = new ArrayList<EntityPhoneBo>();
129 private List<EntityPhoneBo> deletedPhones = new ArrayList<EntityPhoneBo>();
130 private List<EntityAddressBo> addresses = new ArrayList<EntityAddressBo>();
131 private List<OleEntityAddressBo> oleEntityAddressBo = new ArrayList<OleEntityAddressBo>();
132 private List<OleEntityAddressBo> deletedOleEntityAddressBo = new ArrayList<OleEntityAddressBo>();
133 private EntityNameBo name = new EntityNameBo();
134 private List<OleAddressBo> oleAddresses = new ArrayList<OleAddressBo>();
135 private List<EntityEmailBo> emails = new ArrayList<EntityEmailBo>();
136 private List<EntityEmailBo> deletedEmails = new ArrayList<EntityEmailBo>();
137 private List<OlePatronNotes> notes = new ArrayList<OlePatronNotes>();
138 private List<OlePatronNotes> deletedNotes = new ArrayList<OlePatronNotes>();
139 private List<OlePatronLostBarcode> lostBarcodes = new ArrayList<OlePatronLostBarcode>();
140 private OleBorrowerType oleBorrowerType;
141 private EntityBo entity = new EntityBo();
142 private OleSourceBo sourceBo;
143 private OleStatisticalCategoryBo statisticalCategoryBo;
144 private List<OlePatronAffiliation> patronAffiliations = new ArrayList<OlePatronAffiliation>();
145 private List<OlePatronAffiliation> deletedPatronAffiliations = new ArrayList<OlePatronAffiliation>();
146 private List<EntityEmploymentBo> employments = new ArrayList<EntityEmploymentBo>();
147 private List<EntityEmploymentBo> deletedEmployments = new ArrayList<EntityEmploymentBo>();
148 private List<OleDeliverRequestBo> oleDeliverRequestBos = new ArrayList<OleDeliverRequestBo>();
149 private List<OleProxyPatronDocument> oleProxyPatronDocuments = new ArrayList<OleProxyPatronDocument>();
150 private List<OleProxyPatronDocument> deletedOleProxyPatronDocuments = new ArrayList<OleProxyPatronDocument>();
151 private List<OleTemporaryCirculationHistory> oleTemporaryCirculationHistoryRecords = new ArrayList<OleTemporaryCirculationHistory>();
152 private List<OlePatronLocalIdentificationBo> olePatronLocalIds = new ArrayList<OlePatronLocalIdentificationBo>();
153 private List<OlePatronLocalIdentificationBo> deletedOlePatronLocalIds = new ArrayList<OlePatronLocalIdentificationBo>();
154 private List<OleProxyPatronDocument> oleProxyPatronDocumentList = new ArrayList<OleProxyPatronDocument>();
155 private List<PatronBillPayment> patronBillPayments = new ArrayList<>();
156 private OLEPatronEntityViewBo olePatronEntityViewBo;
157 private String patronBillFileName;
158 private String viewBillUrl;
159 private String createBillUrl;
160 private String namePrefix;
161 private String nameSuffix;
162
163 public HashMap<String, String> getErrorsAndPermission() {
164 return errorsAndPermission;
165 }
166
167 public void setErrorsAndPermission(HashMap<String, String> errorsAndPermission) {
168 this.errorsAndPermission = errorsAndPermission;
169 }
170
171 public String getErrorMessage() {
172 return errorMessage;
173 }
174
175 public void setErrorMessage(String errorMessage) {
176 this.errorMessage = errorMessage;
177 }
178
179 public boolean isBlockPatron() {
180 return blockPatron;
181 }
182
183 public void setBlockPatron(boolean blockPatron) {
184 this.blockPatron = blockPatron;
185 }
186
187 public void setBorrowerTypeName(String borrowerTypeName) {
188 this.borrowerTypeName = borrowerTypeName;
189 }
190
191 private String patronName;
192
193 private String borrowerTypeCode;
194
195 public List<PatronBillPayment> getPatronBillPayments() {
196 if (CollectionUtils.isEmpty(patronBillPayments)) {
197 if (StringUtils.isNotEmpty(getOlePatronId())) {
198 if (StringUtils.isNotEmpty(getOlePatronId())) {
199 Map<String, String> parameterMap = new HashMap<>();
200 parameterMap.put("patronId", getOlePatronId());
201 List<PatronBillPayment> olePatronBillPaymentList = (List<PatronBillPayment>) KRADServiceLocator.getBusinessObjectService().findMatching(PatronBillPayment.class, parameterMap);
202 if (CollectionUtils.isNotEmpty(olePatronBillPaymentList)) {
203 patronBillPayments = olePatronBillPaymentList;
204 }
205 }
206 }
207 }
208 return patronBillPayments;
209 }
210
211 public void setPatronBillPayments(List<PatronBillPayment> patronBillPayments) {
212 this.patronBillPayments = patronBillPayments;
213 }
214
215 public int getNumberOfClaimsReturned() {
216 return numberOfClaimsReturned;
217 }
218
219 public void setNumberOfClaimsReturned(int numberOfClaimsReturned) {
220 this.numberOfClaimsReturned = numberOfClaimsReturned;
221 }
222
223 public String getBorrowerTypeCode() {
224 if (getOleBorrowerType() != null) {
225 return oleBorrowerType.getBorrowerTypeCode();
226 }
227 return borrowerTypeCode;
228 }
229
230 public void setBorrowerTypeCode(String borrowerTypeCode) {
231 this.borrowerTypeCode = borrowerTypeCode;
232 }
233
234 public boolean isSelfCheckOut() {
235 return selfCheckOut;
236 }
237
238 public void setSelfCheckOut(boolean selfCheckOut) {
239 this.selfCheckOut = selfCheckOut;
240 }
241
242 public String getPatronName() {
243 return patronName;
244 }
245
246 public void setPatronName(String patronName) {
247 this.patronName = patronName;
248 }
249
250 public OlePatronDocument() {
251 this.setActivationDate(new Date());
252 this.setDeliveryPrivilege(true);
253 this.setPagingPrivilege(true);
254 this.setCourtesyNotice(true);
255 this.setBarcodeEditable(true);
256 }
257
258 public boolean isUpload() {
259 return upload;
260 }
261
262 public void setUpload(boolean upload) {
263 this.upload = upload;
264 }
265
266 public List<OleTemporaryCirculationHistory> getOleTemporaryCirculationHistoryRecords() {
267 if (CollectionUtils.isEmpty(oleTemporaryCirculationHistoryRecords)) {
268 try {
269 oleTemporaryCirculationHistoryRecords = new OleLoanDocumentsFromSolrBuilder()
270 .getPatronTemporaryCirculationHistoryRecords(getOlePatronId());
271 } catch (Exception e) {
272 oleTemporaryCirculationHistoryRecords = new ArrayList<>();
273
274 LOG.error(e.getStackTrace());
275 }
276 }
277 return oleTemporaryCirculationHistoryRecords;
278 }
279
280
281
282 public List<OleTemporaryCirculationHistory> getOleTemporaryCirculationHistoryRecordsFromDB() {
283 if (CollectionUtils.isEmpty(oleTemporaryCirculationHistoryRecords)) {
284 if (StringUtils.isNotEmpty(getOlePatronId())) {
285 if (StringUtils.isNotEmpty(getOlePatronId())) {
286 Map<String, String> parameterMap = new HashMap<>();
287 parameterMap.put("olePatronId", getOlePatronId());
288 List<OleTemporaryCirculationHistory> oleTemporaryCirculationHistoryList = (List<OleTemporaryCirculationHistory>) KRADServiceLocator.getBusinessObjectService().findMatching(OleTemporaryCirculationHistory.class, parameterMap);
289 if (CollectionUtils.isNotEmpty(oleTemporaryCirculationHistoryList)) {
290 oleTemporaryCirculationHistoryRecords = oleTemporaryCirculationHistoryList;
291 }
292 }
293 }
294
295 }
296 return oleTemporaryCirculationHistoryRecords;
297 }
298
299 public void setOleTemporaryCirculationHistoryRecords(List<OleTemporaryCirculationHistory> oleTemporaryCirculationHistoryRecords) {
300 this.oleTemporaryCirculationHistoryRecords = oleTemporaryCirculationHistoryRecords;
301 }
302
303 public List<OleDeliverRequestBo> getOleDeliverRequestBos() {
304 if (CollectionUtils.isEmpty(oleDeliverRequestBos)) {
305 if (StringUtils.isNotEmpty(getOlePatronId())) {
306 if (StringUtils.isNotEmpty(getOlePatronId())) {
307 Map<String, String> parameterMap = new HashMap<>();
308 parameterMap.put("borrowerId", getOlePatronId());
309 List<OleDeliverRequestBo> oleDeliverRequestBoList = (List<OleDeliverRequestBo>) KRADServiceLocator.getBusinessObjectService().findMatching(OleDeliverRequestBo.class, parameterMap);
310 if (CollectionUtils.isNotEmpty(oleDeliverRequestBoList)) {
311 oleDeliverRequestBos = oleDeliverRequestBoList;
312 }
313 }
314 }
315 }
316 return oleDeliverRequestBos;
317 }
318
319 public void setOleDeliverRequestBos(List<OleDeliverRequestBo> oleDeliverRequestBos) {
320 this.oleDeliverRequestBos = oleDeliverRequestBos;
321 }
322
323
324
325
326
327
328
329 public static OlePatronDefinition to(org.kuali.ole.deliver.bo.OlePatronDocument bo) {
330 if (bo == null) {
331 return null;
332 }
333 return OlePatronDefinition.Builder.create(bo).build();
334 }
335
336
337
338
339
340
341
342 public static org.kuali.ole.deliver.bo.OlePatronDocument from(OlePatronDefinition immutable) {
343 return fromAndUpdate(immutable, null);
344 }
345
346
347
348
349
350
351
352
353 static org.kuali.ole.deliver.bo.OlePatronDocument fromAndUpdate(OlePatronDefinition immutable, org.kuali.ole.deliver.bo.OlePatronDocument toUpdate) {
354 if (immutable == null) {
355 return null;
356 }
357 org.kuali.ole.deliver.bo.OlePatronDocument bo = toUpdate;
358 if (toUpdate == null) {
359 bo = new org.kuali.ole.deliver.bo.OlePatronDocument();
360 }
361
362 bo.olePatronId = immutable.getOlePatronId();
363
364 bo.name = new EntityNameBo();
365
366 if (immutable.getName() != null) {
367 bo.name = EntityNameBo.from(immutable.getName());
368 }
369
370 bo.barcode = immutable.getBarcode();
371 bo.borrowerType = immutable.getBorrowerType();
372 bo.courtesyNotice = immutable.isCourtesyNotice();
373 bo.generalBlock = immutable.isGeneralBlock();
374 bo.deliveryPrivilege = immutable.isDeliveryPrivilege();
375 bo.pagingPrivilege = immutable.isPagingPrivilege();
376 bo.expirationDate = immutable.getExpirationDate();
377 bo.activationDate = immutable.getActivationDate();
378 bo.activeIndicator = immutable.isActiveIndicator();
379 bo.generalBlockNotes = immutable.getGeneralBlockNotes();
380 bo.source = immutable.getSource();
381 bo.statisticalCategory = immutable.getStatisticalCategory();
382
383
384
385
386
387
388
389
390
391 if (immutable.getEntity() != null) {
392 bo.entity = EntityBo.from(immutable.getEntity());
393 }
394 if (immutable.getOleBorrowerType() != null) {
395 bo.oleBorrowerType = OleBorrowerType.from(immutable.getOleBorrowerType());
396 }
397 if (CollectionUtils.isNotEmpty(immutable.getAddresses())) {
398 for (EntityAddress entityAddr : immutable.getAddresses()) {
399 bo.addresses.add(EntityAddressBo.from(entityAddr));
400 }
401 }
402 if (CollectionUtils.isNotEmpty(immutable.getEmails())) {
403 for (EntityEmail entityEmail : immutable.getEmails()) {
404 bo.emails.add(EntityEmailBo.from(entityEmail));
405 }
406 }
407 if (CollectionUtils.isNotEmpty(immutable.getPhones())) {
408 for (EntityPhone entityPhone : immutable.getPhones()) {
409 bo.phones.add(EntityPhoneBo.from(entityPhone));
410 }
411 }
412
413 if (CollectionUtils.isNotEmpty(immutable.getNotes())) {
414 for (OlePatronNotesDefinition note : immutable.getNotes()) {
415 bo.notes.add(OlePatronNotes.from(note));
416 }
417 }
418 if (CollectionUtils.isNotEmpty(immutable.getLostBarcodes())) {
419 for (OlePatronLostBarcodeDefinition lostBarcode : immutable.getLostBarcodes()) {
420 bo.lostBarcodes.add(OlePatronLostBarcode.from(lostBarcode));
421 }
422 }
423 if (CollectionUtils.isNotEmpty(immutable.getOleEntityAddressBo())) {
424 for (OleEntityAddressDefinition address : immutable.getOleEntityAddressBo()) {
425 bo.oleEntityAddressBo.add(OleEntityAddressBo.from(address));
426 }
427 }
428
429 if (CollectionUtils.isNotEmpty(immutable.getPatronAffiliations())) {
430 for (OlePatronAffiliationDefinition affiliation : immutable.getPatronAffiliations()) {
431 bo.patronAffiliations.add(OlePatronAffiliation.from(affiliation));
432 }
433 }
434 if (CollectionUtils.isNotEmpty(immutable.getOleProxyPatronDocuments())) {
435 for (OleProxyPatronDefinition proxyPatron : immutable.getOleProxyPatronDocuments()) {
436 bo.oleProxyPatronDocuments.add(OleProxyPatronDocument.from(proxyPatron));
437 }
438 }
439 if (CollectionUtils.isNotEmpty(immutable.getOleAddresses())) {
440 for (OleAddressDefinition oleAddress : immutable.getOleAddresses()) {
441 bo.oleAddresses.add(OleAddressBo.from(oleAddress));
442 }
443 }
444 if (CollectionUtils.isNotEmpty(immutable.getOlePatronLocalIds())) {
445 for (OlePatronLocalIdentificationDefinition olePatronLocalId : immutable.getOlePatronLocalIds()) {
446 bo.olePatronLocalIds.add(OlePatronLocalIdentificationBo.from(olePatronLocalId));
447 }
448 }
449
450 bo.versionNumber = immutable.getVersionNumber();
451
452 EntityBo entityBo = new EntityBo();
453 entityBo.setActive(true);
454
455 if (null != bo.getEntity()) {
456 entityBo = bo.getEntity();
457 entityBo.setActive(true);
458 }
459 if (CollectionUtils.isNotEmpty(immutable.getPatronAffiliations())) {
460 for (OlePatronAffiliationDefinition affiliation : immutable.getPatronAffiliations()) {
461 EntityAffiliationBo entityAffiliationBo = new EntityAffiliationBo();
462 entityAffiliationBo.setId(affiliation.getEntityAffiliationId());
463 entityAffiliationBo.setAffiliationTypeCode(affiliation.getAffiliationTypeCode());
464 entityAffiliationBo.setAffiliationType(EntityAffiliationTypeBo.from(affiliation.getAffiliationType()));
465 entityAffiliationBo.setActive(affiliation.isActive());
466 entityAffiliationBo.setDefaultValue(affiliation.isDefaultValue());
467 entityAffiliationBo.setCampusCode(affiliation.getCampusCode());
468 entityAffiliationBo.setObjectId(affiliation.getObjectId());
469 entityAffiliationBo.setVersionNumber(affiliation.getVersionNumber());
470 entityAffiliationBo.setEntityId(affiliation.getEntityId());
471
472 entityBo.getAffiliations().add(entityAffiliationBo);
473 for (EntityEmployment entityEmployment : affiliation.getEmployments()) {
474 entityBo.getEmploymentInformation().add(EntityEmploymentBo.from(entityEmployment));
475 }
476
477 bo.patronAffiliations.add(OlePatronAffiliation.from(affiliation));
478 }
479 }
480 entityBo.setNames(Arrays.asList(bo.getName()));
481 EntityTypeContactInfoBo entityTypeContactInfoBo = new EntityTypeContactInfoBo();
482 if (bo.getEntity() != null && null != bo.getEntity().getEntityTypeContactInfos() && bo.getEntity().getEntityTypeContactInfos().size() > 0) {
483 entityTypeContactInfoBo = bo.getEntity().getEntityTypeContactInfos().get(0);
484 }
485 entityTypeContactInfoBo.setAddresses(bo.getAddresses());
486 entityTypeContactInfoBo.setEmailAddresses(bo.getEmails());
487 entityTypeContactInfoBo.setPhoneNumbers(bo.getPhones());
488 entityTypeContactInfoBo.setEntityTypeCode(KimConstants.EntityTypes.PERSON);
489 entityBo.setEntityTypeContactInfos(Arrays.asList(entityTypeContactInfoBo));
490 bo.setEntity(entityBo);
491 return bo;
492 }
493
494 public boolean isRealPatronCheck() {
495 return realPatronCheck;
496 }
497
498 public void setRealPatronCheck(boolean realPatronCheck) {
499 this.realPatronCheck = realPatronCheck;
500 }
501
502
503
504
505
506
507 public List<OleLoanDocument> getOleLoanDocuments() {
508 if (CollectionUtils.isEmpty(oleLoanDocuments)) {
509 oleLoanDocuments = getOleLoanDocumentsFromSolr(getOlePatronId());
510 }
511 return oleLoanDocuments;
512 }
513
514
515
516 public List<OleLoanDocument> getOleLoanDocumentsFromDb() {
517 if (StringUtils.isNotEmpty(getOlePatronId())) {
518 if (StringUtils.isNotEmpty(getOlePatronId())) {
519 Map<String, String> parameterMap = new HashMap<>();
520 parameterMap.put("patronId", getOlePatronId());
521 List<OleLoanDocument> oleLoanDocumentList = (List<OleLoanDocument>) KRADServiceLocator.getBusinessObjectService().findMatching(OleLoanDocument.class, parameterMap);
522 if (CollectionUtils.isNotEmpty(oleLoanDocumentList)) {
523 oleLoanDocuments = oleLoanDocumentList;
524 }
525 }
526 }
527 return oleLoanDocuments;
528 }
529
530 public List<OleLoanDocument> getOleLoanDocumentsFromSolr(String patronId) {
531 List<OleLoanDocument> patronLoanedItemBySolr = new ArrayList<>();
532 try {
533 patronLoanedItemBySolr = new OleLoanDocumentsFromSolrBuilder().getPatronLoanedItemBySolr(patronId, null);
534 } catch (Exception e) {
535 e.printStackTrace();
536 }
537 return patronLoanedItemBySolr;
538
539 }
540
541
542
543
544
545
546 public void setOleLoanDocuments(List<OleLoanDocument> oleLoanDocuments) {
547 List<OleLoanDocument> LoanDocumentList = new ArrayList<>();
548 List<OleLoanDocument> indefiniteLoanDocumentList = new ArrayList<>();
549 for (OleLoanDocument loanDoc : oleLoanDocuments) {
550 if (loanDoc.getLoanDueDate() != null && !(loanDoc.getLoanDueDate().toString().isEmpty())) {
551 LoanDocumentList.add(loanDoc);
552 } else {
553
554 indefiniteLoanDocumentList.add(loanDoc);
555 }
556 }
557 Collections.sort(LoanDocumentList, new Comparator<OleLoanDocument>() {
558 public int compare(OleLoanDocument o1, OleLoanDocument o2) {
559 return o1.getLoanDueDate().compareTo(o2.getLoanDueDate());
560 }
561 });
562 LoanDocumentList.addAll(indefiniteLoanDocumentList);
563 this.oleLoanDocuments = LoanDocumentList;
564 }
565
566
567
568
569
570
571 public String getBorrowerTypeName() {
572 if (getOleBorrowerType() != null) {
573 return oleBorrowerType.getBorrowerTypeName();
574 }
575 return null;
576 }
577
578
579
580
581
582
583 public EntityBo getEntity() {
584 if (getOlePatronId() != null) {
585 EntityBo entityBo = (EntityBo) EntityBo.from( getIdentityService().getEntity(getOlePatronId()));
586 if(entityBo!=null){
587 return entityBo;
588 }
589
590 return entity;
591 } else {
592 return entity;
593 }
594 }
595
596
597
598
599
600
601 public void setEntity(EntityBo entity) {
602 this.entity = entity;
603 }
604
605 public String getAffiliationType() {
606 return affiliationType;
607 }
608
609 public void setAffiliationType(String affiliationType) {
610 this.affiliationType = affiliationType;
611 }
612
613
614
615
616
617
618 public List<OlePatronNotes> getNotes() {
619 if (StringUtils.isNotEmpty(getOlePatronId())) {
620 if (StringUtils.isNotEmpty(getOlePatronId())) {
621 Map<String, String> parameterMap = new HashMap<>();
622 parameterMap.put("olePatronId", getOlePatronId());
623 List<OlePatronNotes> olePatronNotesList = (List<OlePatronNotes>) KRADServiceLocator.getBusinessObjectService().findMatching(OlePatronNotes.class, parameterMap);
624 if (CollectionUtils.isNotEmpty(olePatronNotesList)) {
625 notes = olePatronNotesList;
626 }
627 }
628 }
629 return notes;
630 }
631
632
633
634
635
636
637 public void setNotes(List<OlePatronNotes> notes) {
638 this.notes = notes;
639 }
640
641
642
643
644
645
646 public String getBarcode() {
647 return barcode;
648 }
649
650
651
652
653
654
655 public void setBarcode(String barcode) {
656 this.barcode = barcode;
657 }
658
659
660
661
662
663
664 public String getBorrowerType() {
665 return borrowerType;
666 }
667
668
669
670
671
672
673 public void setBorrowerType(String borrowerType) {
674 this.borrowerType = borrowerType;
675 }
676
677
678
679
680
681
682 public boolean isActiveIndicator() {
683 return activeIndicator;
684 }
685
686
687
688
689
690
691 public void setActiveIndicator(boolean activeIndicator) {
692 this.activeIndicator = activeIndicator;
693 }
694
695
696
697
698
699
700 public String getOlePatronId() {
701 return olePatronId;
702 }
703
704
705
706
707
708
709 public void setOlePatronId(String olePatronId) {
710 this.olePatronId = olePatronId;
711 }
712
713
714
715
716
717
718 public boolean isGeneralBlock() {
719 return generalBlock;
720 }
721
722
723
724
725
726
727 public void setGeneralBlock(boolean generalBlock) {
728 this.generalBlock = generalBlock;
729 }
730
731
732
733
734
735
736 public boolean isCourtesyNotice() {
737 return courtesyNotice;
738 }
739
740
741
742
743
744
745 public void setCourtesyNotice(boolean courtesyNotice) {
746 this.courtesyNotice = courtesyNotice;
747 }
748
749
750
751
752
753
754 public boolean isDeliveryPrivilege() {
755 return deliveryPrivilege;
756 }
757
758
759
760
761
762
763 public void setDeliveryPrivilege(boolean deliveryPrivilege) {
764 this.deliveryPrivilege = deliveryPrivilege;
765 }
766
767
768
769
770
771
772 public boolean isPagingPrivilege() {
773 return pagingPrivilege;
774 }
775
776
777
778
779
780
781 public void setPagingPrivilege(boolean pagingPrivilege) {
782 this.pagingPrivilege = pagingPrivilege;
783 }
784
785
786
787
788
789
790 public Date getExpirationDate() {
791 return expirationDate;
792 }
793
794
795
796
797
798
799 public void setExpirationDate(Date expirationDate) {
800 this.expirationDate = expirationDate;
801 }
802
803
804
805
806
807
808 public String getFirstName() {
809 return firstName;
810 }
811
812
813
814
815
816
817 public void setFirstName(String firstName) {
818 this.firstName = firstName;
819 }
820
821
822
823
824
825
826 public String getMiddleName() {
827 return middleName;
828 }
829
830
831
832
833
834
835 public void setMiddleName(String middleName) {
836 this.middleName = middleName;
837 }
838
839
840
841
842
843
844 public String getLastName() {
845 return lastName;
846 }
847
848
849
850
851
852
853 public void setLastName(String lastName) {
854 this.lastName = lastName;
855 }
856
857
858
859
860
861
862 public String getEmailAddress() {
863 return emailAddress;
864 }
865
866
867
868
869
870
871 public void setEmailAddress(String emailAddress) {
872 this.emailAddress = emailAddress;
873 }
874
875
876
877
878
879
880 public String getPhoneNumber() {
881 return phoneNumber;
882 }
883
884
885
886
887
888
889 public void setPhoneNumber(String phoneNumber) {
890 this.phoneNumber = phoneNumber;
891 }
892
893
894
895
896
897
898 public List<EntityPhoneBo> getPhones() {
899 return phones;
900 }
901
902
903
904
905
906
907 public void setPhones(List<EntityPhoneBo> phones) {
908 this.phones = phones;
909 }
910
911
912
913
914
915
916 public List<EntityAddressBo> getAddresses() {
917 return addresses;
918 }
919
920
921
922
923
924
925 public void setAddresses(List<EntityAddressBo> addresses) {
926 this.addresses = addresses;
927 }
928
929
930
931
932
933
934 public EntityNameBo getName() {
935 return name;
936 }
937
938
939
940
941
942
943 public void setName(EntityNameBo name) {
944 this.name = name;
945 }
946
947
948
949
950
951
952 public List<EntityEmailBo> getEmails() {
953 return emails;
954 }
955
956
957
958
959
960
961 public void setEmails(List<EntityEmailBo> emails) {
962 this.emails = emails;
963 }
964
965
966
967
968
969
970 public OleBorrowerType getOleBorrowerType() {
971 if (null == oleBorrowerType) {
972 if (StringUtils.isNotEmpty(getBorrowerType())) {
973 String borrowerTypeId = getBorrowerType();
974 if (StringUtils.isNotEmpty(borrowerTypeId)) {
975 Map<String, String> parameterMap = new HashMap<>();
976 parameterMap.put("borrowerTypeId", borrowerTypeId);
977 List<OleBorrowerType> oleBorrowerTypeList = (List<OleBorrowerType>) KRADServiceLocator.getBusinessObjectService().findMatching(OleBorrowerType.class, parameterMap);
978 if (CollectionUtils.isNotEmpty(oleBorrowerTypeList)) {
979 oleBorrowerType = oleBorrowerTypeList.get(0);
980 }
981 }
982 }
983 }
984 return oleBorrowerType;
985 }
986
987
988
989
990
991
992 public void setOleBorrowerType(OleBorrowerType oleBorrowerType) {
993 this.oleBorrowerType = oleBorrowerType;
994 }
995
996
997
998
999
1000
1001 public String getProcessMessage() {
1002 return processMessage;
1003 }
1004
1005
1006
1007
1008
1009
1010 public void setProcessMessage(String processMessage) {
1011 this.processMessage = processMessage;
1012 }
1013
1014 protected LinkedHashMap toStringMapper() {
1015 LinkedHashMap toStringMap = new LinkedHashMap();
1016 toStringMap.put("olePatronId", olePatronId);
1017 return toStringMap;
1018 }
1019
1020
1021
1022
1023
1024
1025 @Override
1026 public String getId() {
1027 return this.getOlePatronId();
1028 }
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049 public String getProxyPatronId() {
1050 return proxyPatronId;
1051 }
1052
1053
1054
1055
1056
1057
1058 public void setProxyPatronId(String proxyPatronId) {
1059 this.proxyPatronId = proxyPatronId;
1060 }
1061
1062
1063
1064
1065
1066
1067 public List<OleProxyPatronDocument> getOleProxyPatronDocuments() {
1068 if (CollectionUtils.isEmpty(oleProxyPatronDocuments)) {
1069 if (StringUtils.isNotEmpty(getOlePatronId())) {
1070 if (StringUtils.isNotEmpty(getOlePatronId())) {
1071 Map<String, String> parameterMap = new HashMap<>();
1072 parameterMap.put("olePatronId", getOlePatronId());
1073 List<OleProxyPatronDocument> proxyPatronDocumentLists = (List<OleProxyPatronDocument>) KRADServiceLocator.getBusinessObjectService().findMatching(OleProxyPatronDocument.class, parameterMap);
1074 if (CollectionUtils.isNotEmpty(proxyPatronDocumentLists)) {
1075 oleProxyPatronDocuments = proxyPatronDocumentLists;
1076 }
1077 }
1078 }
1079 }
1080 return oleProxyPatronDocuments;
1081 }
1082
1083
1084
1085
1086
1087
1088 public void setOleProxyPatronDocuments(List<OleProxyPatronDocument> oleProxyPatronDocuments) {
1089 this.oleProxyPatronDocuments = oleProxyPatronDocuments;
1090 }
1091
1092
1093
1094
1095
1096
1097 public Date getActivationDate() {
1098 return activationDate;
1099 }
1100
1101
1102
1103
1104
1105
1106 public void setActivationDate(Date activationDate) {
1107 this.activationDate = activationDate;
1108 }
1109
1110
1111
1112
1113
1114
1115 public String getGeneralBlockNotes() {
1116 return generalBlockNotes;
1117 }
1118
1119
1120
1121
1122
1123
1124 public void setGeneralBlockNotes(String generalBlockNotes) {
1125 this.generalBlockNotes = generalBlockNotes;
1126 }
1127
1128
1129
1130
1131
1132
1133 public List<OleEntityAddressBo> getOleEntityAddressBo() {
1134 return oleEntityAddressBo;
1135 }
1136
1137
1138
1139
1140
1141
1142 public void setOleEntityAddressBo(List<OleEntityAddressBo> oleEntityAddressBo) {
1143 this.oleEntityAddressBo = oleEntityAddressBo;
1144 }
1145
1146
1147
1148
1149
1150
1151 public List<OlePatronAffiliation> getPatronAffiliations() {
1152 return patronAffiliations;
1153 }
1154
1155
1156
1157
1158
1159
1160 public void setPatronAffiliations(List<OlePatronAffiliation> patronAffiliations) {
1161 this.patronAffiliations = patronAffiliations;
1162 }
1163
1164
1165
1166
1167
1168
1169 public OleSourceBo getSourceBo() {
1170 if (null == sourceBo) {
1171 if (StringUtils.isNotEmpty(getSource())) {
1172 if (StringUtils.isNotEmpty(getSource())) {
1173 Map<String, String> parameterMap = new HashMap<>();
1174 parameterMap.put("oleSourceId", getSource());
1175 List<OleSourceBo> oleSourceBoList = (List<OleSourceBo>) KRADServiceLocator.getBusinessObjectService().findMatching(OleSourceBo.class, parameterMap);
1176 if (CollectionUtils.isNotEmpty(oleSourceBoList)) {
1177 sourceBo = oleSourceBoList.get(0);
1178 }
1179 }
1180 }
1181 }
1182 return sourceBo;
1183 }
1184
1185
1186
1187
1188
1189
1190 public void setSourceBo(OleSourceBo sourceBo) {
1191 this.sourceBo = sourceBo;
1192 }
1193
1194
1195
1196
1197
1198
1199 public OleStatisticalCategoryBo getStatisticalCategoryBo() {
1200 if (null == statisticalCategoryBo) {
1201 if (StringUtils.isNotEmpty(getStatisticalCategory())) {
1202 if (StringUtils.isNotEmpty(getStatisticalCategory())) {
1203 Map<String, String> parameterMap = new HashMap<>();
1204 parameterMap.put("oleStatisticalCategoryId", getStatisticalCategory());
1205 List<OleStatisticalCategoryBo> oleStatisticalCategoryBoList = (List<OleStatisticalCategoryBo>) KRADServiceLocator.getBusinessObjectService().findMatching(OleStatisticalCategoryBo.class, parameterMap);
1206 if (CollectionUtils.isNotEmpty(oleStatisticalCategoryBoList)) {
1207 statisticalCategoryBo = oleStatisticalCategoryBoList.get(0);
1208 }
1209 }
1210 }
1211 }
1212 return statisticalCategoryBo;
1213 }
1214
1215
1216
1217
1218
1219
1220 public void setStatisticalCategoryBo(OleStatisticalCategoryBo statisticalCategoryBo) {
1221 this.statisticalCategoryBo = statisticalCategoryBo;
1222 }
1223
1224
1225
1226
1227
1228
1229 public List<EntityEmploymentBo> getEmployments() {
1230 return employments;
1231 }
1232
1233 public void setEmployments(List<EntityEmploymentBo> employments) {
1234 this.employments = employments;
1235 }
1236
1237
1238
1239
1240
1241
1242 public String getSource() {
1243 return source;
1244 }
1245
1246 public void setSource(String source) {
1247 if (source != null && source.equals("")) {
1248 this.source = null;
1249 } else {
1250 this.source = source;
1251 }
1252 }
1253
1254
1255
1256
1257
1258
1259 public String getStatisticalCategory() {
1260 return statisticalCategory;
1261 }
1262
1263 public void setStatisticalCategory(String statisticalCategory) {
1264 if (statisticalCategory != null && statisticalCategory.equals("")) {
1265 this.statisticalCategory = null;
1266 } else {
1267 this.statisticalCategory = statisticalCategory;
1268 }
1269 }
1270
1271
1272
1273
1274
1275
1276 public String getOleSourceName() {
1277 if (sourceBo != null) {
1278 return sourceBo.getOleSourceName();
1279 }
1280 return null;
1281 }
1282
1283
1284
1285
1286
1287
1288 public String getOleStatisticalCategoryName() {
1289 if (statisticalCategoryBo != null) {
1290 return statisticalCategoryBo.getOleStatisticalCategoryName();
1291 }
1292 return null;
1293 }
1294
1295
1296
1297
1298
1299
1300 public boolean isPatronBillFlag() {
1301 return patronBillFlag;
1302 }
1303
1304
1305
1306
1307
1308
1309 public void setPatronBillFlag(boolean patronBillFlag) {
1310 this.patronBillFlag = patronBillFlag;
1311 }
1312
1313 public List<OlePatronLostBarcode> getLostBarcodes() {
1314 if (CollectionUtils.isEmpty(lostBarcodes)) {
1315 if (StringUtils.isNotEmpty(getOlePatronId())) {
1316 if (StringUtils.isNotEmpty(getOlePatronId())) {
1317 Map<String, String> parameterMap = new HashMap<>();
1318 parameterMap.put("olePatronId", getOlePatronId());
1319 List<OlePatronLostBarcode> olePatronLostBarcodeList = (List<OlePatronLostBarcode>) KRADServiceLocator.getBusinessObjectService().findMatching(OlePatronLostBarcode.class, parameterMap);
1320 if (CollectionUtils.isNotEmpty(olePatronLostBarcodeList)) {
1321 lostBarcodes = olePatronLostBarcodeList;
1322 }
1323 }
1324 }
1325 }
1326 return lostBarcodes;
1327 }
1328
1329 public void setLostBarcodes(List<OlePatronLostBarcode> lostBarcodes) {
1330 this.lostBarcodes = lostBarcodes;
1331 }
1332
1333 public List<OleAddressBo> getOleAddresses() {
1334 if (CollectionUtils.isEmpty(oleAddresses)) {
1335 if (StringUtils.isNotEmpty(getOlePatronId())) {
1336 if (StringUtils.isNotEmpty(getOlePatronId())) {
1337 Map<String, String> parameterMap = new HashMap<>();
1338 parameterMap.put("olePatronId", getOlePatronId());
1339 List<OleAddressBo> oleAddressBos = (List<OleAddressBo>) KRADServiceLocator.getBusinessObjectService().findMatching(OleAddressBo.class, parameterMap);
1340 if (CollectionUtils.isNotEmpty(oleAddressBos)) {
1341 oleAddresses = oleAddressBos;
1342 }
1343 }
1344 }
1345 }
1346 return oleAddresses;
1347 }
1348
1349 public void setOleAddresses(List<OleAddressBo> oleAddresses) {
1350 this.oleAddresses = oleAddresses;
1351 }
1352
1353 public byte[] getPatronPhotograph() {
1354 return patronPhotograph;
1355 }
1356
1357 public void setPatronPhotograph(byte[] patronPhotograph) {
1358 this.patronPhotograph = patronPhotograph;
1359 }
1360
1361 public List<OlePatronLocalIdentificationBo> getOlePatronLocalIds() {
1362 if (CollectionUtils.isEmpty(olePatronLocalIds)) {
1363 if (StringUtils.isNotEmpty(getOlePatronId())) {
1364 if (StringUtils.isNotEmpty(getOlePatronId())) {
1365 Map<String, String> parameterMap = new HashMap<>();
1366 parameterMap.put("olePatronId", getOlePatronId());
1367 List<OlePatronLocalIdentificationBo> olePatronLocalIdentificationBoList = (List<OlePatronLocalIdentificationBo>) KRADServiceLocator.getBusinessObjectService().findMatching(OlePatronLocalIdentificationBo.class, parameterMap);
1368 if (CollectionUtils.isNotEmpty(olePatronLocalIdentificationBoList)) {
1369 olePatronLocalIds = olePatronLocalIdentificationBoList;
1370 }
1371 }
1372 }
1373 }
1374 return olePatronLocalIds;
1375 }
1376
1377 public void setOlePatronLocalIds(List<OlePatronLocalIdentificationBo> olePatronLocalIds) {
1378 this.olePatronLocalIds = olePatronLocalIds;
1379 }
1380
1381 public boolean isLoanFlag() {
1382 return loanFlag;
1383 }
1384
1385 public void setLoanFlag(boolean loanFlag) {
1386 this.loanFlag = loanFlag;
1387 }
1388
1389 public boolean isTempCircHistoryFlag() {
1390 return tempCircHistoryFlag;
1391 }
1392
1393 public void setTempCircHistoryFlag(boolean tempCircHistoryFlag) {
1394 this.tempCircHistoryFlag = tempCircHistoryFlag;
1395 }
1396
1397 public boolean isRequestFlag() {
1398 return requestFlag;
1399 }
1400
1401 public void setRequestFlag(boolean requestFlag) {
1402 this.requestFlag = requestFlag;
1403 }
1404
1405 public List<OleProxyPatronDocument> getOleProxyPatronDocumentList() {
1406 if (CollectionUtils.isEmpty(oleProxyPatronDocumentList)) {
1407 if (StringUtils.isNotEmpty(getOlePatronId())) {
1408 if (StringUtils.isNotEmpty(getOlePatronId())) {
1409 Map<String, String> parameterMap = new HashMap<>();
1410 parameterMap.put("proxyPatronId", getOlePatronId());
1411 List<OleProxyPatronDocument> oleProxyPatronDocuments = (List<OleProxyPatronDocument>) KRADServiceLocator.getBusinessObjectService().findMatching(OleProxyPatronDocument.class, parameterMap);
1412 if (CollectionUtils.isNotEmpty(oleProxyPatronDocuments)) {
1413 oleProxyPatronDocumentList = oleProxyPatronDocuments;
1414 }
1415 }
1416 }
1417 }
1418 return oleProxyPatronDocumentList;
1419 }
1420
1421 public void setOleProxyPatronDocumentList(List<OleProxyPatronDocument> oleProxyPatronDocumentList) {
1422 this.oleProxyPatronDocumentList = oleProxyPatronDocumentList;
1423 }
1424
1425 public boolean isPointing() {
1426 return pointing;
1427 }
1428
1429 public void setPointing(boolean pointing) {
1430 this.pointing = pointing;
1431 }
1432
1433 public boolean isStartingIndexExecuted() {
1434 return startingIndexExecuted;
1435 }
1436
1437 public void setStartingIndexExecuted(boolean startingIndexExecuted) {
1438 this.startingIndexExecuted = startingIndexExecuted;
1439 }
1440
1441 public boolean isActivateBarcode() {
1442 return activateBarcode;
1443 }
1444
1445 public void setActivateBarcode(boolean activateBarcode) {
1446 this.activateBarcode = activateBarcode;
1447 }
1448
1449 public boolean isDeactivateBarcode() {
1450 return deactivateBarcode;
1451 }
1452
1453 public void setDeactivateBarcode(boolean deactivateBarcode) {
1454 this.deactivateBarcode = deactivateBarcode;
1455 }
1456
1457 public String getLostStatus() {
1458 return lostStatus;
1459 }
1460
1461 public void setLostStatus(String lostStatus) {
1462 this.lostStatus = lostStatus;
1463 }
1464
1465 public String getLostDescription() {
1466 return lostDescription;
1467 }
1468
1469 public void setLostDescription(String lostDescription) {
1470 this.lostDescription = lostDescription;
1471 }
1472
1473 public boolean isInvalidateBarcode() {
1474 return invalidateBarcode;
1475 }
1476
1477 public void setInvalidateBarcode(boolean invalidateBarcode) {
1478 this.invalidateBarcode = invalidateBarcode;
1479 }
1480
1481 public boolean isReinstateBarcode() {
1482 return reinstateBarcode;
1483 }
1484
1485 public void setReinstateBarcode(boolean reinstateBarcode) {
1486 this.reinstateBarcode = reinstateBarcode;
1487 }
1488
1489 public boolean isSkipBarcodeValidation() {
1490 return skipBarcodeValidation;
1491 }
1492
1493 public void setSkipBarcodeValidation(boolean skipBarcodeValidation) {
1494 this.skipBarcodeValidation = skipBarcodeValidation;
1495 }
1496
1497 public boolean isBarcodeChanged() {
1498 return barcodeChanged;
1499 }
1500
1501 public void setBarcodeChanged(boolean barcodeChanged) {
1502 this.barcodeChanged = barcodeChanged;
1503 }
1504
1505 public boolean isBarcodeEditable() {
1506 return barcodeEditable;
1507 }
1508
1509 public void setBarcodeEditable(boolean barcodeEditable) {
1510 this.barcodeEditable = barcodeEditable;
1511 }
1512
1513 public boolean isPopupDialog() {
1514 return popupDialog;
1515 }
1516
1517 public void setPopupDialog(boolean popupDialog) {
1518 this.popupDialog = popupDialog;
1519 }
1520
1521 public String getPatronMessage() {
1522 return patronMessage;
1523 }
1524
1525 public void setPatronMessage(String patronMessage) {
1526 this.patronMessage = patronMessage;
1527 }
1528
1529 public String getUiMessageType() {
1530 return uiMessageType;
1531 }
1532
1533 public void setUiMessageType(String uiMessageType) {
1534 this.uiMessageType = uiMessageType;
1535 }
1536
1537 public boolean isReinstated() {
1538 return reinstated;
1539 }
1540
1541 public void setReinstated(boolean reinstated) {
1542 this.reinstated = reinstated;
1543 }
1544
1545 public OLEPatronEntityViewBo getOlePatronEntityViewBo() {
1546 if (null == olePatronEntityViewBo) {
1547 if (StringUtils.isNotEmpty(getOlePatronId())) {
1548 if (StringUtils.isNotEmpty(getOlePatronId())) {
1549 Map<String, String> parameterMap = new HashMap<>();
1550 parameterMap.put("patronId", getOlePatronId());
1551 List<OLEPatronEntityViewBo> olePatronEntityViewBoList = (List<OLEPatronEntityViewBo>) KRADServiceLocator.getBusinessObjectService().findMatching(OLEPatronEntityViewBo.class, parameterMap);
1552 if (CollectionUtils.isNotEmpty(olePatronEntityViewBoList)) {
1553 olePatronEntityViewBo = olePatronEntityViewBoList.get(0);
1554 }
1555 }
1556 }
1557 }
1558 return olePatronEntityViewBo;
1559 }
1560
1561 public void setOlePatronEntityViewBo(OLEPatronEntityViewBo olePatronEntityViewBo) {
1562 this.olePatronEntityViewBo = olePatronEntityViewBo;
1563 }
1564
1565 public String getPatronBillFileName() {
1566 return patronBillFileName;
1567 }
1568
1569 public void setPatronBillFileName(String patronBillFileName) {
1570 this.patronBillFileName = patronBillFileName;
1571 }
1572
1573 public String getViewBillUrl() {
1574 return viewBillUrl;
1575 }
1576
1577 public void setViewBillUrl(String viewBillUrl) {
1578 this.viewBillUrl = viewBillUrl;
1579 }
1580
1581 public String getCreateBillUrl() {
1582 return createBillUrl;
1583 }
1584
1585 public void setCreateBillUrl(String createBillUrl) {
1586 this.createBillUrl = createBillUrl;
1587 }
1588
1589 public String getNamePrefix() {
1590 return namePrefix;
1591 }
1592
1593 public void setNamePrefix(String namePrefix) {
1594 this.namePrefix = namePrefix;
1595 }
1596
1597 public String getNameSuffix() {
1598 return nameSuffix;
1599 }
1600
1601 public void setNameSuffix(String nameSuffix) {
1602 this.nameSuffix = nameSuffix;
1603 }
1604
1605 public List<EntityPhoneBo> getDeletedPhones() {
1606 return deletedPhones;
1607 }
1608
1609 public void setDeletedPhones(List<EntityPhoneBo> deletedPhones) {
1610 this.deletedPhones = deletedPhones;
1611 }
1612
1613 public List<OleEntityAddressBo> getDeletedOleEntityAddressBo() {
1614 return deletedOleEntityAddressBo;
1615 }
1616
1617 public void setDeletedOleEntityAddressBo(List<OleEntityAddressBo> deletedOleEntityAddressBo) {
1618 this.deletedOleEntityAddressBo = deletedOleEntityAddressBo;
1619 }
1620
1621 public List<EntityEmailBo> getDeletedEmails() {
1622 return deletedEmails;
1623 }
1624
1625 public void setDeletedEmails(List<EntityEmailBo> deletedEmails) {
1626 this.deletedEmails = deletedEmails;
1627 }
1628
1629 public List<OleProxyPatronDocument> getDeletedOleProxyPatronDocuments() {
1630 return deletedOleProxyPatronDocuments;
1631 }
1632
1633 public void setDeletedOleProxyPatronDocuments(List<OleProxyPatronDocument> deletedOleProxyPatronDocuments) {
1634 this.deletedOleProxyPatronDocuments = deletedOleProxyPatronDocuments;
1635 }
1636
1637 public List<OlePatronAffiliation> getDeletedPatronAffiliations() {
1638 return deletedPatronAffiliations;
1639 }
1640
1641 public void setDeletedPatronAffiliations(List<OlePatronAffiliation> deletedPatronAffiliations) {
1642 this.deletedPatronAffiliations = deletedPatronAffiliations;
1643 }
1644
1645 public List<EntityEmploymentBo> getDeletedEmployments() {
1646 return deletedEmployments;
1647 }
1648
1649 public void setDeletedEmployments(List<EntityEmploymentBo> deletedEmployments) {
1650 this.deletedEmployments = deletedEmployments;
1651 }
1652
1653 public List<OlePatronNotes> getDeletedNotes() {
1654 return deletedNotes;
1655 }
1656
1657 public void setDeletedNotes(List<OlePatronNotes> deletedNotes) {
1658 this.deletedNotes = deletedNotes;
1659 }
1660
1661 public List<OlePatronLocalIdentificationBo> getDeletedOlePatronLocalIds() {
1662 return deletedOlePatronLocalIds;
1663 }
1664
1665 public void setDeletedOlePatronLocalIds(List<OlePatronLocalIdentificationBo> deletedOlePatronLocalIds) {
1666 this.deletedOlePatronLocalIds = deletedOlePatronLocalIds;
1667 }
1668
1669 public boolean isShowLoanedRecords() {
1670 return showLoanedRecords;
1671 }
1672
1673 public void setShowLoanedRecords(boolean showLoanedRecords) {
1674 this.showLoanedRecords = showLoanedRecords;
1675 }
1676
1677 public boolean isShowRequestedItems() {
1678 return showRequestedItems;
1679 }
1680
1681 public void setShowRequestedItems(boolean showRequestedItems) {
1682 this.showRequestedItems = showRequestedItems;
1683 }
1684
1685 public boolean isShowTemporaryCirculationHistoryRecords() {
1686 return showTemporaryCirculationHistoryRecords;
1687 }
1688
1689 public void setShowTemporaryCirculationHistoryRecords(boolean showTemporaryCirculationHistoryRecords) {
1690 this.showTemporaryCirculationHistoryRecords = showTemporaryCirculationHistoryRecords;
1691 }
1692
1693 public String getRealPatronFirstName() {
1694 if(entity!=null && entity.getNames()!=null && entity.getNames().size()>0){
1695 this.realPatronFirstName=entity.getNames().get(0).getFirstName().replaceAll("'", "\'");
1696 }
1697 return realPatronFirstName;
1698 }
1699
1700 public void setRealPatronFirstName(String realPatronFirstName) {
1701 this.realPatronFirstName = realPatronFirstName;
1702 }
1703
1704 public String getRealPatronLastName() {
1705 if(entity!=null && entity.getNames()!=null && entity.getNames().size()>0){
1706 this.realPatronLastName=entity.getNames().get(0).getLastName().replaceAll("'", "\'");
1707 }
1708 return realPatronLastName;
1709 }
1710
1711 public void setRealPatronLastName(String realPatronLastName) {
1712 this.realPatronLastName = realPatronLastName;
1713 }
1714
1715 public int getLoanCount() {
1716 return loanCount;
1717 }
1718
1719 public void setLoanCount(int loanCount) {
1720 this.loanCount = loanCount;
1721 }
1722
1723 public int getRequestedItemRecordsCount() {
1724 return requestedItemRecordsCount;
1725 }
1726
1727 public void setRequestedItemRecordsCount(int requestedItemRecordsCount) {
1728 this.requestedItemRecordsCount = requestedItemRecordsCount;
1729 }
1730
1731 public int getTempCirculationHistoryCount() {
1732 return tempCirculationHistoryCount;
1733 }
1734
1735 public void setTempCirculationHistoryCount(int tempCirculationHistoryCount) {
1736 this.tempCirculationHistoryCount = tempCirculationHistoryCount;
1737 }
1738
1739 public boolean isDeleteImageFlag() {
1740 return deleteImageFlag;
1741 }
1742
1743 public void setDeleteImageFlag(boolean deleteImageFlag) {
1744 this.deleteImageFlag = deleteImageFlag;
1745 }
1746
1747 public String getLostOperatorId() {
1748 return lostOperatorId;
1749 }
1750
1751 public void setLostOperatorId(String lostOperatorId) {
1752 this.lostOperatorId = lostOperatorId;
1753 }
1754 }