diff options
author | Christopher Burger <burgerc@freeside.biz> | 2018-01-02 19:52:46 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-01-02 19:52:46 -0500 |
commit | 8f20806ac6eb7487c97f7d1c6d1b44acf0ad7674 (patch) | |
tree | 4954bd78738719276e7aabd4e37259f01350c2d5 | |
parent | ca2f12276eb88b2e71762c76974ae564f008b8c1 (diff) |
RT# 34134 - added open invoices selection when selecting pay specific invoice
-rw-r--r-- | httemplate/elements/tr-select-invoice.html | 7 |
1 files changed, 7 insertions, 0 deletions
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> |