quote_payment.php 511 B

12345678910111213
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. $quote = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(\Magento\Quote\Model\Quote::class);
  7. $quote->load('test01', 'reserved_order_id');
  8. $payment = $quote->getPayment();
  9. $payment->setMethod(\Magento\Paypal\Model\Config::METHOD_WPP_EXPRESS)
  10. ->setAdditionalInformation(\Magento\Paypal\Model\Express\Checkout::PAYMENT_INFO_TRANSPORT_PAYER_ID, 123);
  11. $quote->collectTotals()->save();