I get the following error when redirected to the webmoney website.
2 payment amount (60861.858) not corrected

This error come when the payment amount is more than two digit after the decimal point in this case three(858). When they are two that is fine.

I also tried to use the function payment_format before redirection and modified the amount to something like 60, 861.85. It redirects ok but the amount after the comma is truncated which means the amount becomes just 60.

Comments

wisdom’s picture

Making the following slight change around line 136 in the webmoney_form function help to resolve the issue.
$purses[$template->purse]=number_format($t->gross,2) * $template->rate." ".$template->type;

number_format is used for the gross amount. Alternate and more elegant solution is appreciated.

gor’s picture

Assigned: Unassigned » gor
Status: Active » Fixed

The issue has been fixed. Please check it.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.