]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sat, 5 Nov 2022 04:39:57 +0000 (05:39 +0100)
committerRoland Häder <roland@mxchange.org>
Sat, 5 Nov 2022 04:43:50 +0000 (05:43 +0100)
- updated to latest changes in constructor (order of parameters)
- also used newly added constructor with all optional class fields, except
  contactId, fax/land-line/mobile number and created/updated fields

src/java/org/mxchange/pizzaapplication/beans/contact/PizzaAdminContactWebRequestBean.java
src/java/org/mxchange/pizzaapplication/beans/contact/PizzaContactWebRequestBean.java

index efe9ab64687734bf3ace2fd3a211c7906e7f27e8..8b86356c452c96210be7690c0249d2acbf9a1063 100644 (file)
@@ -422,19 +422,21 @@ public class PizzaAdminContactWebRequestBean extends BasePizzaBean implements Pi
                                          this.getPersonalTitle(),
                                          this.getFirstName(),
                                          this.getFamilyName(),
-                                         this.getContactCountry()
+                                         this.getContactCountry(),
+                                         Boolean.FALSE,
+                                         this.getStreet(),
+                                         this.getHouseNumber(),
+                                         this.getHouseNumberExtension(),
+                                         this.getZipCode(),
+                                         this.getCity(),
+                                         this.getEmailAddress(),
+                                         this.getAcademicTitle(),
+                                         this.getBirthday(),
+                                         this.getComment()
                          );
 
-               // Add all others
-               localContact.setContactBirthday(this.getBirthday());
-               localContact.setContactCity(this.getCity());
-               localContact.setContactComment(this.getComment());
-               localContact.setContactEmailAddress(this.getEmailAddress());
-               localContact.setContactHouseNumber(this.getHouseNumber());
+               // Add missing fields
                localContact.setContactId(this.getContactId());
-               localContact.setContactStreet(this.getStreet());
-               localContact.setContactTitle(this.getAcademicTitle());
-               localContact.setContactZipCode(this.getZipCode());
 
                // Don't set null or wrong references
                if ((landLine instanceof DialableLandLineNumber) && (landLine.getPhoneCountry() instanceof Country) && (this.getLandLineAreaCode() != null) && (this.getLandLineNumber() != null) && (this.getLandLineAreaCode() > 0) && (this.getLandLineNumber() > 0)) {
index 5ec23a3dab22fe9ada252733655a264c601b7b01..3c2b3a466eef02312b4e5d8c16262c9079a24453 100644 (file)
@@ -497,7 +497,8 @@ public class PizzaContactWebRequestBean extends BasePizzaBean implements PizzaCo
                                          this.getPersonalTitle(),
                                          this.getFirstName(),
                                          this.getFamilyName(),
-                                         this.getCountry()
+                                         this.getCountry(),
+                                         Boolean.FALSE
                          );
 
                // Don't set null or wrong references