sales person commission report fixes, #25255
[freeside.git] / FS / FS / sales.pm
1 package FS::sales;
2 use base qw( FS::Agent_Mixin FS::Record );
3
4 use strict;
5 use FS::Record qw( qsearch qsearchs );
6 use FS::agent;
7 use FS::cust_main;
8 use FS::cust_bill_pkg;
9 use FS::cust_credit;
10
11 =head1 NAME
12
13 FS::sales - Object methods for sales records
14
15 =head1 SYNOPSIS
16
17   use FS::sales;
18
19   $record = new FS::sales \%hash;
20   $record = new FS::sales { 'column' => 'value' };
21
22   $error = $record->insert;
23
24   $error = $new_record->replace($old_record);
25
26   $error = $record->delete;
27
28   $error = $record->check;
29
30 =head1 DESCRIPTION
31
32 An FS::sales object represents a sales person.  FS::sales inherits from
33 FS::Record.  The following fields are currently supported:
34
35 =over 4
36
37 =item salesnum
38
39 primary key
40
41 =item agentnum
42
43 agentnum
44
45 =item disabled
46
47 disabled
48
49
50 =back
51
52 =head1 METHODS
53
54 =over 4
55
56 =item new HASHREF
57
58 Creates a new sales person.  To add the sales person to the database, see
59 L<"insert">.
60
61 Note that this stores the hash reference, not a distinct copy of the hash it
62 points to.  You can ask the object for a copy with the I<hash> method.
63
64 =cut
65
66 # the new method can be inherited from FS::Record, if a table method is defined
67
68 sub table { 'sales'; }
69
70 =item insert
71
72 Adds this record to the database.  If there is an error, returns the error,
73 otherwise returns false.
74
75 =cut
76
77 # the insert method can be inherited from FS::Record
78
79 =item delete
80
81 Delete this record from the database.
82
83 =cut
84
85 # the delete method can be inherited from FS::Record
86
87 =item replace OLD_RECORD
88
89 Replaces the OLD_RECORD with this one in the database.  If there is an error,
90 returns the error, otherwise returns false.
91
92 =cut
93
94 # the replace method can be inherited from FS::Record
95
96 =item check
97
98 Checks all fields to make sure this is a valid sales person.  If there is
99 an error, returns the error, otherwise returns false.  Called by the insert
100 and replace methods.
101
102 =cut
103
104 # the check method should currently be supplied - FS::Record contains some
105 # data checking routines
106
107 sub check {
108   my $self = shift;
109
110   my $error = 
111     $self->ut_numbern('salesnum')
112     || $self->ut_text('salesperson')
113     || $self->ut_foreign_key('agentnum', 'agent', 'agentnum')
114     || $self->ut_foreign_keyn('sales_custnum', 'cust_main', 'custnum')
115     || $self->ut_enum('disabled', [ '', 'Y' ])
116   ;
117   return $error if $error;
118
119   $self->SUPER::check;
120 }
121
122 =item sales_cust_main
123
124 Returns the FS::cust_main object (see L<FS::cust_main>), if any, for this
125 sales person.
126
127 =cut
128
129 sub sales_cust_main {
130   my $self = shift;
131   qsearchs( 'cust_main', { 'custnum' => $self->sales_custnum } );
132 }
133
134 sub cust_bill_pkg {
135   my( $self, $sdate, $edate, %search ) = @_;
136
137   my $cmp_salesnum = delete $search{'cust_main_sales'}
138                        ? ' COALESCE( cust_pkg.salesnum, cust_main.salesnum )'
139                        : ' cust_pkg.salesnum ';
140
141   my $classnum_sql = '';
142   if ( exists( $search{'classnum'}  ) ) {
143     my $classnum = $search{'classnum'};
144     $classnum_sql = " AND part_pkg.classnum ". ( $classnum ? " = $classnum "
145                                                            : ' IS NULL '     );
146   }
147
148   qsearch({ 'table'     => 'cust_bill_pkg',
149             'select'    => 'cust_bill_pkg.*',
150             'addl_from' => ' LEFT JOIN cust_bill USING ( invnum ) '.
151                            ' LEFT JOIN cust_pkg  USING ( pkgnum ) '.
152                            ' LEFT JOIN part_pkg  USING ( pkgpart ) '.
153                            ' LEFT JOIN cust_main ON ( cust_pkg.custnum = cust_main.custnum )',
154             'extra_sql' => ( keys %{ $search{'hashref'} }
155                                ? ' AND ' : 'WHERE '
156                            ).
157                            "     cust_bill._date >= $sdate ".
158                            " AND cust_bill._date  < $edate ".
159                            " AND $cmp_salesnum = ". $self->salesnum.
160                            $classnum_sql,
161             #%search,
162          });
163 }
164
165 sub cust_credit {
166   my( $self, $sdate, $edate, %search ) = @_;
167
168   $search{'hashref'}->{'commission_salesnum'} = $self->salesnum;
169
170   my $classnum_sql = '';
171   if ( exists($search{'commission_classnum'}) ) {
172     my $classnum = delete($search{'commission_classnum'});
173     $classnum_sql = " AND part_pkg.classnum ". ( $classnum ? " = $classnum"
174                                                            : " IS NULL "    );
175
176     $search{'addl_from'} .=
177       ' LEFT JOIN cust_pkg ON ( commission_pkgnum = cust_pkg.pkgnum ) '.
178       ' LEFT JOIN part_pkg USING ( pkgpart ) ';
179   }
180
181   qsearch({ 'table'     => 'cust_credit',
182             'extra_sql' => " AND cust_credit._date >= $sdate ".
183                            " AND cust_credit._date  < $edate ".
184                            $classnum_sql,
185             %search,
186          });
187 }
188
189 =back
190
191 =head1 BUGS
192
193 =head1 SEE ALSO
194
195 L<FS::Record>, schema.html from the base documentation.
196
197 =cut
198
199 1;
200