samnabi / shopkit

Comprehensive commerce solution for Kirby CMS v2
https://shopkit.samnabi.com
Other
99 stars 15 forks source link

Cast transaction values as float when claculating total #193

Closed samnabi closed 6 years ago

samnabi commented 6 years ago

Line 13 of gateways/stripecheckout/process.php

$amount = $txn->subtotal()->value + $txn->shipping()->value - $txn->discount()->value - $txn->giftcertificate()->value;

Line 101 of snippets/order.details.php

$total = (float)$txn->subtotal()->value + (float)$txn->shipping()->value - (float)$txn->discount()->value - (float)$txn->giftcertificate()->value;

Maybe more?

HermesHarmony commented 6 years ago

Hi Sam, Is there a solution for this problem? Or a workaround?