[freeside-commits] branch master updated. 8f20806ac6eb7487c97f7d1c6d1b44acf0ad7674
Christopher Burger
burgerc at freeside.biz
Tue Jan 2 16:53:12 PST 2018
The branch, master has been updated
via 8f20806ac6eb7487c97f7d1c6d1b44acf0ad7674 (commit)
from ca2f12276eb88b2e71762c76974ae564f008b8c1 (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 8f20806ac6eb7487c97f7d1c6d1b44acf0ad7674
Author: Christopher Burger <burgerc at freeside.biz>
Date: Tue Jan 2 19:52:46 2018 -0500
RT# 34134 - added open invoices selection when selecting pay specific invoice
diff --git a/httemplate/elements/tr-select-invoice.html b/httemplate/elements/tr-select-invoice.html
index 03625b659..70923b633 100644
--- a/httemplate/elements/tr-select-invoice.html
+++ b/httemplate/elements/tr-select-invoice.html
@@ -22,4 +22,11 @@
my %opt = @_;
+my @records = qsearch( {
+ 'select' => '*',
+ 'table' => 'cust_bill',
+ 'hashref' => { 'custnum' => $opt{custnum} },
+ 'order_by' => 'ORDER BY _date',
+});
+
</%init>
-----------------------------------------------------------------------
Summary of changes:
httemplate/elements/tr-select-invoice.html | 7 +++++++
1 file changed, 7 insertions(+)
More information about the freeside-commits
mailing list