Merge pull request #22653 from woocommerce/update/22568

Added `woocommerce_paypal_force_one_line_item` filter
This commit is contained in:
Mike Jolley 2019-02-12 16:12:29 +00:00 committed by GitHub
commit cd7959b59c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 5 deletions

View File

@ -184,10 +184,16 @@ class WC_Gateway_Paypal_Request {
protected function get_paypal_args( $order ) {
WC_Gateway_Paypal::log( 'Generating payment form for order ' . $order->get_order_number() . '. Notify URL: ' . $this->notify_url );
$force_one_line_item = apply_filters( 'woocommerce_paypal_force_one_line_item', false, $order );
if ( ( wc_tax_enabled() && wc_prices_include_tax() ) || ! $this->line_items_valid( $order ) ) {
$force_one_line_item = true;
}
$paypal_args = apply_filters(
'woocommerce_paypal_args', array_merge(
$this->get_transaction_args( $order ),
$this->get_line_item_args( $order )
$this->get_line_item_args( $order, $force_one_line_item )
), $order
);
@ -297,11 +303,8 @@ class WC_Gateway_Paypal_Request {
* @return array
*/
protected function get_line_item_args( $order, $force_one_line_item = false ) {
if ( wc_tax_enabled() && wc_prices_include_tax() || ! $this->line_items_valid( $order ) ) {
$force_one_line_item = true;
}
$line_item_args = array();
if ( $force_one_line_item ) {
/**
* Send order as a single item.