c8a5538533278bb0ad3273d03b28881915256d8d
[fa-stable.git] / reporting / rep106.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_SALESMANREP';
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Salesman Report
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 . "/sales/includes/sales_db.inc");
25 include_once($path_to_root . "/inventory/includes/db/items_category_db.inc");
26
27 //----------------------------------------------------------------------------------------------------
28
29 print_salesman_list();
30
31 //----------------------------------------------------------------------------------------------------
32
33 function GetSalesmanTrans($from, $to)
34 {
35         $fromdate = date2sql($from);
36         $todate = date2sql($to);
37
38         $sql = "SELECT DISTINCT ".TB_PREF."debtor_trans.*,
39                 ov_amount+ov_discount AS InvoiceTotal,
40                 ".TB_PREF."debtors_master.name AS DebtorName, ".TB_PREF."debtors_master.curr_code, ".TB_PREF."cust_branch.br_name,
41                 ".TB_PREF."cust_branch.contact_name, ".TB_PREF."salesman.*
42                 FROM ".TB_PREF."debtor_trans, ".TB_PREF."debtors_master, ".TB_PREF."sales_orders, ".TB_PREF."cust_branch,
43                         ".TB_PREF."salesman
44                 WHERE ".TB_PREF."sales_orders.order_no=".TB_PREF."debtor_trans.order_
45                     AND ".TB_PREF."sales_orders.branch_code=".TB_PREF."cust_branch.branch_code
46                     AND ".TB_PREF."cust_branch.salesman=".TB_PREF."salesman.salesman_code
47                     AND ".TB_PREF."debtor_trans.debtor_no=".TB_PREF."debtors_master.debtor_no
48                     AND (".TB_PREF."debtor_trans.type=".ST_SALESINVOICE." OR ".TB_PREF."debtor_trans.type=".ST_CUSTCREDIT.")
49                     AND ".TB_PREF."debtor_trans.tran_date>='$fromdate'
50                     AND ".TB_PREF."debtor_trans.tran_date<='$todate'
51                 ORDER BY ".TB_PREF."salesman.salesman_code, ".TB_PREF."debtor_trans.tran_date";
52
53         return db_query($sql, "Error getting order details");
54 }
55
56 //----------------------------------------------------------------------------------------------------
57
58 function print_salesman_list()
59 {
60         global $path_to_root;
61
62         $from = $_POST['PARAM_0'];
63         $to = $_POST['PARAM_1'];
64         $summary = $_POST['PARAM_2'];
65         $comments = $_POST['PARAM_3'];
66         $orientation = $_POST['PARAM_4'];
67         $destination = $_POST['PARAM_5'];
68         if ($destination)
69                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
70         else
71                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
72         $orientation = ($orientation ? 'L' : 'P');
73
74         if ($summary == 0)
75                 $sum = _("No");
76         else
77                 $sum = _("Yes");
78
79         $dec = user_price_dec();
80
81         $cols = array(0, 60, 150, 220, 325,     385, 450, 515);
82
83         $headers = array(_('Invoice'), _('Customer'), _('Branch'), _('Customer Ref'),
84                 _('Inv Date'),  _('Total'),     _('Provision'));
85
86         $aligns = array('left', 'left', 'left', 'left', 'left', 'right',        'right');
87
88         $headers2 = array(_('Salesman'), " ",   _('Phone'), _('Email'), _('Provision'),
89                 _('Break Pt.'), _('Provision')." 2");
90
91     $params =   array(  0 => $comments,
92                                         1 => array(  'text' => _('Period'), 'from' => $from, 'to' => $to),
93                                         2 => array(  'text' => _('Summary Only'),'from' => $sum,'to' => ''));
94
95         $aligns2 = $aligns;
96
97         $rep = new FrontReport(_('Salesman Listing'), "SalesmanListing", user_pagesize(), 9, $orientation);
98     if ($orientation == 'L')
99         recalculate_cols($cols);
100         $cols2 = $cols;
101         $rep->Font();
102         $rep->Info($params, $cols, $headers, $aligns, $cols2, $headers2, $aligns2);
103
104         $rep->NewPage();
105         $salesman = 0;
106         $subtotal = $total = $subprov = $provtotal = 0;
107
108         $result = GetSalesmanTrans($from, $to);
109
110         while ($myrow=db_fetch($result))
111         {
112                 $rep->NewLine(0, 2, false, $salesman);
113                 if ($salesman != $myrow['salesman_code'])
114                 {
115                         if ($salesman != 0)
116                         {
117                                 $rep->Line($rep->row - 8);
118                                 $rep->NewLine(2);
119                                 $rep->TextCol(0, 3, _('Total'));
120                                 $rep->AmountCol(5, 6, $subtotal, $dec);
121                                 $rep->AmountCol(6, 7, $subprov, $dec);
122                         $rep->Line($rep->row  - 4);
123                         $rep->NewLine(2);
124                         }
125                         $rep->TextCol(0, 2,     $myrow['salesman_code']." ".$myrow['salesman_name']);
126                         $rep->TextCol(2, 3,     $myrow['salesman_phone']);
127                         $rep->TextCol(3, 4,     $myrow['salesman_email']);
128                         $rep->TextCol(4, 5,     number_format2($myrow['provision'], user_percent_dec()) ." %");
129                         $rep->AmountCol(5, 6, $myrow['break_pt'], $dec);
130                         $rep->TextCol(6, 7,     number_format2($myrow['provision2'], user_percent_dec()) ." %");
131                         $rep->NewLine(2);
132                         $salesman = $myrow['salesman_code'];
133                         $total += $subtotal;
134                         $provtotal += $subprov;
135                         $subtotal = 0;
136                         $subprov = 0;
137                 }
138                 $rate = $myrow['rate'];
139                 $amt = $myrow['InvoiceTotal'] * $rate;
140                 if ($subprov > $myrow['break_pt'] && $myrow['provision2'] != 0)
141                         $prov = $myrow['provision2'] * $amt / 100;
142                 else
143                         $prov = $myrow['provision'] * $amt / 100;
144                 if (!$summary)
145                 {
146                         $rep->TextCol(0, 1,     $myrow['trans_no']);
147                         $rep->TextCol(1, 2,     $myrow['DebtorName']);
148                         $rep->TextCol(2, 3,     $myrow['br_name']);
149                         $rep->TextCol(3, 4,     $myrow['contact_name']);
150                         $rep->DateCol(4, 5,     $myrow['tran_date'], true);
151                         $rep->AmountCol(5, 6, $amt, $dec);
152                         $rep->AmountCol(6, 7, $prov, $dec);
153                         $rep->NewLine();
154                 }
155                 $subtotal += $amt;
156                 $subprov += $prov;
157         }
158         if ($salesman != 0)
159         {
160                 $rep->Line($rep->row - 4);
161                 $rep->NewLine(2);
162                 $rep->TextCol(0, 3, _('Total'));
163                 $rep->AmountCol(5, 6, $subtotal, $dec);
164                 $rep->AmountCol(6, 7, $subprov, $dec);
165                 $rep->Line($rep->row  - 4);
166                 $rep->NewLine(2);
167                 $total += $subtotal;
168                 $provtotal += $subprov;
169         }
170         $rep->fontSize += 2;
171         $rep->TextCol(0, 3, _('Grand Total'));
172         $rep->fontSize -= 2;
173         $rep->AmountCol(5, 6, $total, $dec);
174         $rep->AmountCol(6, 7, $provtotal, $dec);
175         $rep->Line($rep->row  - 4);
176         $rep->NewLine();
177         $rep->End();
178 }
179
180 ?>