projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d92a00d
)
Revert "CRM-15407 - add fee_amount and net_amount to Dummy processor."
author
Dave Greenberg
<dave@civicrm.org>
Mon, 6 Oct 2014 21:39:52 +0000
(14:39 -0700)
committer
Dave Greenberg
<dave@civicrm.org>
Mon, 6 Oct 2014 21:39:52 +0000
(14:39 -0700)
CRM/Core/Payment/Dummy.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Core/Payment/Dummy.php
b/CRM/Core/Payment/Dummy.php
index efaeeefd37ecd8019773d494e211954e4821a386..05d19d37e2c2448b9404e1a70096f6462665fafd 100644
(file)
--- a/
CRM/Core/Payment/Dummy.php
+++ b/
CRM/Core/Payment/Dummy.php
@@
-119,10
+119,6
@@
class CRM_Core_Payment_Dummy extends CRM_Core_Payment {
$params['trxn_id'] = sprintf('live_%08d', $trxn_id);
}
$params['gross_amount'] = $params['amount'];
- // Add a fee_amount so we can make sure fees are handled properly in underlying classes.
- $params['fee_amount'] = 1.50;
- $params['net_amount'] = $params['gross_amount'] - $params['fee_amount'];
-
return $params;
}