New files from unstable branch
[fa-stable.git] / reporting / rep103.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL,
5         as published by the Free Software Foundation, either version 3
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_CUSTBULKREP';
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Customer Details Listing
18 // ----------------------------------------------------------------
19 $path_to_root="..";
20
21 include_once($path_to_root . "/includes/session.inc");
22 include_once($path_to_root . "/includes/date_functions.inc");
23 include_once($path_to_root . "/includes/data_checks.inc");
24 include_once($path_to_root . "/gl/includes/gl_db.inc");
25
26 //----------------------------------------------------------------------------------------------------
27
28 print_customer_details_listing();
29
30 function get_customer_details_for_report($area=0, $salesid=0)
31 {
32         $sql = "SELECT ".TB_PREF."debtors_master.debtor_no,
33                         ".TB_PREF."debtors_master.name,
34                         ".TB_PREF."debtors_master.address,
35                         ".TB_PREF."sales_types.sales_type,
36                         ".TB_PREF."cust_branch.branch_code,
37                         ".TB_PREF."cust_branch.br_name,
38                         ".TB_PREF."cust_branch.br_address,
39                         ".TB_PREF."cust_branch.contact_name,
40                         ".TB_PREF."cust_branch.area,
41                         ".TB_PREF."cust_branch.salesman,
42                         ".TB_PREF."areas.description,
43                         ".TB_PREF."salesman.salesman_name
44                 FROM ".TB_PREF."debtors_master
45                 INNER JOIN ".TB_PREF."cust_branch
46                         ON ".TB_PREF."debtors_master.debtor_no=".TB_PREF."cust_branch.debtor_no
47                 INNER JOIN ".TB_PREF."sales_types
48                         ON ".TB_PREF."debtors_master.sales_type=".TB_PREF."sales_types.id
49                 INNER JOIN ".TB_PREF."areas
50                         ON ".TB_PREF."cust_branch.area = ".TB_PREF."areas.area_code
51                 INNER JOIN ".TB_PREF."salesman
52                         ON ".TB_PREF."cust_branch.salesman=".TB_PREF."salesman.salesman_code";
53         if ($area != 0)
54         {
55                 if ($salesid != 0)
56                         $sql .= " WHERE ".TB_PREF."salesman.salesman_code=".db_escape($salesid)."
57                                 AND ".TB_PREF."areas.area_code=".db_escape($area);
58                 else
59                         $sql .= " WHERE ".TB_PREF."areas.area_code=".db_escape($area);
60         }
61         elseif ($salesid != 0)
62                 $sql .= " WHERE ".TB_PREF."salesman.salesman_code=".db_escape($salesid);
63         $sql .= " ORDER BY description,
64                         ".TB_PREF."salesman.salesman_name,
65                         ".TB_PREF."debtors_master.debtor_no,
66                         ".TB_PREF."cust_branch.branch_code";
67
68     return db_query($sql,"No transactions were returned");
69 }
70
71
72 function getTransactions($debtorno, $branchcode, $date)
73 {
74         $date = date2sql($date);
75
76         $sql = "SELECT SUM((ov_amount+ov_freight+ov_discount)*rate) AS Turnover
77                 FROM ".TB_PREF."debtor_trans
78                 WHERE debtor_no=".db_escape($debtorno)."
79                 AND branch_code=".db_escape($branchcode)."
80                 AND (type=".ST_SALESINVOICE." OR type=".ST_CUSTCREDIT.")
81                 AND tran_date >='$date'";
82
83     $result = db_query($sql,"No transactions were returned");
84
85         $row = db_fetch_row($result);
86         return $row[0];
87 }
88
89 //----------------------------------------------------------------------------------------------------
90
91 function print_customer_details_listing()
92 {
93     global $path_to_root;
94
95     $from = $_POST['PARAM_0'];
96     $area = $_POST['PARAM_1'];
97     $folk = $_POST['PARAM_2'];
98     $more = $_POST['PARAM_3'];
99     $less = $_POST['PARAM_4'];
100     $comments = $_POST['PARAM_5'];
101         $destination = $_POST['PARAM_6'];
102         if ($destination)
103                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
104         else
105                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
106
107     $dec = 0;
108
109         if ($area == ALL_NUMERIC)
110                 $area = 0;
111         if ($folk == ALL_NUMERIC)
112                 $folk = 0;
113
114         if ($area == 0)
115                 $sarea = _('All Areas');
116         else
117                 $sarea = get_area_name($area);
118         if ($folk == 0)
119                 $salesfolk = _('All Sales Folk');
120         else
121                 $salesfolk = get_salesman_name($folk);
122         if ($more != '')
123                 $morestr = _('Greater than ') . number_format2($more, $dec);
124         else
125                 $morestr = '';
126         if ($less != '')
127                 $lessstr = _('Less than ') . number_format2($less, $dec);
128         else
129                 $lessstr = '';
130
131         $more = (double)$more;
132         $less = (double)$less;
133
134         $cols = array(0, 150, 300, 400, 550);
135
136         $headers = array(_('Customer Postal Address'), _('Price/Turnover'),     _('Branch Contact Information'),
137                 _('Branch Delivery Address'));
138
139         $aligns = array('left', 'left', 'left', 'left');
140
141     $params =   array(  0 => $comments,
142                                     1 => array('text' => _('Activity Since'),   'from' => $from,                'to' => ''),
143                                     2 => array('text' => _('Sales Areas'),              'from' => $sarea,               'to' => ''),
144                                     3 => array('text' => _('Sales Folk'),               'from' => $salesfolk,   'to' => ''),
145                                     4 => array('text' => _('Activity'),                 'from' => $morestr,     'to' => $lessstr));
146
147     $rep = new FrontReport(_('Customer Details Listing'), "CustomerDetailsListing", user_pagesize());
148
149     $rep->Font();
150     $rep->Info($params, $cols, $headers, $aligns);
151     $rep->NewPage();
152
153         $result = get_customer_details_for_report($area, $folk);
154
155         $carea = '';
156         $sman = '';
157         while ($myrow=db_fetch($result))
158         {
159                 $printcustomer = true;
160                 if ($more != '' || $less != '')
161                 {
162                         $turnover = getTransactions($myrow['debtor_no'], $myrow['branch_code'], $from);
163                         if ($more != 0.0 && $turnover <= (double)$more)
164                                 $printcustomer = false;
165                         if ($less != 0.0 && $turnover >= (double)$less)
166                                 $printcustomer = false;
167                 }
168                 if ($printcustomer)
169                 {
170                         if ($carea != $myrow['description'])
171                         {
172                                 $rep->fontSize += 2;
173                                 $rep->NewLine(2, 7);
174                                 $rep->Font('bold');
175                                 $rep->TextCol(0, 3,     _('Customers in') . " " . $myrow['description']);
176                                 $carea = $myrow['description'];
177                                 $rep->fontSize -= 2;
178                                 $rep->Font();
179                                 $rep->NewLine();
180                         }
181                         if ($sman != $myrow['salesman_name'])
182                         {
183                                 $rep->fontSize += 2;
184                                 $rep->NewLine(1, 7);
185                                 $rep->Font('bold');
186                                 $rep->TextCol(0, 3,     $myrow['salesman_name']);
187                                 $sman = $myrow['salesman_name'];
188                                 $rep->fontSize -= 2;
189                                 $rep->Font();
190                                 $rep->NewLine();
191                         }
192                         $rep->NewLine();
193                         // Here starts the new report lines 2010-11-02 Joe Hunt
194                         $contacts = get_branch_contacts($myrow['branch_code']);
195                         $rep->TextCol(0, 1,     $myrow['name']);
196                         $rep->TextCol(1, 2,     _('Price List') . ": " . $myrow['sales_type']);
197                         $rep->TextCol(2, 3,     $myrow['br_name']);
198                         $rep->NewLine();
199                         $adr = Explode("\n", $myrow['address']);
200                         $adr2 = Explode("\n", $myrow['br_address']);
201                         $count1 = count($adr);
202                         $count2 = count($adr2);
203                         $count1 = max($count1, $count2);
204                         if (isset($adr[0]))
205                                 $rep->TextCol(0, 1, $adr[0]);
206                         if ($more != 0.0 || $less != 0.0)
207                                 $rep->TextCol(1, 2,     _('Turnover') . ": " . number_format2($turnover, $dec));
208                         if (isset($contacts[0]))
209                                 $rep->TextCol(2, 3, $contacts[0]['name']);
210                         if (isset($adr2[0]))    
211                                 $rep->TextCol(3, 4, $adr2[0]);
212                         $rep->NewLine();
213                         if (isset($adr[1]))
214                                 $rep->TextCol(0, 1, $adr[1]);
215                         if (isset($contacts[0]))
216                                 $rep->TextCol(2, 3, _('Ph') . ": " . $contacts[0]['phone']);
217                         if (isset($adr2[1]))
218                                 $rep->TextCol(3, 4, $adr2[1]);
219                         $rep->NewLine();
220                         if (isset($adr[2]))
221                                 $rep->TextCol(0, 1, $adr[2]);
222                         if (isset($contacts[0]))
223                                 $rep->TextCol(2, 3, _('Fax') . ": " . $contacts[0]['fax']);
224                         if (isset($adr2[2]))
225                                 $rep->TextCol(3, 4, $adr2[2]);
226                         for ($i = 3; $i < $count1; $i++)
227                         {
228                                 $rep->NewLine();
229                                 if (isset($adr[$i]))
230                                         $rep->TextCol(0, 1, $adr[$i]);
231                                 if (isset($adr2[$i]))
232                                         $rep->TextCol(0, 1, $adr2[$i]);
233                         }       
234                         $rep->NewLine();
235                         /*
236                         $rep->TextCol(0, 1,     $myrow['name']);
237                         $adr = Explode("\n", $myrow['address']);
238                         $count1 = count($adr);
239                         for ($i = 0; $i < $count1; $i++)
240                                 $rep->TextCol(0, 1, $adr[$i], 0, ($i + 1) * $rep->lineHeight);
241                         $count1++;
242                         $rep->TextCol(1, 2,     _('Price List') . ": " . $myrow['sales_type']);
243                         if ($more != 0.0 || $less != 0.0)
244                                 $rep->TextCol(1, 2,     _('Turnover') . ": " . number_format2($turnover, $dec), 0, $rep->lineHeight);
245                         $rep->TextCol(2, 3,     $myrow['br_name']);
246
247                         $contacts = get_branch_contacts($myrow['branch_code']);
248                         if (isset($contacts[0]))
249                         {
250                                 $rep->TextCol(2, 3, $contacts[0]['name'], 0, $rep->lineHeight);
251                                 $rep->TextCol(2, 3, _('Ph') . ": " . $contacts[0]['phone'], 0, 2 * $rep->lineHeight);
252                                 $rep->TextCol(2, 3, _('Fax') . ": " . $contacts[0]['fax'], 0, 3 * $rep->lineHeight);
253                         }
254                         $adr = Explode("\n", $myrow['br_address']);
255                         $count2 = count($adr);
256                         for ($i = 0; $i < $count2; $i++)
257                                 $rep->TextCol(3, 4, $adr[$i], 0, ($i + 1) * $rep->lineHeight);
258                         //$rep->TextCol(3, 4, $myrow['email'], 0, ($count2 + 1) * $rep->lineHeight);
259                         $count2++;
260                         $count1 = Max($count1, $count2);
261                         $count1 = Max($count1, 4);
262                         $rep->NewLine($count3);
263                         */
264                         $rep->Line($rep->row + 8);
265                         $rep->NewLine(0, 3);
266                 }
267         }
268     $rep->End();
269 }
270
271 ?>