本文整理汇总了PHP中Mage_Customer_Model_Customer::getTaxvat方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Customer::getTaxvat方法的具体用法?PHP Mage_Customer_Model_Customer::getTaxvat怎么用?PHP Mage_Customer_Model_Customer::getTaxvat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Customer_Model_Customer
的用法示例。
在下文中一共展示了Mage_Customer_Model_Customer::getTaxvat方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createFromCustomer
public static function createFromCustomer(Mage_Customer_Model_Customer $customer)
{
/** @var Mage_Log_Model_Customer $logCustomer */
$logCustomer = Mage::getModel('log/customer')->loadByCustomer($customer->getId());
switch ($customer->getGender()) {
case '1':
$gender = 1;
break;
case '2':
$gender = 2;
break;
default:
$gender = 0;
}
$aCustomer = new self();
$aCustomer->email = $customer->getEmail();
$aCustomer->type = 'e';
$aCustomer->gender = $gender;
$aCustomer->id = $customer->getId();
$aCustomer->first_name = $customer->getFirstname();
$aCustomer->last_name = $customer->getLastname();
if (($birthday = $customer->getDob()) !== null) {
$aCustomer->birthday = Aplazame_Sdk_Serializer_Date::fromDateTime(new DateTime($birthday));
}
if (($document_id = $customer->getTaxvat()) !== null) {
$aCustomer->document_id = $document_id;
}
$aCustomer->date_joined = Aplazame_Sdk_Serializer_Date::fromDateTime(new DateTime('@' . $customer->getCreatedAtTimestamp()));
if (($lastLogin = $logCustomer->getLoginAtTimestamp()) != null) {
$aCustomer->last_login = Aplazame_Sdk_Serializer_Date::fromDateTime(new DateTime('@' . $lastLogin));
}
return $aCustomer;
}
示例2: validateCustomerAttributes
/**
* Validate customer attributes
*
* @param Mage_Customer_Model_Customer $customer
* @return bool
*/
public function validateCustomerAttributes(Mage_Customer_Model_Customer $customer)
{
$errors = array();
$customerHelper = Mage::helper('customer');
if (!Zend_Validate::is(trim($customer->getFirstname()), 'NotEmpty')) {
$errors[] = $customerHelper->__('The first name cannot be empty.');
}
/*
if (!Zend_Validate::is( trim($customer->getLastname()) , 'NotEmpty')) {
$errors[] = $customerHelper->__('The last name cannot be empty.');
}
*/
if (!Zend_Validate::is($customer->getEmail(), 'EmailAddress')) {
$errors[] = $customerHelper->__('Invalid email address "%s".', $customer->getEmail());
}
$password = $customer->getPassword();
if (!$customer->getId() && !Zend_Validate::is($password, 'NotEmpty')) {
$errors[] = $customerHelper->__('The password cannot be empty.');
}
if (strlen($password) && !Zend_Validate::is($password, 'StringLength', array(6))) {
$errors[] = $customerHelper->__('The minimum password length is %s', 6);
}
$confirmation = $customer->getConfirmation();
if ($password != $confirmation) {
$errors[] = $customerHelper->__('Please make sure your passwords match.');
}
$entityType = Mage::getSingleton('eav/config')->getEntityType('customer');
$attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'dob');
if ($attribute->getIsRequired() && '' == trim($customer->getDob())) {
$errors[] = $customerHelper->__('The Date of Birth is required.');
}
$attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'taxvat');
if ($attribute->getIsRequired() && '' == trim($customer->getTaxvat())) {
$errors[] = $customerHelper->__('The TAX/VAT number is required.');
}
$attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'gender');
if ($attribute->getIsRequired() && '' == trim($customer->getGender())) {
$errors[] = $customerHelper->__('Gender is required.');
}
return empty($errors) ? true : $errors;
}