projects
/
freeside.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15c8ee2
)
RT# 34134 - added open invoices selection when selecting pay specific invoice
author
Christopher Burger
<burgerc@freeside.biz>
Wed, 3 Jan 2018 00:52:46 +0000
(19:52 -0500)
committer
Mitch Jackson
<mitch@freeside.biz>
Tue, 9 Jan 2018 03:35:47 +0000
(21:35 -0600)
httemplate/elements/tr-select-invoice.html
patch
|
blob
|
history
diff --git
a/httemplate/elements/tr-select-invoice.html
b/httemplate/elements/tr-select-invoice.html
index
03625b6
..
70923b6
100644
(file)
--- 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>