質問

I created an observer with event checkout_onepage_controller_success_action. I need applied coupon code on checkout onepage success in magento 2. I have to send order coupon code to third party with Curl. Do you know, how we can retrieve coupon code used for the order on order success page?

Here is my observer code:

$orderIds = $observer->getEvent()->getOrderIds();
$lastorderId = $orderIds[0];
$order = $this->orderFactory->load($lastorderId);
// echo $order->getQuoteId(); // show quote ID
// echo $order->getDiscountAmount(); // show discount amount

/* Here I need applied Coupon Code */
役に立ちましたか?

解決

For getting the coupon code of an order, you should use

$order->getCouponCode();

他のヒント

You can use function:

$order->getCouponCode

In sales_order table, there is field coupon_code for applied coupon code.

ライセンス: CC-BY-SA帰属
所属していません magento.stackexchange
scroll top