本文整理汇总了PHP中Mage_Sales_Model_Quote::getCustomerGender方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Sales_Model_Quote::getCustomerGender方法的具体用法?PHP Mage_Sales_Model_Quote::getCustomerGender怎么用?PHP Mage_Sales_Model_Quote::getCustomerGender使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Sales_Model_Quote
的用法示例。
在下文中一共展示了Mage_Sales_Model_Quote::getCustomerGender方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _buildParams
/**
* @param Mage_Sales_Model_Quote $quote
* @return array
*/
protected function _buildParams($quote)
{
$billingAddress = $quote->getBillingAddress();
$gender = 'female';
if ($quote->getCustomerGender() == self::GENDER_MALE) {
$gender = 'male';
}
$street = preg_split("/\\s+(?=\\S*+\$)/", $billingAddress->getStreet1());
$params = array('gender' => $gender, 'firstname' => $billingAddress->getFirstname(), 'lastname' => $billingAddress->getLastname(), 'country' => $billingAddress->getCountry(), 'street' => $street[0], 'housenumber' => $street[1], 'zip' => $billingAddress->getPostcode(), 'city' => $billingAddress->getCity(), 'birthday' => $this->_formatDob($quote->getCustomerDob()), 'currency' => 'EUR', 'amount' => $this->_formatAmount($quote->getGrandTotal()));
return $params;
}
示例2: isAvailable
/**
* Open Invoice NL is not available if quote has a coupon
*
* @param Mage_Sales_Model_Quote $quote
* @return boolean
*/
public function isAvailable($quote = null)
{
/* availability depends on quote */
if (false == $quote instanceof Mage_Sales_Model_Quote) {
return false;
}
/* not available if there is no gender or no birthday */
if (is_null($quote->getCustomerGender()) || is_null($quote->getCustomerDob())) {
return false;
}
return parent::isAvailable($quote);
}
示例3: isAvailable
/**
* Open Invoice DE is not available if quote has a coupon
*
* @param Mage_Sales_Model_Quote $quote
* @return boolean
*/
public function isAvailable($quote = null)
{
/* availability depends on quote */
if (false == $quote instanceof Mage_Sales_Model_Quote) {
return false;
}
/* not available if quote contains a coupon and allow_discounted_carts is disabled */
if (!$this->isAvailableForDiscountedCarts() && $quote->getSubtotal() != $quote->getSubtotalWithDiscount()) {
return false;
}
/* not available if there is no gender or no birthday */
if (is_null($quote->getCustomerGender()) || is_null($quote->getCustomerDob())) {
return false;
}
return parent::isAvailable($quote);
}
示例4: getGenderCode
/**
* This method returns the customer gender code
*
* @param Mage_Sales_Model_Quote|Mage_Sales_Model_Order $quote
* @return string
*/
public function getGenderCode($quote)
{
$gender = $quote->getCustomerGender();
if ($gender) {
$attribute = Mage::getModel('eav/entity_attribute')->loadByCode('customer', 'gender');
$option = $attribute->getFrontend()->getOption($gender);
switch (strtolower($option)) {
case 'male':
return 'M';
case 'female':
return 'F';
}
}
$gender = $quote->getCustomerPrefix();
if ($gender) {
switch (strtolower($gender)) {
case 'herr':
case 'mr':
return 'M';
case 'frau':
case 'mrs':
return 'F';
}
}
return 'U';
}
示例5: CreateMagentoShopRequest
function CreateMagentoShopRequest(Mage_Sales_Model_Quote $quote)
{
$request = new Byjuno_Cdp_Helper_Api_Classes_ByjunoRequest();
$request->setClientId(Mage::getStoreConfig('byjuno/api/clientid', Mage::app()->getStore()));
$request->setUserID(Mage::getStoreConfig('byjuno/api/userid', Mage::app()->getStore()));
$request->setPassword(Mage::getStoreConfig('byjuno/api/password', Mage::app()->getStore()));
$request->setVersion("1.00");
try {
$request->setRequestEmail(Mage::getStoreConfig('byjuno/api/mail', Mage::app()->getStore()));
} catch (Exception $e) {
}
$b = $quote->getCustomerDob();
if (!empty($b)) {
$request->setDateOfBirth(Mage::getModel('core/date')->date('Y-m-d', strtotime($b)));
}
Mage::getSingleton('checkout/session')->setData('dob_amasty', '');
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["dob"])) {
$request->setDateOfBirth(Mage::getModel('core/date')->date('Y-m-d', strtotime($_POST["billing"]["dob"])));
Mage::getSingleton('checkout/session')->setData('dob_amasty', $_POST["billing"]["dob"]);
}
$g = $quote->getCustomerGender();
if (!empty($g)) {
if ($g == '1') {
$request->setGender('1');
} else {
if ($g == '2') {
$request->setGender('2');
}
}
}
$request->setRequestId(uniqid((string) $quote->getBillingAddress()->getId() . "_"));
$reference = $quote->getCustomer()->getId();
if (empty($reference)) {
$request->setCustomerReference("guest_" . $quote->getBillingAddress()->getId());
} else {
$request->setCustomerReference($quote->getCustomer()->getId());
}
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["method"]) && $_POST["method"] == 'guest') {
$request->setCustomerReference(uniqid("guest_"));
}
$request->setFirstName((string) $quote->getBillingAddress()->getFirstname());
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["firstname"])) {
$request->setFirstName((string) $_POST["billing"]["firstname"]);
}
$request->setLastName((string) $quote->getBillingAddress()->getLastname());
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["lastname"])) {
$request->setLastName((string) $_POST["billing"]["lastname"]);
}
$request->setFirstLine(trim((string) $quote->getBillingAddress()->getStreetFull()));
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["street"])) {
$street = '';
if (!empty($_POST["billing"]["street"][0])) {
$street .= $_POST["billing"]["street"][0];
}
if (!empty($_POST["billing"]["street"][1])) {
$street .= $_POST["billing"]["street"][1];
}
$request->setFirstLine((string) trim($street));
}
$request->setCountryCode(strtoupper((string) $quote->getBillingAddress()->getCountry()));
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["country_id"])) {
$request->setCountryCode((string) $_POST["billing"]["country_id"]);
}
$request->setPostCode((string) $quote->getBillingAddress()->getPostcode());
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["postcode"])) {
$request->setPostCode($_POST["billing"]["postcode"]);
}
$request->setTown((string) $quote->getBillingAddress()->getCity());
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["city"])) {
$request->setTown($_POST["billing"]["city"]);
}
$request->setFax((string) trim($quote->getBillingAddress()->getFax(), '-'));
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["fax"])) {
$request->setFax(trim($_POST["billing"]["fax"], '-'));
}
$request->setLanguage((string) substr(Mage::app()->getLocale()->getLocaleCode(), 0, 2));
if ($quote->getBillingAddress()->getCompany()) {
$request->setCompanyName1($quote->getBillingAddress()->getCompany());
}
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["company"])) {
$request->setCompanyName1(trim($_POST["billing"]["company"], '-'));
}
$request->setTelephonePrivate((string) trim($quote->getBillingAddress()->getTelephone(), '-'));
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["telephone"])) {
$request->setTelephonePrivate(trim($_POST["billing"]["telephone"], '-'));
}
$request->setEmail((string) $quote->getBillingAddress()->getEmail());
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["email"])) {
$request->setEmail((string) $_POST["billing"]["email"]);
}
Mage::getSingleton('checkout/session')->setData('gender_amasty', '');
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty') {
$g = isset($_POST["billing"]["gender"]) ? $_POST["billing"]["gender"] : '';
$request->setGender($g);
Mage::getSingleton('checkout/session')->setData('gender_amasty', $g);
}
if (Mage::getStoreConfig('byjuno/api/plugincheckouttype', Mage::app()->getStore()) == 'amasty' && !empty($_POST["billing"]["prefix"])) {
if (strtolower($_POST["billing"]["prefix"]) == 'herr') {
$request->setGender('1');
Mage::getSingleton('checkout/session')->setData('gender_amasty', '1');
//.........这里部分代码省略.........