diff options
| author | Jonathan Prykop <jonathan@freeside.biz> | 2015-08-20 01:42:15 -0500 |
|---|---|---|
| committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-08-20 01:42:15 -0500 |
| commit | 2dddd8e1742bf2e8ebe9f2d3e560bc78bba95cff (patch) | |
| tree | 9bc5739f2a67e846fcddc641937da34ee0362804 /httemplate | |
| parent | 866994096d21b914815cb06353397dc4d00438f3 (diff) | |
RT#14829: automatic payments triggered by bill now show up as Payment by fs_queue
Diffstat (limited to 'httemplate')
| -rw-r--r-- | httemplate/search/queue.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/httemplate/search/queue.html b/httemplate/search/queue.html index 141c535da..22032b13c 100644 --- a/httemplate/search/queue.html +++ b/httemplate/search/queue.html @@ -13,6 +13,7 @@ 'Date', 'Status', 'Account', # unless $hashref->{'svcnum'} + 'Employee', '', # checkbox column ], 'fields' => [ @@ -78,6 +79,11 @@ }, sub { my $queue = shift; + my $access_user = $queue->access_user; + return $access_user ? $access_user->username : ''; + }, + sub { + my $queue = shift; my $jobnum = $queue->jobnum; my $status = $queue->status; my $changable = $dangerous |
