Skip to content

Commit 20daa3c

Browse files
committed
Fix included tax being added to total
Fixes #6
1 parent 366039e commit 20daa3c

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.4 - 2020-02-27
2+
### Fixed
3+
- Fix included tax being added to total (Fixes #6)
4+
15
## 1.0.3 - 2019-08-23
26
### Added
37
- Add `reload` function to button JS object (Closes #3)

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ether/web-payments",
33
"description": "Use the Web Payments API and Google / Apply Pay to vastly improve your checkout process!",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"type": "craft-plugin",
66
"keywords": [
77
"payments",

src/services/StripeService.php

+9-8
Original file line numberDiff line numberDiff line change
@@ -170,16 +170,17 @@ public function orderToPaymentRequest (Order $order, $includeItems = false)
170170
}
171171

172172
foreach ($order->adjustments as $adjustment)
173-
{
174-
$amount = $adjustment->amount * 100;
173+
if (!$adjustment->included)
174+
{
175+
$amount = $adjustment->amount * 100;
175176

176-
$displayItems[] = [
177-
'label' => $adjustment->name,
178-
'amount' => $amount,
179-
];
177+
$displayItems[] = [
178+
'label' => $adjustment->name,
179+
'amount' => $amount,
180+
];
180181

181-
$total += $amount;
182-
}
182+
$total += $amount;
183+
}
183184

184185
$ret = [
185186
'id' => $order->id,

0 commit comments

Comments
 (0)