summaryrefslogtreecommitdiff
path: root/httemplate/search/cust_svc.html
blob: b2826309a997adc861ec3b491dff684d350c1ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<& elements/search.html,
          'title'       => emt('Service search results'),
          'name'        => emt('services'),
          'query'       => $sql_query,
          'count_query' => $count_query,
          'redirect'    => $link,
          'header'      => [ emt('#'),
                             emt('Service'),
                             emt('Pkg. Status'),
                             # package?
                             FS::UI::Web::cust_header(),
                           ],
          'fields'      => [ 'svcnum',
                             sub { 
                               #$_[0]->svc. ': '. $_[0]->label;
                               my($label, $value, $svcdb) = $_[0]->label;
                               my $id = $_[0]->agent_svcid
                                      ? $_[0]->agent_svcid.': '
                                      : '';
                               "$label: $id$value";
                             },
                             sub {
                               $cust_pkg_cache{$_[0]->svcnum} ||= $_[0]->cust_pkg;
                               return '' unless $cust_pkg_cache{$_[0]->svcnum};
                               $cust_pkg_cache{$_[0]->svcnum}->ucfirst_status
                             },
                             # package?
                             \&FS::UI::Web::cust_fields,
                           ],
          'links'       => [ $link,
                             $link,
                             '', # pkg status
                             # package?
                             ( map { $_ ne 'Cust. Status' ? $link_cust : '' }
                                 FS::UI::Web::cust_header()
                             ),
                           ],
          'align'       => 'rlr'. FS::UI::Web::cust_aligns(),
          'color'       => [ 
                             '',
                             '',
                             sub {
                               $cust_pkg_cache{$_[0]->svcnum} ||= $_[0]->cust_pkg;
                               return '' unless $cust_pkg_cache{$_[0]->svcnum};
                               my $c = FS::cust_pkg::statuscolors;
                               $c->{$cust_pkg_cache{$_[0]->svcnum}->status };
                             }, # pkg status
                             FS::UI::Web::cust_colors(),
                           ],
          'style'       => [ 
                             '',
                             '',
                             'b', # pkg status
                             FS::UI::Web::cust_styles(),
                           ],
&>
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('List services');

my %cust_pkg_cache;

my $sql_query;

my $orderby = 'ORDER BY cust_svc.svcnum'; #has to be ordered by something
                                          #for pagination to work

if ( length( $cgi->param('search_svc') ) ) {

  $sql_query = {
    FS::cust_svc->smart_search_param(
     'search' => scalar($cgi->param('search_svc'))
    )
  };

} else {

  my $addl_from = ' LEFT JOIN part_svc  USING ( svcpart ) '.
                  ' LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
                  FS::UI::Web::join_cust_main('cust_pkg', 'cust_pkg');

  my @extra_sql = ();

  if ( $cgi->param('magic') =~ /^(all|unlinked)$/ ) {

    $cgi->param('svcdb') =~ /^(svc_\w+)$/ or die "unknown svcdb";
    push @extra_sql, "svcdb = '$1'";
    $addl_from .= " LEFT JOIN $1 USING ( svcnum ) ";

    push @extra_sql, 'pkgnum IS NULL'
      if $cgi->param('magic') eq 'unlinked';

    if ( $cgi->param('sortby') =~ /^(\w+)$/ ) {
      my $sortby = $1;
      $orderby = "ORDER BY $sortby";
    }

  } elsif ( $cgi->param('svcpart') =~ /^(\d+)$/ ) {

    push @extra_sql, "svcpart = $1";
    if (defined($cgi->param('cancelled'))) {
      if ($cgi->param('cancelled')) {
        push @extra_sql, "cust_pkg.cancel IS NOT NULL";
      } else {
        push @extra_sql, "cust_pkg.cancel IS NULL";
      }
    }

  } else {
    errorpage("No search term specified");
  }

  #here is the agent virtualization
  push @extra_sql, $FS::CurrentUser::CurrentUser->agentnums_sql( 
                     'null_right' => 'View/link unlinked services'
                   );

  my $extra_sql = ' WHERE '. join(' AND ', @extra_sql );

  $sql_query = {
    'select'     => 'cust_svc.*, part_svc.*',
    'table'      => 'cust_svc',
    'addl_from'  => $addl_from,
    'hashref'    => {},
    'extra_sql'  => $extra_sql,
  };

}

# at this point the query must provide all fields from 
# cust_svc and part_svc, and must include join_cust_main.
$sql_query->{'select'} = join(', ',
                                    $sql_query->{'select'},
                                    'cust_main.custnum',
                                    FS::UI::Web::cust_sql_fields(),
                             );
$sql_query->{'order_by'} = $orderby;

my $count_query = "SELECT COUNT(*) FROM cust_svc ". $sql_query->{addl_from}.
                                               ' '. $sql_query->{extra_sql};

my $link = sub {
  my $cust_svc = shift;
  my $url;
  if ( $cust_svc->svcpart ) {
    $url = svc_url(
      'm'        => $m,
      'action'   => 'view',
      'svcdb'    => $cust_svc->svcdb, #we have it from the joined search
      'query'     => '',
    );
  } else { # bizarre unlinked service case
    $url = $p.'view/svc_Common.html?svcdb='.$cust_svc->svcdb.';svcnum=';
  }
  [ $url, 'svcnum' ];
};

my $link_cust = sub {
  my $cust_svc = shift;
  if ( $cust_svc->custnum ) {
    [ "${p}view/cust_main.cgi?", 'custnum' ];
  } else {
    '';
  }
};

</%init>