recognize 60xx as discover, RT#71291
[freeside.git] / FS / FS / bill_batch.pm
1 package FS::bill_batch;
2 use base qw(FS::Record);
3
4 use strict;
5 use vars qw( $me $DEBUG );
6 use CAM::PDF;
7 use FS::Conf;
8
9 $me = '[ FS::bill_batch ]';
10 $DEBUG = 0;
11
12 sub table { 'bill_batch' }
13
14 sub nohistory_fields { 'pdf' }
15
16 =head1 NAME
17
18 FS::bill_batch - Object methods for bill_batch records
19
20 =head1 SYNOPSIS
21
22   use FS::bill_batch;
23
24   $open_batch = FS::bill_batch->get_open_batch;
25   
26   my $pdf = $open_batch->print_pdf;
27   
28   $error = $open_batch->close;
29   
30 =head1 DESCRIPTION
31
32 An FS::bill_batch object represents a batch of invoices.  FS::bill_batch 
33 inherits from FS::Record.  The following fields are currently supported:
34
35 =over 4
36
37 =item batchnum - primary key
38
39 =item agentnum - empty for global batches or agent (see L<FS::agent>)
40
41 =item status - either 'O' (open) or 'R' (resolved/closed).
42
43 =item pdf - blob field for temporarily storing the invoice as a PDF.
44
45 =back
46
47 =head1 METHODS
48
49 =over 4
50
51 =item print_pdf
52
53 Typeset the entire batch as a PDF file.  Returns the PDF as a string.
54
55 =cut
56
57 sub print_pdf {
58   my $self = shift;
59   my $job = shift;
60   $job->update_statustext(0) if $job;
61   my @invoices = sort { $a->invnum <=> $b->invnum } $self->cust_bill_batch;
62   return "No invoices in batch ".$self->batchnum.'.' if !@invoices;
63
64   my $conf = FS::Conf->new;
65   my $duplex = $conf->exists('invoice_print_pdf-duplex');
66
67   my $pdf_out;
68   my $num = 0;
69   foreach my $invoice (@invoices) {
70     my $part = $invoice->cust_bill->print_pdf({$invoice->options});
71     die 'Failed creating PDF from invoice '.$invoice->invnum.'\n' if !$part;
72
73     if($pdf_out) {
74       $pdf_out->appendPDF(CAM::PDF->new($part));
75     }
76     else {
77       $pdf_out = CAM::PDF->new($part);
78     }
79     if ( $duplex ) {
80       my $n = $pdf_out->numPages;
81       if ( $n % 2 == 1 ) {
82         # then insert a blank page so we end on an even number
83         $pdf_out->duplicatePage($n, 1);
84       }
85     }
86     if($job) {
87       # update progressbar
88       $num++;
89       my $error = $job->update_statustext(int(100 * $num/scalar(@invoices)));
90       die $error if $error;
91     }
92   }
93   $job->update_statustext(100, 'Combining invoices') if $job;
94
95   return $pdf_out->toPDF;
96 }
97
98 =item close
99
100 Set the status of the batch to 'R' (resolved).
101
102 =cut
103
104 sub close {
105   my $self = shift;
106   $self->status('R');
107   return $self->replace;
108 }
109
110 sub check {
111   my $self = shift;
112
113   my $error =
114        $self->ut_numbern('batchnum')
115     || $self->ut_foreign_keyn('agentnum', 'agent', 'agentnum')
116     || $self->ut_enum('status', [ 'O', 'R' ] )
117   ;
118   return $error if $error;
119
120   $self->SUPER::check;
121 }
122
123 =item agent
124
125 Returns the agent (see L<FS::agent>) for this invoice batch.
126
127 =back
128
129 =head1 SUBROUTINES
130
131 =item process_print_pdf
132
133 =cut
134
135 use Data::Dumper;
136
137 sub process_print_pdf {
138   my $job = shift;
139   my $param = shift;
140   warn Dumper($param) if $DEBUG;
141   die "no batchnum specified!\n" if ! exists($param->{batchnum});
142   my $batch = FS::bill_batch->by_key($param->{batchnum});
143   die "batch '$param->{batchnum}' not found!\n" if !$batch;
144
145   if ( $param->{'close'} ) {
146     my $error = $batch->close;
147     die $error if $error;
148   }
149
150   my $pdf = $batch->print_pdf($job);
151   $batch->pdf($pdf);
152   my $error = $batch->replace;
153   die $error if $error;
154 }
155
156 =back
157
158 =head1 BUGS
159
160 =head1 SEE ALSO
161
162 L<FS::Record>, schema.html from the base documentation.
163
164 =cut
165
166 1;
167