X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fsearch%2Fcust_bill_pay_pkg.html;h=e2ffd1258ff76e849d7711a08025aa32a89872f8;hp=5a3be755115bec53b811c909ce0ed2a1b61031e4;hb=fc263806f5e475559a0c4cfdb70a5f1cefe0ffa3;hpb=d263de52c7c09e940bbe9d794dded878b98e789b diff --git a/httemplate/search/cust_bill_pay_pkg.html b/httemplate/search/cust_bill_pay_pkg.html index 5a3be7551..e2ffd1258 100644 --- a/httemplate/search/cust_bill_pay_pkg.html +++ b/httemplate/search/cust_bill_pay_pkg.html @@ -14,6 +14,7 @@ #payment 'Date', + @on_header, 'By', #application @@ -43,6 +44,7 @@ ? cardtype($cust_pay->paymask) : ''; }, sub { time2str('%b %d %Y', shift->get('cust_pay_date') ) }, + @on_field, sub { shift->cust_bill_pay->cust_pay->otaker }, sub { sprintf($money_char.'%.2f', shift->amount ) }, @@ -64,6 +66,7 @@ '', #payinfo/paymask '', #cardtype 'cust_pay_date', + @on_null, #order_number '', #'otaker', '', #amount '', #line item description @@ -80,6 +83,7 @@ '', '', '', + @on_null, '', '', '', @@ -92,10 +96,9 @@ FS::UI::Web::cust_header() ), ], - 'align' => 'rcrlrlrlll', -#original value before cardtype & package were added -#why are there 13 cols? -#'rcrrlrlllrrcl'. + 'align' => 'rcrlr'. + $on_align. + 'lrlll'. $post_desc_align. 'rr'. FS::UI::Web::cust_aligns(), @@ -105,6 +108,7 @@ '', '', '', + @on_null, '', '', '', @@ -121,6 +125,7 @@ '', '', '', + @on_null, '', '', '', @@ -142,6 +147,17 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Financial reports'); +my @on_header = (); +my @on_field = (); +my @on_null = (); +my $on_align = ''; +if ($cgi->param('show_order_number')) { + @on_header = ('Order Number'); + @on_field = (sub { shift->cust_bill_pay->cust_pay->order_number }); + @on_null = (''); + $on_align = 'r'; +} + my $conf = new FS::Conf; my %payby = FS::payby->payby2shortname;