diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-12-30 16:52:00 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-12-30 16:52:00 -0800 |
commit | dfc2e50770de813580136117ff4335fc83237df5 (patch) | |
tree | 6e4053dff01e97b3b19714aad4ccdc3e38685b74 | |
parent | 6039b78ce0ef2c95674a81d047ace8048dd00695 (diff) |
increase payment and credit popup sizes when pkg-balances is on, to make room for package selection, RT#22198
-rw-r--r-- | httemplate/view/cust_main/payment_history.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/view/cust_main/payment_history.html b/httemplate/view/cust_main/payment_history.html index 95e34a158..204647f97 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') ) { |