diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-08-23 23:10:52 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-08-23 23:10:52 -0700 |
commit | 23f2db6452f097640447b9b35dd106f408dbc20b (patch) | |
tree | 4a64133267a9dd546e869f8936a0652af6af79f5 /httemplate/search/report_cust_pkg.html | |
parent | 5fa459e35a04b69cbdc6b5b938eabcbc1bac6c74 (diff) |
continue sales person work: customer and package selection, commissions, reporting. RT#23402
Diffstat (limited to 'httemplate/search/report_cust_pkg.html')
-rwxr-xr-x | httemplate/search/report_cust_pkg.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/httemplate/search/report_cust_pkg.html b/httemplate/search/report_cust_pkg.html index e47bbb1e5..6cf297c91 100755 --- a/httemplate/search/report_cust_pkg.html +++ b/httemplate/search/report_cust_pkg.html @@ -18,8 +18,27 @@ 'disable_empty' => 0, ) %> + + <& /elements/tr-select-sales.html, + 'label' => 'Customer sales person', + 'element_name' => 'cust_main_salesnum', + 'id' => 'cust_main_salesnum', + 'curr_value' => scalar($cgi->param('cust_main_salesnum')), + 'pre_options' => [ '' => 'all', + 0 => '(none)', ], + 'disable_empty' => 1, + &> + % } + <& /elements/tr-select-sales.html, + 'label' => 'Package sales person', + 'curr_value' => scalar($cgi->param('salesnum')), + 'pre_options' => [ '' => 'all', + 0 => '(none)', ], + 'disable_empty' => 1, + &> + <% include( '/elements/tr-select-cust_pkg-status.html', 'onchange' => 'status_changed(this);', ) |