All currencies are delivered as times 100 (so cents are whole numbers). JPY not
In file:
oc-content/plugins/osclass_pay/payments/stripe/StripePayment.php
Find:
'amount' => round($amount*100),
replace it with:
'amount' => round(osp_currency() == 'JPY' ? $amount : $amount*100),