summaryrefslogtreecommitdiff
path: root/httemplate/search/report_cust_pkg.html
blob: 289fec45890129457a7eb07dae0ae5fd54bec22d (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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<% include('/elements/header.html', $title ) %>

<FORM ACTION="cust_pkg.cgi" METHOD="GET">
<INPUT TYPE="hidden" NAME="magic" VALUE="bill">
<INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>">

  <TABLE BGCOLOR="#cccccc" CELLSPACING=0>

    <TR>
      <TH CLASS="background" COLSPAN=2 ALIGN="left">
        <FONT SIZE="+1">Search options</FONT>
      </TH>
    </TR>

% unless ( $custnum ) {
    <% include( '/elements/tr-select-agent.html',
                   'curr_value'    => scalar( $cgi->param('agentnum') ),
                   'disable_empty' => 0,
               )
    %>
% }

    <% include( '/elements/tr-select-cust_pkg-status.html',
                  'onchange' => 'status_changed(this);',
              )
    %>

    <SCRIPT TYPE="text/javascript">
  
      function status_changed(what) {

%       foreach my $status ( '', FS::cust_pkg->statuses() ) {

          if ( what.options[what.selectedIndex].value == '<% $status %>' ) {

%           foreach my $field (qw( setup last_bill bill adjourn susp expire cancel )) {
%             if ( $disable{$status}->{$field} ) {

                what.form.<% $field %>_beginning_text.disabled = true;
                what.form.<% $field %>_ending_text.disabled = true;
                what.form.<% $field %>_beginning_text.style.backgroundColor = '#dddddd';
                what.form.<% $field %>_ending_text.style.backgroundColor = '#dddddd';

                what.form.<% $field %>_beginning_button.style.display = 'none';
                what.form.<% $field %>_ending_button.style.display = 'none';
                what.form.<% $field %>_beginning_disabled.style.display = '';
                what.form.<% $field %>_ending_disabled.style.display = '';

%             } else {

                what.form.<% $field %>_beginning_text.disabled = false;
                what.form.<% $field %>_ending_text.disabled = false;
                what.form.<% $field %>_beginning_text.style.backgroundColor = '#ffffff';
                what.form.<% $field %>_ending_text.style.backgroundColor = '#ffffff';

                what.form.<% $field %>_beginning_button.style.display = '';
                what.form.<% $field %>_ending_button.style.display = '';
                what.form.<% $field %>_beginning_disabled.style.display = 'none';
                what.form.<% $field %>_ending_disabled.style.display = 'none';

%             }
%           }

          }

%       }

      }

    </SCRIPT>

    <% include( '/elements/tr-select-pkg_class.html',
                   'pre_options' => [ '0' => 'all' ],
                   'empty_label' => '(empty class)',
               )
    %>

%   if ( scalar( qsearch( 'part_pkg_report_option', { 'disabled' => '' } ) ) ) {

    <% include( '/elements/tr-select-table.html',
                   'label'        => 'Report classes',
                   'table'        => 'part_pkg_report_option',
                   'name_col'     => 'name',
                   'hashref'      => { 'disabled' => '' },
                   'element_name' => 'report_option',
                   'multiple'     => 'multiple',
               )
    %>

%   }

%   foreach my $field (qw( setup last_bill bill adjourn susp expire contract_end cancel )) {

      <TR>
        <TD ALIGN="right" VALIGN="center"><% $label{$field} %></TD>
        <TD>
          <TABLE>
            <% include( '/elements/tr-input-beginning_ending.html',
                          prefix   => $field,
                          layout   => 'horiz',
                      )
            %>
          </TABLE>
        </TD>
      </TR>

%   }
    
    <SCRIPT TYPE="text/javascript">
  
      function custom_changed(what) {

        if ( what.checked  ) {

          what.form.pkgpart.disabled = true;
          what.form.pkgpart.style.backgroundColor = '#dddddd';

        } else {

          what.form.pkgpart.disabled = false;
          what.form.pkgpart.style.backgroundColor = '#ffffff';

        }

      }

    </SCRIPT>

    <% include( '/elements/tr-checkbox.html',
                'label' => 'Custom packages',
                'field' => 'custom',
                'value' => 1,
                'onchange' => 'custom_changed(this);',
              )
    %> 

    <% include( '/elements/tr-selectmultiple-part_pkg.html' ) %> 

    <TR>
      <TH CLASS="background" COLSPAN=2>&nbsp;</TH>
    </TR>

    <TR>
      <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1">Display options</FONT></TH>
    </TR>
    <% include( '/elements/tr-select-cust-fields.html' ) %>
    
  </TABLE>

<BR>
<INPUT TYPE="submit" VALUE="Get Report">

</FORM>

<% include('/elements/footer.html') %>
<%init>

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

my $title = 'Package Report';

my $custnum = '';
if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
  $custnum = $1;
  my $cust_main = qsearchs({
    'table'     => 'cust_main', 
    'hashref'   => { 'custnum' => $custnum },
    'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
  }) or die "unknown custnum $custnum";
  $title .= ': '. $cust_main->name;
}

</%init>
<%once>

my %label = (
  'setup'     => 'Setup',
  'last_bill' => 'Last bill',
  'bill'      => 'Next bill',
  'adjourn'   => 'Adjourns',
  'susp'      => 'Suspended',
  'expire'    => 'Expires',
  'contract_end' => 'Contract ends',
  'cancel'    => 'Cancelled',
);

#false laziness w/cust_pkg.cgi
my %disable = (
  'all'             => {},
  'not yet billed'  => { 'setup'=>1, 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, },
  'one-time charge' => { 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, },
  'active'          => { 'susp'=>1, 'cancel'=>1 },
  'suspended'       => { 'cancel' => 1 },
  'cancelled'       => {},
  ''                => {},
);

#hmm?
my %checkbox = (
  'setup'     => 0,
  'last_bill' => 0,
  'bill'      => 0,
  'susp'      => 1,
  'expire'    => 1,
  'cancel'    => 1,
);

</%once>