Extra logging and fix deposit paypal calculation

This commit is contained in:
2015-03-19 12:59:11 +11:00
parent ef4a87b97f
commit dbae57532d
3 changed files with 16 additions and 9 deletions

View File

@@ -825,7 +825,7 @@ function _booking_deposit_amount($include_fees = TRUE)
//add the 30 cent fixed cost
$amount_owing = $deposit->booking_price + 0.3;
//and the 2.4 percent transaction fee
$amount_owing = $amount_owing / (1 - 0.024);
$amount_owing = $amount_owing / (1 - 0.026);
}
else
{