From 2832b750f0561da83228a3f07e4ba16e7f631bf3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org> Date: Mon, 8 Aug 2016 18:10:15 +0200 Subject: [PATCH] Continued a bit: (please cherry-pick) - also here use isEmpty() --- .../contact/phone/JobsContactPhoneWebSessionBean.java | 9 +++++++++ web/admin/cellphone/admin_contact_cellphone_list.xhtml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/java/org/mxchange/jjobs/beans/contact/phone/JobsContactPhoneWebSessionBean.java b/src/java/org/mxchange/jjobs/beans/contact/phone/JobsContactPhoneWebSessionBean.java index f3292cc1..9a258905 100644 --- a/src/java/org/mxchange/jjobs/beans/contact/phone/JobsContactPhoneWebSessionBean.java +++ b/src/java/org/mxchange/jjobs/beans/contact/phone/JobsContactPhoneWebSessionBean.java @@ -121,6 +121,15 @@ public class JobsContactPhoneWebSessionBean extends BaseJobsController implement throw new IllegalArgumentException(MessageFormat.format("event.addedContact.contactId={0} is not valid", event.getAddedContact().getContactId())); //NOI18N //NOI18N } + // Get contact + Contact contact = event.getAddedContact(); + + // Is cellphone set? + if (contact.getContactCellphoneNumber() instanceof DialableCellphoneNumber) { + // Unique-add it + this.uniqueAddCellphoneNumber(contact.getContactCellphoneNumber()); + } + // Clear this bean this.clear(); } diff --git a/web/admin/cellphone/admin_contact_cellphone_list.xhtml b/web/admin/cellphone/admin_contact_cellphone_list.xhtml index e3e4aa93..b319d1e6 100644 --- a/web/admin/cellphone/admin_contact_cellphone_list.xhtml +++ b/web/admin/cellphone/admin_contact_cellphone_list.xhtml @@ -15,7 +15,7 @@ </ui:define> <ui:define name="content"> - <h:dataTable id="table_list_cellphones" var="cellphone" value="#{phoneController.allCellphones()}" styleClass="table_big" headerClass="table_header_column" summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_CELLPHONES}" rendered="#{phoneController.hasCellphones()}"> + <h:dataTable id="table_list_cellphones" var="cellphone" value="#{phoneController.allCellphones()}" styleClass="table_big" headerClass="table_header_column" summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_CELLPHONES}" rendered="#{not phoneController.allCellphones().isEmpty()}"> <h:column> <f:facet name="header"> <h:outputText value="#{msg.ADMIN_SHOW_CELLPHONE_ID}" /> -- 2.39.5