Skip to content

Commit

Permalink
Merge pull request #10 from yugeshramteke/master
Browse files Browse the repository at this point in the history
Removed chargeback nodes from feedback request
  • Loading branch information
yugeshramteke authored Sep 29, 2016
2 parents 27075dd + 9064dac commit 158ea37
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,7 @@ protected function _buildFeedback()
->setOrderId($this->_order->getIncrementId())
->setStoreId($this->_config->getStoreId())
->setActionTaken($this->_order->getState())
->setActionTakenDescription($this->_order->getStatus())
->setChargeBackCode(static::CHARGE_BACK_CODE)
->setChargeBackFlagDescription(static::CHARGE_BACK_FLAG_DESCRIPTION);
->setActionTakenDescription($this->_order->getStatus());
return $this;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ protected function _updateFeedback()
$this->_incrementFeedbackAttemptCount()
->setIsFeedbackSent(1)
->setActionTakenAcknowledgement($this->_sdkHelper->convertStringToBoolean($this->_response->getActionTakenAcknowledgement()))
->setChargeBackAcknowledgement($this->_sdkHelper->convertStringToBoolean($this->_response->getChargeBackAcknowledgement()))
->save();
}
return $this;
Expand Down

0 comments on commit 158ea37

Please sign in to comment.