Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/code/Magento/Sales/Api/Data/OrderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,7 @@ public function getAdjustmentPositive();
/**
* Gets the applied rule IDs for the order.
*
* Rules are comma separated if there are more than one.
Comment thread
zack6849 marked this conversation as resolved.
* @return string|null Applied rule IDs.
*/
public function getAppliedRuleIds();
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Sales/Api/Data/OrderItemInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ public function getAmountRefunded();
/**
* Gets the applied rule IDs for the order item.
*
* Rules are comma separated if there are more than one.
Comment thread
zack6849 marked this conversation as resolved.
* @return string|null Applied rule IDs.
*/
public function getAppliedRuleIds();
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Sales/Model/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -2113,6 +2113,7 @@ public function getAdjustmentPositive()
/**
* Returns applied_rule_ids
*
* Rules are comma separated if there are more than one.
Comment thread
zack6849 marked this conversation as resolved.
* @return string|null
*/
public function getAppliedRuleIds()
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Sales/Model/Order/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ public function getAmountRefunded()
/**
* Returns applied_rule_ids
*
* Rules are comma separated if there are more than one.
Comment thread
zack6849 marked this conversation as resolved.
* @return string|null
*/
public function getAppliedRuleIds()
Expand Down