Skip to content

Commit

Permalink
NTR - Prepare plugin.xml for store update
Browse files Browse the repository at this point in the history
  • Loading branch information
mitelg committed Dec 4, 2018
1 parent 0d3bb4e commit 963d22f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class SimpleBasketValidatorTest extends \PHPUnit_Framework_TestCase
/**
* @dataProvider test_is_valid_dataProvider
*
* @param float $amountNumeric
* @param float amountNetNumeric
* @param float $amountNumeric
* @param float $amountNetNumeric
* @param int|null $chargeVat
* @param float $totalAmount
* @param bool $expectedResult
Expand All @@ -30,8 +30,9 @@ public function test_is_valid($amountNumeric, $amountNetNumeric, $chargeVat, $to
];
$userData = [
'additional' => [
'charge_vat' => $chargeVat,
], ];
'charge_vat' => $chargeVat,
],
];

$payment = new Payment();
$transactions = new Payment\Transactions();
Expand Down
15 changes: 14 additions & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,26 @@
<label lang="de">PayPal</label>
<label lang="en">PayPal</label>

<version>2.0.0</version>
<version>2.0.1</version>
<copyright>(c) by shopware AG</copyright>
<license>MIT</license>
<link>http://store.shopware.com</link>
<author>shopware AG</author>
<compatibility minVersion="5.2.0"/>

<changelog version="2.0.1">
<changes lang="de">
PT-9838 - Zum Ändern des Bezahlstatus wird nun die Core-Funktionalität genutzt;
PT-9942 - Kompatibilität mit Custom Products verbessert;
PT-9945 - Abweichende Steuerregeln werden nun korrekt angewendet, wenn mit Express Checkout bezahlt wird;
</changes>
<changes lang="en">
PT-9838 - The core functionality is now used to change the payment status;
PT-9942 - Improved compatibility with Custom Products;
PT-9945 - Different tax rules are now correctly applied when paying with Express Checkout;
</changes>
</changelog>

<changelog version="2.0.0">
<changes lang="de">
PT-9704 - Paypal Expresscheckout Konfiguration optimiert
Expand Down

0 comments on commit 963d22f

Please sign in to comment.