merging RT 4.0.6
[freeside.git] / FS / FS / UI / Web / small_custview.pm
1 package FS::UI::Web::small_custview;
2
3 use strict;
4 use vars qw(@EXPORT_OK @ISA);
5 use Exporter;
6 use HTML::Entities;
7 use FS::Msgcat;
8 use FS::Record qw(qsearchs);
9 use FS::cust_main;
10
11 @ISA = qw(Exporter);
12 @EXPORT_OK = qw( small_custview );
13
14 =item small_custview CUSTNUM || CUST_MAIN_OBJECT, COUNTRYDEFAULT, NOBALANCE_FLAG, URL
15
16 Sheesh. I did switch to mason, but this is still hanging around.  Figure out
17 some better way to sling mason components to self-service & RT.
18
19 =cut
20
21 sub small_custview {
22
23   my $arg = shift;
24   my $countrydefault = shift || 'US';
25   my $nobalance = shift;
26   my $url = shift;
27
28   my $cust_main = ref($arg) ? $arg
29                   : qsearchs('cust_main', { 'custnum' => $arg } )
30     or die "unknown custnum $arg";
31
32   my $html = '<DIV ID="fs_small_custview">';
33   
34   $html = qq!View <A HREF="$url?! . $cust_main->custnum . '">'
35     if $url;
36
37   $html .= 'Customer #<B>'. $cust_main->display_custnum. '</B></A>'.
38     ' - <B><FONT COLOR="#'. $cust_main->statuscolor. '">'.
39     ucfirst($cust_main->status). '</FONT></B>';
40
41   my @part_tag = $cust_main->part_tag;
42   if ( @part_tag ) {
43     $html .= '<TABLE>';
44     foreach my $part_tag ( @part_tag ) {
45       $html .= '<TR><TD>'.
46                '<FONT '. ( length($part_tag->tagcolor)
47                            ? 'STYLE="background-color:#'.$part_tag->tagcolor.'"'
48                            : ''
49                          ).
50                '>'.
51                  encode_entities($part_tag->tagname.': '. $part_tag->tagdesc).
52                '</FONT>'.
53                '</TD></TR>';
54     }
55     $html .= '</TABLE>';
56   }
57
58   $html .=
59     ntable('#e8e8e8'). '<TR><TD VALIGN="top">'. ntable("#cccccc",2).
60     '<TR><TD ALIGN="right" VALIGN="top">Billing<BR>Address</TD><TD BGCOLOR="#ffffff">'.
61     $cust_main->getfield('last'). ', '. $cust_main->first. '<BR>';
62
63   $html .= $cust_main->company. '<BR>' if $cust_main->company;
64   $html .= $cust_main->address1. '<BR>';
65   $html .= $cust_main->address2. '<BR>' if $cust_main->address2;
66   $html .= $cust_main->city. ', '. $cust_main->state. '  '. $cust_main->zip. '<BR>';
67   $html .= $cust_main->country. '<BR>'
68     if $cust_main->country && $cust_main->country ne $countrydefault;
69
70   $html .= '</TD></TR><TR><TD></TD><TD BGCOLOR="#ffffff">';
71   if ( $cust_main->daytime && $cust_main->night ) {
72     $html .= ( FS::Msgcat::_gettext('daytime') || 'Day' ).
73              ' '. $cust_main->daytime.
74              '<BR>'. ( FS::Msgcat::_gettext('night') || 'Night' ).
75              ' '. $cust_main->night;
76   } elsif ( $cust_main->daytime || $cust_main->night ) {
77     $html .= $cust_main->daytime || $cust_main->night;
78   }
79   if ( $cust_main->fax ) {
80     $html .= '<BR>Fax '. $cust_main->fax;
81   }
82
83   $html .= '</TD></TR></TABLE></TD>';
84
85   my $ship = $cust_main->ship_location;
86
87   $html .= '<TD VALIGN="top">'. ntable("#cccccc",2).
88     '<TR><TD ALIGN="right" VALIGN="top">Service<BR>Address</TD><TD BGCOLOR="#ffffff">';
89   $html .= join('<BR>', 
90     grep $_,
91       $cust_main->contact,
92       $cust_main->company,
93       $ship->address1,
94       $ship->address2,
95       ($ship->city . ', ' . $ship->state . '  ' . $ship->zip),
96       ($ship->country eq $countrydefault ? '' : $ship->country ),
97   );
98
99   # ship phone numbers no longer exist...
100
101   $html .= '</TD></TR></TABLE></TD>';
102
103   $html .= '</TR></TABLE>';
104
105   $html .= '<BR>Balance: <B>$'. $cust_main->balance. '</B><BR>'
106     unless $nobalance;
107
108   # last payment might be good here too?
109
110   $html .= '</DIV>';
111
112   $html;
113 }
114
115 #bah.  don't want to pull in all of FS::CGI, that's the whole problem in the
116 #first place
117 sub ntable {
118   my $col = shift;
119   my $cellspacing = shift || 0;
120   if ( $col ) {
121     qq!<TABLE BGCOLOR="$col" BORDER=0 CELLSPACING=$cellspacing>!;
122   } else {
123     '<TABLE BORDER CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999">';
124   }
125
126 }
127
128 1;
129