]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
updated jar(s) + fixed method calls
authorRoland Haeder <roland@mxchange.org>
Mon, 12 Oct 2015 11:52:30 +0000 (13:52 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 12 Oct 2015 12:45:03 +0000 (14:45 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcontacts-core.jar
lib/jphone-core.jar
src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebBean.java

index b977044176df140d0a842f3cd87d2d9913325158..30e9640892d5fe2c8dbe696eeb1e857b2d0c5c9c 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index b8dca2dabf7a76459a987f1aa219cbae8f80a21f..6da09db142b3d85355881e06c93e869b931e72a0 100644 (file)
Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ
index 559d9f189b5a93c9f73ce1c725d4e97af61d7afc..1774208dabd2a08b3d6eb563bc34e65e34613fc5 100644 (file)
@@ -151,14 +151,14 @@ public class CustomerWebBean implements CustomerWebController {
 
                // Create new contact
                Contact contact = new UserContact(this.getGender(), this.getFirstName(), this.getFamilyName());
-               contact.setStreet(this.getStreet());
-               contact.setHouseNumber(this.getHouseNumber());
-               contact.setZipCode(this.getZipCode());
-               contact.setCity(this.getCity());
-               contact.setCountry(this.getCountry());
-               contact.setPhoneNumber(this.getPhoneNumber());
-               contact.setFaxNumber(this.getFaxNumber());
-               contact.setCellphoneNumber(this.getCellphoneNumber());
+               contact.setContactStreet(this.getStreet());
+               contact.setContactHouseNumber(this.getHouseNumber());
+               contact.setContactZipCode(this.getZipCode());
+               contact.setContactCity(this.getCity());
+               contact.setContactCountry(this.getCountry());
+               contact.setContactPhoneNumber(this.getPhoneNumber());
+               contact.setContactFaxNumber(this.getFaxNumber());
+               contact.setContactCellphoneNumber(this.getCellphoneNumber());
 
                // Set contact in customer
                customer.setContact(contact);