]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Tue, 6 Oct 2015 11:57:34 +0000 (13:57 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 6 Oct 2015 11:57:34 +0000 (13:57 +0200)
- removed companyName field as this will be part in jcontacts-business-core
- updated jars
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcontacts-core.jar
src/java/org/mxchange/localization/bundle_de_DE.properties
src/java/org/mxchange/localization/bundle_en_US.properties
src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebBean.java
src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebController.java
web/WEB-INF/templates/guest/guest_personal_data.tpl

index 116c3511fbfe8d060114a5877f2f106b1b8c157b..5fd68dc8f80098600ff320c77eef156f7e79d9d2 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index 1ad620cf92486b31609c990c9c812d76e1586076..a26d64593448fb76217dba33afac0db1187e6c9d 100644 (file)
@@ -126,7 +126,6 @@ PRIVACY_POLICY_NOT_ACCEPTED_MESSAGE=Bitte den Datenschutzbestimmungen zustimmen.
 TERMS_NOT_ACCEPTED_MESSAGE=Bitte den AGBs zustimmen.
 PERSONAL_DATA_MINIMUM_NOTICE=Bitte geben Sie mindestens Name, Anschrift und Telefonnummer an.
 PERSONAL_DATA_GENDER=Anrede:
-PERSONAL_DATA_COMPANY_NAME=Firmenname:
 PERSONAL_DATA_FIRST_NAME=Vorname:
 PERSONAL_DATA_FAMILY_NAME=Nachname:
 PERSONAL_DATA_STREET=Stra\u00dfe:
index 4e113ca2aad2c2dfe64c522246b3814e489a9366..b472f481dfe69e8c4456daffc6e33fd47278581a 100644 (file)
@@ -126,7 +126,6 @@ PRIVACY_POLICY_NOT_ACCEPTED_MESSAGE=Please accept our privacy policy.
 TERMS_NOT_ACCEPTED_MESSAGE=Please accept Terms&Conditions.
 PERSONAL_DATA_MINIMUM_NOTICE=Please enter at least your name, address and phone number.
 PERSONAL_DATA_GENDER=Salutation:
-PERSONAL_DATA_COMPANY_NAME=Company name:
 PERSONAL_DATA_FIRST_NAME=First name:
 PERSONAL_DATA_FAMILY_NAME=Family name:
 PERSONAL_DATA_STREET=Street:
index ad577807d79e6e9096007ba6b597aaa285833c19..22fed4fa89d6b0990a581c61dfb6550551ae9635 100644 (file)
@@ -59,11 +59,6 @@ public class CustomerWebBean implements CustomerWebController {
         */
        private String comment;
 
-       /**
-        * Company name
-        */
-       private String companyName;
-
        /**
         * Country code
         */
@@ -150,7 +145,7 @@ public class CustomerWebBean implements CustomerWebController {
                Customer customer = new ShopCustomer();
 
                // Create new contact
-               Contact contact = new UserContact(this.getGender(), this.getFirstName(), this.getFamilyName(), this.getCompanyName());
+               Contact contact = new UserContact(this.getGender(), this.getFirstName(), this.getFamilyName());
                contact.setStreet(this.getStreet());
                contact.setHouseNumber(this.getHouseNumber());
                contact.setZipCode(this.getZipCode());
@@ -188,16 +183,6 @@ public class CustomerWebBean implements CustomerWebController {
                this.city = city;
        }
 
-       @Override
-       public String getCompanyName () {
-               return this.companyName;
-       }
-
-       @Override
-       public void setCompanyName (final String companyName) {
-               this.companyName = companyName;
-       }
-
        @Override
        public String getCountryCode () {
                return this.countryCode;
index ddb4996d9f03f70c712231d2683d546340d318fd..47955f0f19551998336c6145cb945673f1f0ef8e 100644 (file)
@@ -62,20 +62,6 @@ public interface CustomerWebController extends Serializable {
         */
        public void setCity (final String city);
 
-       /**
-        * Company name
-        * <p>
-        * @return the companyName
-        */
-       public String getCompanyName ();
-
-       /**
-        * Company name
-        * <p>
-        * @param companyName the companyName to set
-        */
-       public void setCompanyName (final String companyName);
-
        /**
         * Country code
         * <p>
index 7c780dd32cdad63e2ddf1d1b1f4ade396690e608..35f7ae94155fc7377ba3bb315ca8a84ddb5e1cf5 100644 (file)
                                <div class="clear"></div>
                        </div>
 
-                       <div class="table_row">
-                               <div class="table_left">
-                                       <h:outputLabel for="companyname" value="#{msg.PERSONAL_DATA_COMPANY_NAME}" />
-                               </div>
-
-                               <div class="table_right">
-                                       <h:inputText class="input" id="companyname" size="15" maxlength="255" value="#{customerController.companyName}" />
-                               </div>
-
-                               <div class="clear"></div>
-                       </div>
-
                        <div class="table_row">
                                <div class="table_left">
                                        <h:outputLabel for="firstName" value="#{msg.PERSONAL_DATA_FIRST_NAME}" />