本文整理匯總了PHP中Magento\Checkout\Model\Session::setShipAddressValidation方法的典型用法代碼示例。如果您正苦於以下問題:PHP Session::setShipAddressValidation方法的具體用法?PHP Session::setShipAddressValidation怎麽用?PHP Session::setShipAddressValidation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Magento\Checkout\Model\Session
的用法示例。
在下文中一共展示了Session::setShipAddressValidation方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: aroundSaveAddressInformation
/**
*Set additional information for shipping address
*
* @param \Magento\Checkout\Model\ShippingInformationManagement $subject
* @param callable $proceed
*
* @return \Magento\Checkout\Api\Data\PaymentDetailsInterface $paymentDetails
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
public function aroundSaveAddressInformation(\Magento\Checkout\Model\ShippingInformationManagement $subject, $proceed, $cartId, \Magento\Checkout\Api\Data\ShippingInformationInterface $addressInformation)
{
try {
$carrierCode = $addressInformation->getShippingCarrierCode();
$methodCode = $addressInformation->getShippingMethodCode();
$shippingMethod = $carrierCode . '_' . $methodCode;
$quote = $this->quoteRepository->getActive($cartId);
$address = $quote->getShippingAddress();
$validation = $this->checkoutSession->getShipAddressValidation();
if (is_array($validation) && isset($validation['key'])) {
if (isset($validation['validation_status'])) {
$additionalDetail['address_valid'] = $validation['validation_status'];
$address->setValidationStatus($validation['validation_status']);
}
if (isset($validation['destination_type'])) {
$additionalDetail['destination_type'] = $validation['destination_type'];
$address->setDestinationType($validation['destination_type']);
}
$this->checkoutSession->setShipAddressValidation(null);
}
$address->save();
$additionalDetail = new \Magento\Framework\DataObject();
$extAttributes = $addressInformation->getShippingAddress()->getExtensionAttributes();
//push out event so other modules can save their data TODO add carrier_group_id
$this->eventManager->dispatch('shipperhq_additional_detail_checkout', ['address_extn_attributes' => $extAttributes, 'additional_detail' => $additionalDetail, 'carrier_code' => $carrierCode]);
$additionalDetailArray = $additionalDetail->convertToArray();
$this->shipperLogger->postDebug('ShipperHQ Shipper', 'processing additional detail ', $additionalDetail);
$this->carrierGroupHelper->saveCarrierGroupInformation($address, $shippingMethod, $additionalDetailArray);
} catch (\Exception $e) {
$this->shipperLogger->postCritical('Shipperhq_Shipper', 'Shipping Information Plugin', 'Exception raised ' . $e->getMessage());
}
$result = $proceed($cartId, $addressInformation);
if ($address->getCustomerId()) {
$customerAddresses = $quote->getCustomer()->getAddresses();
foreach ($customerAddresses as $oneAddress) {
if ($oneAddress->getId() == $address->getCustomerAddressId()) {
if ($address->getValidationStatus()) {
$oneAddress->setCustomAttribute('validation_status', $address->getValidationStatus());
}
if ($address->getDestinationType()) {
$oneAddress->setCustomAttribute('destination_type', $address->getDestinationType());
}
$this->addressRepository->save($oneAddress);
}
}
}
return $result;
}
示例2: persistAddressValidation
protected function persistAddressValidation($shipperResponse)
{
//we've validated so we need to save
//$shippingAddress = $this->shipperDataHelper->getQuote()->getShippingAddress();
$shippingAddress = $this->quote->getShippingAddress();
$key = $this->shipperDataHelper->getAddressKey($shippingAddress);
$addressType = $this->shipperRateHelper->extractDestinationType($shipperResponse);
$validationStatus = $this->shipperRateHelper->extractAddressValidationStatus($shipperResponse);
if ($addressType || $validationStatus) {
$existing = ['key' => $key, 'destination_type' => $addressType, 'validation_status' => $validationStatus];
$this->checkoutSession->setShipAddressValidation($existing);
}
}