c98e0f98b8cce0672c290027726bfcdbf8736d2d
[freeside.git] / FS / FS / quotation_pkg.pm
1 package FS::quotation_pkg;
2 use base qw( FS::TemplateItem_Mixin FS::Record );
3
4 use strict;
5 use FS::Record qw( qsearchs ); #qsearch
6 use FS::part_pkg;
7 use FS::quotation_pkg_discount; #so its loaded when TemplateItem_Mixin needs it
8
9 =head1 NAME
10
11 FS::quotation_pkg - Object methods for quotation_pkg records
12
13 =head1 SYNOPSIS
14
15   use FS::quotation_pkg;
16
17   $record = new FS::quotation_pkg \%hash;
18   $record = new FS::quotation_pkg { 'column' => 'value' };
19
20   $error = $record->insert;
21
22   $error = $new_record->replace($old_record);
23
24   $error = $record->delete;
25
26   $error = $record->check;
27
28 =head1 DESCRIPTION
29
30 An FS::quotation_pkg object represents a quotation package.
31 FS::quotation_pkg inherits from FS::Record.  The following fields are currently
32 supported:
33
34 =over 4
35
36 =item quotationpkgnum
37
38 primary key
39
40 =item pkgpart
41
42 pkgpart
43
44 =item locationnum
45
46 locationnum
47
48 =item start_date
49
50 start_date
51
52 =item contract_end
53
54 contract_end
55
56 =item quantity
57
58 quantity
59
60 =item waive_setup
61
62 waive_setup
63
64
65 =back
66
67 =head1 METHODS
68
69 =over 4
70
71 =item new HASHREF
72
73 Creates a new quotation package.  To add the quotation package to the database,
74 see L<"insert">.
75
76 Note that this stores the hash reference, not a distinct copy of the hash it
77 points to.  You can ask the object for a copy with the I<hash> method.
78
79 =cut
80
81 sub table { 'quotation_pkg'; }
82
83 sub display_table         { 'quotation_pkg'; }
84
85 #forget it, just overriding cust_bill_pkg_display entirely
86 #sub display_table_orderby { 'quotationpkgnum'; } # something else?
87 #                                                 #  (for invoice display order)
88
89 sub discount_table        { 'quotation_pkg_discount'; }
90
91 =item insert
92
93 Adds this record to the database.  If there is an error, returns the error,
94 otherwise returns false.
95
96 =item delete
97
98 Delete this record from the database.
99
100 =item replace OLD_RECORD
101
102 Replaces the OLD_RECORD with this one in the database.  If there is an error,
103 returns the error, otherwise returns false.
104
105 =item check
106
107 Checks all fields to make sure this is a valid quotation package.  If there is
108 an error, returns the error, otherwise returns false.  Called by the insert
109 and replace methods.
110
111 =cut
112
113 sub check {
114   my $self = shift;
115
116   my $error = 
117     $self->ut_numbern('quotationpkgnum')
118     || $self->ut_foreign_key(  'quotationnum', 'quotation',    'quotationnum' )
119     || $self->ut_foreign_key(  'pkgpart',      'part_pkg',     'pkgpart'      )
120     || $self->ut_foreign_keyn( 'locationnum', 'cust_location', 'locationnum'  )
121     || $self->ut_numbern('start_date')
122     || $self->ut_numbern('contract_end')
123     || $self->ut_numbern('quantity')
124     || $self->ut_enum('waive_setup', [ '', 'Y'] )
125   ;
126   return $error if $error;
127
128   $self->SUPER::check;
129 }
130
131 #it looks redundant with a v4.x+ auto-generated method, but need to override
132 # FS::TemplateItem_Mixin's version
133 sub part_pkg {
134   my $self = shift;
135   qsearchs('part_pkg', { 'pkgpart' => $self->pkgpart } );
136 }
137
138 sub desc {
139   my $self = shift;
140   $self->part_pkg->pkg;
141 }
142
143 sub setup {
144   my $self = shift;
145   return '0.00' if $self->waive_setup eq 'Y' || $self->{'_NO_SETUP_KLUDGE'};
146   my $part_pkg = $self->part_pkg;
147   #my $setup = $part_pkg->can('base_setup') ? $part_pkg->base_setup
148   #                                         : $part_pkg->option('setup_fee');
149   my $setup = $part_pkg->option('setup_fee');
150   #XXX discounts
151   $setup *= $self->quantity if $self->quantity;
152   sprintf('%.2f', $setup);
153
154 }
155
156 sub recur {
157   my $self = shift;
158   return '0.00' if $self->{'_NO_RECUR_KLUDGE'};
159   my $part_pkg = $self->part_pkg;
160   my $recur = $part_pkg->can('base_recur') ? $part_pkg->base_recur
161                                            : $part_pkg->option('recur_fee');
162   #XXX discounts
163   $recur *= $self->quantity if $self->quantity;
164   sprintf('%.2f', $recur);
165 }
166
167 =item cust_bill_pkg_display [ type => TYPE ]
168
169 =cut
170
171 sub cust_bill_pkg_display {
172   my ( $self, %opt ) = @_;
173
174   my $type = $opt{type} if exists $opt{type};
175   return () if $type eq 'U'; #quotations don't have usage
176
177   if ( $self->get('display') ) {
178     return ( grep { defined($type) ? ($type eq $_->type) : 1 }
179                @{ $self->get('display') }
180            );
181   } else {
182
183     #??
184     my $setup = $self->new($self->hashref);
185     $setup->{'_NO_RECUR_KLUDGE'} = 1;
186     $setup->{'type'} = 'S';
187     my $recur = $self->new($self->hashref);
188     $recur->{'_NO_SETUP_KLUDGE'} = 1;
189     $recur->{'type'} = 'R';
190
191     if ( $type eq 'S' ) {
192       return ($setup);
193     } elsif ( $type eq 'R' ) {
194       return ($recur);
195     } else {
196       #return ($setup, $recur);
197       return ($self);
198     }
199
200   }
201
202 }
203
204 =item cust_main
205
206 Returns the customer (L<FS::cust_main> object).
207
208 =cut
209
210 sub cust_main {
211   my $self = shift;
212   my $quotation = FS::quotation->by_key($self->quotationnum) or return '';
213   $quotation->cust_main;
214 }
215
216 =back
217
218 =head1 BUGS
219
220 =head1 SEE ALSO
221
222 L<FS::Record>, schema.html from the base documentation.
223
224 =cut
225
226 1;
227