[freeside-commits] branch FREESIDE_3_BRANCH updated. 1fed7d3c8a2e483177e39eadab4e5d916c86ec8f
Ivan
ivan at 420.am
Mon Dec 30 16:52:02 PST 2013
The branch, FREESIDE_3_BRANCH has been updated
via 1fed7d3c8a2e483177e39eadab4e5d916c86ec8f (commit)
from 25b1fc860d3e6f78df66638e7a26079c2498d8a6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1fed7d3c8a2e483177e39eadab4e5d916c86ec8f
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Dec 30 16:52:01 2013 -0800
increase payment and credit popup sizes when pkg-balances is on, to make room for package selection, RT#22198
diff --git a/httemplate/view/cust_main/payment_history.html b/httemplate/view/cust_main/payment_history.html
index 95e34a1..204647f 100644
--- a/httemplate/view/cust_main/payment_history.html
+++ b/httemplate/view/cust_main/payment_history.html
@@ -12,7 +12,7 @@
'action' => "${p}edit/cust_pay.cgi?popup=1;payby=BILL",
'cust_main' => $cust_main,
'actionlabel' => emt('Enter check payment'),
- 'width' => 392,
+ 'width' => ( $opt{'pkg-balances'} ? 763 : 392),
'height' => 392,
&>
% }
@@ -24,7 +24,7 @@
'action' => "${p}edit/cust_pay.cgi?popup=1;payby=CASH",
'cust_main' => $cust_main,
'actionlabel' => emt('Enter cash payment'),
- 'width' => 392,
+ 'width' => ( $opt{'pkg-balances'} ? 763 : 392),
'height' => 392,
&>
% }
@@ -70,7 +70,7 @@
'action' => "${p}edit/cust_credit.cgi",
'cust_main' => $cust_main,
'actionlabel' => emt('Enter credit'),
- 'width' => 616, #make room for reasons #540 default
+ 'width' => ( $opt{'pkg-balances'} ? 763 : 616),
&>
% }
% if ( $curuser->access_right('Credit line items') ) {
-----------------------------------------------------------------------
Summary of changes:
httemplate/view/cust_main/payment_history.html | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
More information about the freeside-commits
mailing list