fiw non saving customer title

This commit is contained in:
Manuel Raynaud
2013-07-02 15:00:34 +02:00
parent 33aba6b3d5
commit 363e0ab8ae
4 changed files with 45 additions and 1 deletions

View File

@@ -18,9 +18,10 @@ use Thelia\Model\om\BaseCustomer;
*/
class Customer extends BaseCustomer
{
public function create($titleId, $firstname, $lastname, $address1, $address2, $address3, $phone, $cellphone, $zipcode, $countryId, $email, $plainPassword, $reseller = 0, $sponsor = null, $discount = 0 )
public function createOrUpdate($titleId, $firstname, $lastname, $address1, $address2, $address3, $phone, $cellphone, $zipcode, $countryId, $email, $plainPassword, $reseller = 0, $sponsor = null, $discount = 0 )
{
$this
->setCustomerTitleId($titleId)
->setFirstname($firstname)
->setLastname($lastname)
->setAddress1($address1)
@@ -35,6 +36,7 @@ class Customer extends BaseCustomer
->setReseller($reseller)
->setSponsor($sponsor)
->setDiscount($discount)
->save()
;
}