本文整理汇总了PHP中Magento\Quote\Model\Quote\Address类的典型用法代码示例。如果您正苦于以下问题:PHP Address类的具体用法?PHP Address怎么用?PHP Address使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Address类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: fetchTotals
/**
* Fetch totals
*
* @param \Magento\Quote\Model\Quote\Address $address
* @return $this
*/
public function fetchTotals(\Magento\Quote\Model\Quote\Address $address)
{
$amount = $address->getTaxAmount();
if ($amount != 0) {
$address->addTotal(['code' => 'tax', 'title' => __('Tax'), 'value' => $amount]);
}
return $this;
}
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:14,代码来源:Tax.php
示例2: fetchTotals
/**
* Fetch customer balance
*
* @param \Magento\Quote\Model\Quote\Address $address
* @return $this
*/
public function fetchTotals(\Magento\Quote\Model\Quote\Address $address)
{
$custbalance = $address->getCustbalanceAmount();
if ($custbalance != 0) {
$address->addTotal(['code' => 'custbalance', 'title' => __('Store Credit'), 'value' => -$custbalance]);
}
return $this;
}
开发者ID:shabbirvividads,项目名称:magento2,代码行数:14,代码来源:Custbalance.php
示例3: disabledQuoteAddressValidationStep
/**
* @param \PHPUnit_Framework_MockObject_MockObject $quoteMock
*/
private function disabledQuoteAddressValidationStep(\PHPUnit_Framework_MockObject_MockObject $quoteMock)
{
$billingAddressMock = $this->getBillingAddressMock($quoteMock);
$billingAddressMock->expects(self::once())->method('setShouldIgnoreValidation')->with(true)->willReturnSelf();
$this->shippingAddressMock->expects(self::once())->method('setShouldIgnoreValidation')->with(true)->willReturnSelf();
$billingAddressMock->expects(self::at(1))->method('getEmail')->willReturn(self::TEST_EMAIL);
$billingAddressMock->expects(self::never())->method('setSameAsBilling');
}
开发者ID:BlackIkeEagle,项目名称:magento2-continuousphp,代码行数:11,代码来源:ShippingMethodUpdaterTest.php
示例4: testValidateMiniumumAmountNegative
public function testValidateMiniumumAmountNegative()
{
$storeId = 1;
$scopeConfigValues = [['sales/minimum_order/active', ScopeInterface::SCOPE_STORE, $storeId, true], ['sales/minimum_order/amount', ScopeInterface::SCOPE_STORE, $storeId, 20], ['sales/minimum_order/tax_including', ScopeInterface::SCOPE_STORE, $storeId, true]];
$this->quote->expects($this->once())->method('getStoreId')->willReturn($storeId);
$this->quote->expects($this->once())->method('getIsVirtual')->willReturn(false);
$this->address->setAddressType(Address::TYPE_SHIPPING);
$this->scopeConfig->expects($this->once())->method('isSetFlag')->willReturnMap($scopeConfigValues);
$this->assertTrue($this->address->validateMinimumAmount());
}
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:10,代码来源:AddressTest.php
示例5: isEnabled
/**
* Check whether VAT ID validation is enabled
*
* @param \Magento\Quote\Model\Quote\Address $quoteAddress
* @param \Magento\Store\Model\Store|int $store
* @return bool
*/
public function isEnabled(\Magento\Quote\Model\Quote\Address $quoteAddress, $store)
{
$configAddressType = $this->customerAddress->getTaxCalculationAddressType($store);
// When VAT is based on billing address then Magento have to handle only billing addresses
$additionalBillingAddressCondition = $configAddressType == \Magento\Customer\Model\Address\AbstractAddress::TYPE_BILLING ? $configAddressType != $quoteAddress->getAddressType() : false;
// Handle only addresses that corresponds to VAT configuration
if (!$this->customerAddress->isVatValidationEnabled($store) || $additionalBillingAddressCondition) {
return false;
}
return true;
}
开发者ID:shabbirvividads,项目名称:magento2,代码行数:18,代码来源:VatValidator.php
示例6: isCanApplyMsrp
/**
* @param \Magento\Quote\Model\Quote\Address $address
* @return bool
*/
public function isCanApplyMsrp($address)
{
$canApplyMsrp = false;
foreach ($address->getAllItems() as $item) {
if (!$item->getParentItemId() && $this->msrpHelper->isShowBeforeOrderConfirm($item->getProductId()) && $this->msrpHelper->isMinimalPriceLessMsrp($item->getProductId())) {
$canApplyMsrp = true;
break;
}
}
return $canApplyMsrp;
}
开发者ID:pradeep-wagento,项目名称:magento2,代码行数:15,代码来源:CanApplyMsrp.php
示例7: collect
/**
* @param \Magento\Quote\Model\Quote\Address $address
* @return $this
*/
public function collect(\Magento\Quote\Model\Quote\Address $address)
{
$address->setCustbalanceAmount(0);
$address->setBaseCustbalanceAmount(0);
$address->setGrandTotal($address->getGrandTotal() - $address->getCustbalanceAmount());
$address->setBaseGrandTotal($address->getBaseGrandTotal() - $address->getBaseCustbalanceAmount());
return $this;
}
开发者ID:shabbirvividads,项目名称:magento2,代码行数:12,代码来源:Custbalance.php
示例8: fetchTotals
/**
* Fetch discount
*
* @param \Magento\Quote\Model\Quote\Address $address
* @return $this
*/
public function fetchTotals(\Magento\Quote\Model\Quote\Address $address)
{
$amount = $address->getDiscountAmount();
if ($amount != 0) {
$title = __('Discount');
$couponCode = $address->getQuote()->getCouponCode();
if (strlen($couponCode)) {
$title .= sprintf(' (%s)', $couponCode);
}
$address->addTotal(['code' => 'discount', 'title' => $title, 'value' => -$amount]);
}
return $this;
}
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:19,代码来源:Discount.php
示例9: testCollect
public function testCollect()
{
$this->shippingAssignment->expects($this->exactly(3))->method('getShipping')->willReturn($this->shipping);
$this->shipping->expects($this->exactly(2))->method('getAddress')->willReturn($this->address);
$this->shipping->expects($this->once())->method('getMethod')->willReturn('flatrate');
$this->shippingAssignment->expects($this->atLeastOnce())->method('getItems')->willReturn([$this->cartItem]);
$this->freeShipping->expects($this->once())->method('isFreeShipping')->with($this->quote, [$this->cartItem])->willReturn(true);
$this->address->expects($this->once())->method('setFreeShipping')->with(true);
$this->total->expects($this->atLeastOnce())->method('setTotalAmount');
$this->total->expects($this->atLeastOnce())->method('setBaseTotalAmount');
$this->cartItem->expects($this->atLeastOnce())->method('getProduct')->willReturnSelf();
$this->cartItem->expects($this->atLeastOnce())->method('isVirtual')->willReturn(false);
$this->cartItem->expects($this->once())->method('getParentItem')->willReturn(false);
$this->cartItem->expects($this->once())->method('getHasChildren')->willReturn(false);
$this->cartItem->expects($this->once())->method('getWeight')->willReturn(2);
$this->cartItem->expects($this->atLeastOnce())->method('getQty')->willReturn(2);
$this->address->expects($this->once())->method('getFreeShipping')->willReturn(true);
$this->cartItem->expects($this->once())->method('setRowWeight')->with(0);
$this->address->expects($this->once())->method('setItemQty')->with(2);
$this->address->expects($this->atLeastOnce())->method('setWeight');
$this->address->expects($this->atLeastOnce())->method('setFreeMethodWeight');
$this->address->expects($this->once())->method('collectShippingRates');
$this->address->expects($this->once())->method('getAllShippingRates')->willReturn([$this->rate]);
$this->rate->expects($this->once())->method('getCode')->willReturn('flatrate');
$this->quote->expects($this->once())->method('getStore')->willReturn($this->store);
$this->rate->expects($this->atLeastOnce())->method('getPrice')->willReturn(5);
$this->priceCurrency->expects($this->once())->method('convert')->with(5, $this->store)->willReturn(5);
$this->total->expects($this->once())->method('setShippingAmount')->with(5);
$this->rate->expects($this->once())->method('getCarrierTitle')->willReturn('Carrier title');
$this->rate->expects($this->once())->method('getMethodTitle')->willReturn('Method title');
$this->address->expects($this->once())->method('setShippingDescription')->with('Carrier title - Method title');
$this->address->expects($this->once())->method('getShippingDescription')->willReturn('Carrier title - Method title');
$this->total->expects($this->once())->method('setShippingDescription')->with('Carrier title - Method title');
$this->shippingModel->collect($this->quote, $this->shippingAssignment, $this->total);
}
开发者ID:nblair,项目名称:magescotch,代码行数:35,代码来源:ShippingTest.php
示例10: testAfterConvertNullExtensionAttribute
/**
* @dataProvider afterConvertDataProvider
*/
public function testAfterConvertNullExtensionAttribute($appliedTaxes, $itemsAppliedTaxes)
{
$this->model->beforeConvert($this->subjectMock, $this->quoteAddressMock);
$this->quoteAddressMock->expects($this->once())->method('getAppliedTaxes')->willReturn($appliedTaxes);
$this->quoteAddressMock->expects($this->once())->method('getItemsAppliedTaxes')->willReturn($itemsAppliedTaxes);
$orderExtensionAttributeMock = $this->setupOrderExtensionAttributeMock();
$orderMock = $this->getMockBuilder('\\Magento\\Sales\\Model\\Order')->disableOriginalConstructor()->getMock();
$orderMock->expects($this->once())->method('getExtensionAttributes')->willReturn(null);
$this->orderExtensionFactoryMock->expects($this->once())->method('create')->willReturn($orderExtensionAttributeMock);
$orderExtensionAttributeMock->expects($this->once())->method('setAppliedTaxes')->with($appliedTaxes);
$orderExtensionAttributeMock->expects($this->once())->method('setConvertingFromQuote')->with(true);
$orderExtensionAttributeMock->expects($this->once())->method('setItemAppliedTaxes')->with($itemsAppliedTaxes);
$orderMock->expects($this->once())->method('setExtensionAttributes')->with($orderExtensionAttributeMock);
$this->assertEquals($orderMock, $this->model->afterConvert($this->subjectMock, $orderMock));
}
开发者ID:niranjanssiet,项目名称:magento2,代码行数:18,代码来源:ToOrderConverterTest.php
示例11: testPrepareQuoteForNewCustomer
public function testPrepareQuoteForNewCustomer()
{
$customerAddressMock = $this->getMockBuilder('Magento\\Customer\\Api\\Data\\AddressInterface')->disableOriginalConstructor()->getMock();
$this->addressMock->expects($this->any())->method('exportCustomerAddress')->willReturn($customerAddressMock);
$this->addressMock->expects($this->any())->method('getData')->willReturn([]);
$this->addressFactoryMock->expects($this->any())->method('create')->willReturn($this->addressMock);
$this->quoteMock->expects($this->any())->method('isVirtual')->willReturn(false);
$this->quoteMock->expects($this->once())->method('getBillingAddress')->willReturn($this->addressMock);
$this->quoteMock->expects($this->once())->method('getShippingAddress')->willReturn($this->addressMock);
$customerDataMock = $this->getMockBuilder('Magento\\Customer\\Api\\Data\\CustomerInterface')->disableOriginalConstructor()->getMock();
$this->customerFactoryMock->expects($this->once())->method('create')->willReturn($customerDataMock);
$this->copyObjectMock->expects($this->any())->method('getDataFromFieldset')->willReturn([]);
$this->dataObjectHelper->expects($this->any())->method('populateWithArray')->willReturnSelf();
$this->assertInstanceOf('Magento\\Quote\\Model\\Quote', $this->quote->prepareQuoteForNewCustomer($this->quoteMock));
}
开发者ID:nja78,项目名称:magento2,代码行数:15,代码来源:QuoteTest.php
示例12: testPopulateCustomerInfo
public function testPopulateCustomerInfo()
{
$this->quoteMock->expects($this->once())->method('getCustomer')->willReturn($this->customerMock);
$this->customerMock->expects($this->atLeastOnce())->method('getId')->willReturn(null);
$this->customerMock->expects($this->atLeastOnce())->method('getDefaultBilling')->willReturn(100500);
$this->quoteMock->expects($this->atLeastOnce())->method('getBillingAddress')->willReturn($this->quoteAddressMock);
$this->quoteMock->expects($this->atLeastOnce())->method('getShippingAddress')->willReturn($this->quoteAddressMock);
$this->quoteMock->expects($this->atLeastOnce())->method('setCustomer')->with($this->customerMock)->willReturnSelf();
$this->quoteMock->expects($this->once())->method('getPasswordHash')->willReturn('password hash');
$this->quoteAddressMock->expects($this->atLeastOnce())->method('getId')->willReturn(null);
$this->customerAddressRepositoryMock->expects($this->atLeastOnce())->method('getById')->with(100500)->willReturn($this->customerAddressMock);
$this->quoteAddressMock->expects($this->atLeastOnce())->method('importCustomerAddressData')->willReturnSelf();
$this->accountManagementMock->expects($this->once())->method('createAccountWithPasswordHash')->with($this->customerMock, 'password hash')->willReturn($this->customerMock);
$this->customerManagement->populateCustomerInfo($this->quoteMock);
}
开发者ID:pradeep-wagento,项目名称:magento2,代码行数:15,代码来源:CustomerManagementTest.php
示例13: _beforeToHtml
/**
* Retrieve payment method and assign additional template values
*
* @return $this
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
*/
protected function _beforeToHtml()
{
$methodInstance = $this->_quote->getPayment()->getMethodInstance();
$this->setPaymentMethodTitle($methodInstance->getTitle());
$this->setShippingRateRequired(true);
if ($this->_quote->getIsVirtual()) {
$this->setShippingRateRequired(false);
} else {
// prepare shipping rates
$this->_address = $this->_quote->getShippingAddress();
$groups = $this->_address->getGroupedAllShippingRates();
if ($groups && $this->_address) {
$this->setShippingRateGroups($groups);
// determine current selected code & name
foreach ($groups as $code => $rates) {
foreach ($rates as $rate) {
if ($this->_address->getShippingMethod() == $rate->getCode()) {
$this->_currentShippingRate = $rate;
break 2;
}
}
}
}
$canEditShippingAddress = $this->_quote->getMayEditShippingAddress() && $this->_quote->getPayment()->getAdditionalInformation(\Magento\Paypal\Model\Express\Checkout::PAYMENT_INFO_BUTTON) == 1;
// misc shipping parameters
$this->setShippingMethodSubmitUrl($this->getUrl("{$this->_controllerPath}/saveShippingMethod"))->setCanEditShippingAddress($canEditShippingAddress)->setCanEditShippingMethod($this->_quote->getMayEditShippingMethod());
}
$this->setEditUrl($this->getUrl("{$this->_controllerPath}/edit"))->setPlaceOrderUrl($this->getUrl("{$this->_controllerPath}/placeOrder"));
return parent::_beforeToHtml();
}
开发者ID:whoople,项目名称:magento2-testing,代码行数:36,代码来源:Review.php
示例14: updateBillingAddressStep
/**
* @param array $details
*/
private function updateBillingAddressStep(array $details)
{
$this->configMock->expects(self::once())->method('isRequiredBillingAddress')->willReturn(true);
$this->updateAddressDataStep($this->billingAddressMock, $details['billingAddress']);
$this->billingAddressMock->expects(self::once())->method('setLastname')->with($details['lastName']);
$this->billingAddressMock->expects(self::once())->method('setFirstname')->with($details['firstName']);
$this->billingAddressMock->expects(self::once())->method('setEmail')->with($details['email']);
}
开发者ID:BlackIkeEagle,项目名称:magento2-continuousphp,代码行数:11,代码来源:QuoteUpdaterTest.php
示例15: setUp
public function setUp()
{
$objectManager = new ObjectManager($this);
$this->taxConfig = $this->getMockBuilder('\\Magento\\Tax\\Model\\Config')->disableOriginalConstructor()->setMethods(['getShippingTaxClass', 'shippingPriceIncludesTax'])->getMock();
$this->store = $this->getMockBuilder('\\Magento\\Store\\Model\\Store')->disableOriginalConstructor()->setMethods(['__wakeup'])->getMock();
$this->quote = $this->getMockBuilder('\\Magento\\Quote\\Model\\Quote')->disableOriginalConstructor()->setMethods(['__wakeup', 'getStore'])->getMock();
$this->quote->expects($this->any())->method('getStore')->will($this->returnValue($this->store));
$this->address = $this->getMockBuilder('\\Magento\\Quote\\Model\\Quote\\Address')->disableOriginalConstructor()->getMock();
$this->address->expects($this->any())->method('getQuote')->will($this->returnValue($this->quote));
$methods = ['create'];
$this->quoteDetailsItemDataObject = $objectManager->getObject('Magento\\Tax\\Model\\Sales\\Quote\\ItemDetails');
$this->taxClassKeyDataObject = $objectManager->getObject('Magento\\Tax\\Model\\TaxClass\\Key');
$this->quoteDetailsItemDataObjectFactoryMock = $this->getMock('Magento\\Tax\\Api\\Data\\QuoteDetailsItemInterfaceFactory', $methods, [], '', false);
$this->quoteDetailsItemDataObjectFactoryMock->expects($this->any())->method('create')->willReturn($this->quoteDetailsItemDataObject);
$this->taxClassKeyDataObjectFactoryMock = $this->getMock('Magento\\Tax\\Api\\Data\\TaxClassKeyInterfaceFactory', $methods, [], '', false);
$this->taxClassKeyDataObjectFactoryMock->expects($this->any())->method('create')->willReturn($this->taxClassKeyDataObject);
$this->commonTaxCollector = $objectManager->getObject('Magento\\Tax\\Model\\Sales\\Total\\Quote\\CommonTaxCollector', ['taxConfig' => $this->taxConfig, 'quoteDetailsItemDataObjectFactory' => $this->quoteDetailsItemDataObjectFactoryMock, 'taxClassKeyDataObjectFactory' => $this->taxClassKeyDataObjectFactoryMock]);
}
开发者ID:pradeep-wagento,项目名称:magento2,代码行数:18,代码来源:CommonTaxCollectorTest.php
示例16: isValid
/**
* Returns true if and only if $value meets the validation requirements
*
* If $value fails validation, then this method returns false, and
* getMessages() will return an array of messages that explain why the
* validation failed.
*
* @param \Magento\Quote\Model\Quote\Address $value
* @return boolean
* @throws Zend_Validate_Exception If validation of $value is impossible
*/
public function isValid($value)
{
$messages = [];
$email = $value->getEmail();
if (!empty($email) && !\Zend_Validate::is($email, 'EmailAddress')) {
$messages['invalid_email_format'] = 'Invalid email format';
}
$countryId = $value->getCountryId();
if (!empty($countryId)) {
$country = $this->countryFactory->create();
$country->load($countryId);
if (!$country->getId()) {
$messages['invalid_country_code'] = 'Invalid country code';
}
}
$this->_addMessages($messages);
return empty($messages);
}
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:29,代码来源:Validator.php
示例17: testAfterSaveShippingMethod
public function testAfterSaveShippingMethod()
{
$this->shippingAddress->expects($this->once())->method('getShippingMethod')->willReturn('storepickup_store_1');
$this->shippingAddress->expects($this->once())->method('setCountryId')->with($this->locationData['country_id']);
$this->shippingAddress->expects($this->once())->method('setRegionId')->with($this->locationData['region_id']);
$this->shippingAddress->expects($this->once())->method('setPostcode')->with($this->locationData['postcode']);
$this->shippingAddress->expects($this->once())->method('setCity')->with($this->locationData['city']);
$this->shippingAddress->expects($this->once())->method('setStreet')->with($this->locationData['street']);
$this->shippingAddress->expects($this->once())->method('setTelephone')->with($this->locationData['phone']);
$this->model->afterSaveShippingMethod($this->subject, []);
}
开发者ID:marcinNS,项目名称:magento2-samples,代码行数:11,代码来源:OnepageTest.php
示例18: afterConvert
/**
* @param QuoteAddressToOrder $subject
* @param OrderInterface $order
* @return OrderInterface
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function afterConvert(QuoteAddressToOrder $subject, OrderInterface $order)
{
/** @var \Magento\Sales\Model\Order $order */
$taxes = $this->quoteAddress->getAppliedTaxes();
$extensionAttributes = $order->getExtensionAttributes();
if ($extensionAttributes == null) {
$extensionAttributes = $this->orderExtensionFactory->create();
}
if (!empty($taxes)) {
$extensionAttributes->setAppliedTaxes($taxes);
$extensionAttributes->setConvertingFromQuote(true);
}
$itemAppliedTaxes = $this->quoteAddress->getItemsAppliedTaxes();
if (!empty($itemAppliedTaxes)) {
$extensionAttributes->setItemAppliedTaxes($itemAppliedTaxes);
}
$order->setExtensionAttributes($extensionAttributes);
return $order;
}
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:25,代码来源:ToOrderConverter.php
示例19: testValidateMiniumumAmountNegative
public function testValidateMiniumumAmountNegative()
{
$storeId = 1;
$this->quote->setStoreId($storeId);
$valueMap = [['sales/minimum_order/active', ScopeInterface::SCOPE_STORE, $storeId, true], ['sales/minimum_order/multi_address', ScopeInterface::SCOPE_STORE, $storeId, true], ['sales/minimum_order/amount', ScopeInterface::SCOPE_STORE, $storeId, 20], ['sales/minimum_order/tax_including', ScopeInterface::SCOPE_STORE, $storeId, true]];
$this->scopeConfig->expects($this->any())->method('isSetFlag')->will($this->returnValueMap($valueMap));
$this->quoteAddressMock->expects($this->once())->method('validateMinimumAmount')->willReturn(false);
$this->quoteAddressCollectionMock->expects($this->once())->method('setQuoteFilter')->willReturn([$this->quoteAddressMock]);
$this->assertFalse($this->quote->validateMinimumAmount());
}
开发者ID:nja78,项目名称:magento2,代码行数:10,代码来源:QuoteTest.php
示例20: setupAddressMock
/**
* @param null|int $shippingAmount
* @return \PHPUnit_Framework_MockObject_MockObject
*/
protected function setupAddressMock($shippingAmount = null)
{
$storeMock = $this->getMockBuilder('Magento\\Store\\Model\\Store')->disableOriginalConstructor()->setMethods([])->getMock();
$quoteMock = $this->getMockBuilder('Magento\\Quote\\Model\\Quote')->disableOriginalConstructor()->setMethods(['setAppliedRuleIds', 'getStore'])->getMock();
$quoteMock->expects($this->any())->method('getStore')->willReturn($storeMock);
$quoteMock->expects($this->any())->method('setAppliedRuleIds')->willReturnSelf();
$this->addressMock->expects($this->any())->method('getShippingAmountForDiscount')->willReturn($shippingAmount);
$this->addressMock->expects($this->any())->method('getQuote')->willReturn($quoteMock);
$this->addressMock->expects($this->any())->method('getCustomAttributesCodes')->willReturn([]);
return $this->addressMock;
}
开发者ID:Doability,项目名称:magento2dev,代码行数:15,代码来源:ValidatorTest.php
注:本文中的Magento\Quote\Model\Quote\Address类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论