fix sql radacct billing
[freeside.git] / httemplate / edit / part_bill_event.cgi
1 <!-- mason kludge -->
2 <%
3
4 if ( $cgi->param('eventpart') && $cgi->param('eventpart') =~ /^(\d+)$/ ) {
5   $cgi->param('eventpart', $1);
6 } else {
7   $cgi->param('eventpart', '');
8 }
9
10 my ($query) = $cgi->keywords;
11 my $action = '';
12 my $part_bill_event = '';
13 if ( $cgi->param('error') ) {
14   $part_bill_event = new FS::part_bill_event ( {
15     map { $_, scalar($cgi->param($_)) } fields('part_bill_event')
16   } );
17 }
18 if ( $query && $query =~ /^(\d+)$/ ) {
19   $part_bill_event ||= qsearchs('part_bill_event',{'eventpart'=>$1});
20 } else {
21   $part_bill_event ||= new FS::part_bill_event {};
22 }
23 $action ||= $part_bill_event->pkgpart ? 'Edit' : 'Add';
24 my $hashref = $part_bill_event->hashref;
25
26 print header("$action Invoice Event Definition", menubar(
27   'Main Menu' => popurl(2),
28   'View all invoice events' => popurl(2). 'browse/part_bill_event.cgi',
29 ));
30
31 print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'),
32       "</FONT>"
33   if $cgi->param('error');
34
35 print '<FORM ACTION="', popurl(1), 'process/part_bill_event.cgi" METHOD=POST>'.
36       '<INPUT TYPE="hidden" NAME="eventpart" VALUE="'.
37       $part_bill_event->eventpart  .'">';
38 print "Invoice Event #", $hashref->{eventpart} ? $hashref->{eventpart} : "(NEW)";
39
40 print ntable("#cccccc",2), <<END;
41 <TR><TD ALIGN="right">Payby</TD><TD><SELECT NAME="payby">
42 END
43
44 for (qw(CARD BILL COMP)) {
45   print qq!<OPTION VALUE="$_"!;
46   if ($part_bill_event->payby eq $_) {
47     print " SELECTED>$_</OPTION>";
48   } else {
49     print ">$_</OPTION>";
50   }
51 }
52
53 my $days = $hashref->{seconds}/86400;
54
55 print <<END;
56 </SELECT></TD></TR>
57 <TR><TD ALIGN="right">Event</TD><TD><INPUT TYPE="text" NAME="event" VALUE="$hashref->{event}"></TD></TR>
58 <TR><TD ALIGN="right">After</TD><TD><INPUT TYPE="text" NAME="days" VALUE="$days"> days</TD></TR>
59 END
60
61 print '<TR><TD ALIGN="right">Disabled</TD><TD>';
62 print '<INPUT TYPE="checkbox" NAME="disabled" VALUE="Y"';
63 print ' CHECKED' if $hashref->{disabled} eq "Y";
64 print '>';
65 print '</TD></TR>';
66
67 print '<TR><TD ALIGN="right">Action</TD><TD>';
68
69 #print ntable();
70
71 #this is pretty kludgy right here.
72 tie my %events, 'Tie::IxHash',
73
74   'fee' => {
75     'name'   => 'Late fee',
76     'code'   => '$cust_main->charge( %%%charge%%%, \'%%%reason%%%\' );',
77     'html'   => 
78       'Amount <INPUT TYPE="text" SIZE="7" NAME="charge" VALUE="%%%charge%%%">'.
79       '<BR>Reason <INPUT TYPE="text" NAME="reason" VALUE="%%%reason%%%">',
80     'weight' => 10,
81   },
82   'suspend' => {
83     'name'   => 'Suspend',
84     'code'   => '$cust_main->suspend();',
85     'weight' => 10,
86   },
87   'cancel' => {
88     'name'   => 'Cancel',
89     'code'   => '$cust_main->cancel();',
90     'weight' => 10,
91   },
92
93   'addpost' => {
94     'name' => 'Add postal invoicing',
95     'code' => '$cust_main->invoicing_list_addpost(); "";',
96     'weight'  => 20,
97   },
98
99   'comp' => {
100     'name' => 'Pay invoice with a complimentary "payment"',
101     'code' => '$cust_bill->comp();',
102     'weight' => 30,
103   },
104
105   'realtime-card' => {
106     'name' => 'Run card with a <a href="http://search.cpan.org/search?mode=module&query=Business%3A%3AOnlinePayment">Business::OnlinePayment</a> realtime gateway',
107     'code' => '$cust_bill->realtime_card();',
108     'weight' => 30,
109   },
110
111   'batch-card' => {
112     'name' => 'Add card to the pending credit card batch',
113     'code' => '$cust_bill->batch_card();',
114     'weight' => 40,
115   },
116
117   'send' => {
118     'name' => 'Send invoice (email/print)',
119     'code' => '$cust_bill->send();',
120     'weight' => 50,
121   },
122
123   'send_alternate' => {
124     'name' => 'Send invoice (email/print) with alternate template',
125     'code' => '$cust_bill->send(\'%%%templatename%%%\');',
126     'html' =>
127         '<INPUT TYPE="text" NAME="templatename" VALUE="%%%templatename%%%">',
128     'weight' => 50,
129   },
130
131   'send_csv_ftp' => {
132     'name' => 'Upload CSV invoice data to an FTP server',
133     'code' => '$cust_bill->send_csv( protocol => \'ftp\',
134                                      server   => \'%%%ftpserver%%%\',
135                                      username => \'%%%ftpusername%%%\',
136                                      password => \'%%%ftppassword%%%\',
137                                      dir      => \'%%%ftpdir%%%\'       );',
138     'html' =>
139         '<TABLE BORDER=0><TR><TD ALIGN="right">FTP server: </TD>'.
140           '<TD><INPUT TYPE="text" NAME="ftpserver" VALUE="%%%ftpserver%%%">'.
141           '</TD></TR>'.
142         '<TR><TD ALIGN="right">FTP username: </TD><TD>'.
143           '<INPUT TYPE="text" NAME="ftpusername" VALUE="%%%ftpusername%%%">'.
144           '</TD></TR>'.
145         '<TR><TD ALIGN="right">FTP password: </TD><TD>'.
146           '<INPUT TYPE="text" NAME="ftppassword" VALUE="%%%ftppassword%%%">'.
147           '</TD></TR>'.
148         '<TR><TD ALIGN="right">FTP directory: </TD>'.
149           '<TD><INPUT TYPE="text" NAME="ftpdir" VALUE="%%%ftpdir%%%">'.
150           '</TD></TR>'.
151         '</TABLE>',
152     'weight' => 50,
153   },
154
155   'bill' => {
156     'name' => 'Generate invoices (normally only used with a <i>Late Fee</i> event)',
157     'code' => '$cust_main->bill();',
158     'weight'  => 60,
159   },
160
161   'apply' => {
162     'name' => 'Apply unapplied payments and credits',
163     'code' => '$cust_main->apply_payments; $cust_main->apply_credits; "";',
164     'weight'  => 70,
165   },
166
167   'collect' => {
168     'name' => 'Collect on invoices (normally only used with a <i>Late Fee</i> and <i>Generate Invoice</i> events)',
169     'code' => '$cust_main->collect();',
170     'weight'  => 80,
171   },
172
173 ;
174
175 foreach my $event ( keys %events ) {
176   my %plandata = map { /^(\w+) (.*)$/; ($1, $2); }
177                    split(/\n/, $part_bill_event->plandata);
178   my $html = $events{$event}{html};
179   while ( $html =~ /%%%(\w+)%%%/ ) {
180     my $field = $1;
181     $html =~ s/%%%$field%%%/$plandata{$field}/;
182   }
183
184   print ntable( "#cccccc", 2).
185         qq!<TR><TD><INPUT TYPE="radio" NAME="plan_weight_eventcode" !;
186   print "CHECKED " if $event eq $part_bill_event->plan;
187   print qq!VALUE="!.  $event. ":". $events{$event}{weight}. ":".
188         encode_entities($events{$event}{code}).
189         qq!">$events{$event}{name}</TD>!;
190   print '<TD>'. $html. '</TD>' if $html;
191   print qq!</TR>!;
192   print '</TABLE>';
193 }
194
195 #print '</TABLE>';
196
197 print <<END;
198 </TD></TR>
199 </TABLE>
200 END
201
202 print qq!<INPUT TYPE="submit" VALUE="!,
203       $hashref->{eventpart} ? "Apply changes" : "Add invoice event",
204       qq!">!;
205 %>
206
207     </FORM>
208   </BODY>
209 </HTML>
210