summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2005-05-15 13:49:39 +0000
committerivan <ivan>2005-05-15 13:49:39 +0000
commit2fd0023de631502a7a3b86cf7e8269ae7030d248 (patch)
treebcdda48046d718e3b337819606908091aecd1064 /httemplate
parentae7a7aedd844e581638d435e432e08a76f8097d1 (diff)
this status column is probably faster, one giant SQL query. and add back in the customer link, oops
Diffstat (limited to 'httemplate')
-rwxr-xr-xhttemplate/search/report_receivables.cgi71
1 files changed, 43 insertions, 28 deletions
diff --git a/httemplate/search/report_receivables.cgi b/httemplate/search/report_receivables.cgi
index 6a2dff3e1..4c835fb7a 100755
--- a/httemplate/search/report_receivables.cgi
+++ b/httemplate/search/report_receivables.cgi
@@ -116,8 +116,8 @@ END
'header' => [
'#',
'Customer',
- 'Status (me)',
- 'Status (cust_main)',
+ 'Status', # (me)',
+ #'Status', # (cust_main)',
'0-30',
'30-60',
'60-90',
@@ -128,7 +128,7 @@ END
'',
'Total',
'',
- '',
+ #'',
sprintf( $money_char.'%.2f',
$row->{'owed_0_30'} ),
sprintf( $money_char.'%.2f',
@@ -140,13 +140,10 @@ END
sprintf( '<b>'. $money_char.'%.2f'. '</b>',
$row->{'owed_total'} ),
],
- 'align' => 'rlccrrrrr',
- 'size' => [ '', '', '-1', '-1', '', '', '', '', '', ],
- 'style' => [ '', '', 'b', 'b', '', '', '', '', 'b', ],
- 'color' => [
- '',
- '',
- sub {
+ 'fields' => [
+ 'custnum',
+ 'name',
+ sub {
my $row = shift;
my $status = 'Cancelled';
my $statuscol = 'FF0000';
@@ -158,19 +155,41 @@ END
$statuscol = '00CC00';
}
}
- $statuscol;
+ $status;
},
- sub { shift->statuscolor; },
+ #sub { ucfirst(shift->status) },
+ sub { sprintf( $money_char.'%.2f',
+ shift->get('owed_0_30') ) },
+ sub { sprintf( $money_char.'%.2f',
+ shift->get('owed_30_60') ) },
+ sub { sprintf( $money_char.'%.2f',
+ shift->get('owed_60_90') ) },
+ sub { sprintf( $money_char.'%.2f',
+ shift->get('owed_90_pl') ) },
+ sub { sprintf( $money_char.'%.2f',
+ shift->get('owed_total') ) },
+ ],
+ 'links' => [
+ [ "${p}view/cust_main.cgi?", 'custnum' ],
+ [ "${p}view/cust_main.cgi?", 'custnum' ],
+ '',
+ #'',
'',
'',
'',
'',
'',
],
- 'fields' => [
- 'custnum',
- 'name',
- sub {
+ #'align' => 'rlccrrrrr',
+ 'align' => 'rlcrrrrr',
+ #'size' => [ '', '', '-1', '-1', '', '', '', '', '', ],
+ #'style' => [ '', '', 'b', 'b', '', '', '', '', 'b', ],
+ 'size' => [ '', '', '-1', '', '', '', '', '', ],
+ 'style' => [ '', '', 'b', '', '', '', '', 'b', ],
+ 'color' => [
+ '',
+ '',
+ sub {
my $row = shift;
my $status = 'Cancelled';
my $statuscol = 'FF0000';
@@ -182,20 +201,16 @@ END
$statuscol = '00CC00';
}
}
- $status;
+ $statuscol;
},
- sub { ucfirst(shift->status) },
- sub { sprintf( $money_char.'%.2f',
- shift->get('owed_0_30') ) },
- sub { sprintf( $money_char.'%.2f',
- shift->get('owed_30_60') ) },
- sub { sprintf( $money_char.'%.2f',
- shift->get('owed_60_90') ) },
- sub { sprintf( $money_char.'%.2f',
- shift->get('owed_90_pl') ) },
- sub { sprintf( $money_char.'%.2f',
- shift->get('owed_total') ) },
+ #sub { shift->statuscolor; },
+ '',
+ '',
+ '',
+ '',
+ '',
],
+
)
%>