Salesman Report: fixed bug in provision calculation, Sales Persons: changed break...
[fa-stable.git] / reporting / rep112.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
13 $page_security = $_POST['PARAM_0'] == $_POST['PARAM_1'] ?
14         'SA_SALESTRANSVIEW' : 'SA_SALESBULKREP';
15 // ----------------------------------------------------------------
16 // $ Revision:  2.0 $
17 // Creator:     Joe Hunt
18 // date_:       2005-05-19
19 // Title:       Receipts
20 // ----------------------------------------------------------------
21 $path_to_root="..";
22
23 include_once($path_to_root . "/includes/session.inc");
24 include_once($path_to_root . "/includes/date_functions.inc");
25 include_once($path_to_root . "/includes/data_checks.inc");
26
27 //----------------------------------------------------------------------------------------------------
28
29 print_receipts();
30
31 //----------------------------------------------------------------------------------------------------
32 function get_receipt($type, $trans_no)
33 {
34     $sql = "SELECT ".TB_PREF."debtor_trans.*,
35                                 (".TB_PREF."debtor_trans.ov_amount + ".TB_PREF."debtor_trans.ov_gst + ".TB_PREF."debtor_trans.ov_freight + 
36                                 ".TB_PREF."debtor_trans.ov_freight_tax) AS Total,
37                                 ".TB_PREF."debtor_trans.ov_discount,
38                                 ".TB_PREF."debtors_master.name AS DebtorName,  ".TB_PREF."debtors_master.debtor_ref,
39                                 ".TB_PREF."debtors_master.curr_code, ".TB_PREF."debtors_master.payment_terms, "
40                                 .TB_PREF."debtors_master.tax_id AS tax_id,
41                                 ".TB_PREF."debtors_master.address
42                         FROM ".TB_PREF."debtor_trans, ".TB_PREF."debtors_master
43                                 WHERE ".TB_PREF."debtor_trans.debtor_no = ".TB_PREF."debtors_master.debtor_no
44                                 AND ".TB_PREF."debtor_trans.type = ".db_escape($type)."
45                                 AND ".TB_PREF."debtor_trans.trans_no = ".db_escape($trans_no);
46         $result = db_query($sql, "The remittance cannot be retrieved");
47         if (db_num_rows($result) == 0)
48                 return false;
49     return db_fetch($result);
50 }
51
52 function print_receipts()
53 {
54         global $path_to_root, $systypes_array;
55
56         include_once($path_to_root . "/reporting/includes/pdf_report.inc");
57
58         $from = $_POST['PARAM_0'];
59         $to = $_POST['PARAM_1'];
60         $currency = $_POST['PARAM_2'];
61         $comments = $_POST['PARAM_3'];
62         $orientation = $_POST['PARAM_4'];
63
64         if (!$from || !$to) return;
65
66         $orientation = ($orientation ? 'L' : 'P');
67         $dec = user_price_dec();
68
69         $fno = explode("-", $from);
70         $tno = explode("-", $to);
71         $from = min($fno[0], $tno[0]);
72         $to = max($fno[0], $tno[0]);
73
74         $cols = array(4, 85, 150, 225, 275, 360, 450, 515);
75
76         // $headers in doctext.inc
77         $aligns = array('left', 'left', 'left', 'left', 'right', 'right', 'right');
78
79         $params = array('comments' => $comments);
80
81         $cur = get_company_Pref('curr_default');
82
83         $rep = new FrontReport(_('RECEIPT'), "ReceiptBulk", user_pagesize(), 9, $orientation);
84         if ($orientation == 'L')
85         recalculate_cols($cols);
86         $rep->currency = $cur;
87         $rep->Font();
88         $rep->Info($params, $cols, null, $aligns);
89
90         for ($i = $from; $i <= $to; $i++)
91         {
92                 if ($fno[0] == $tno[0])
93                         $types = array($fno[1]);
94                 else
95                         $types = array(ST_BANKDEPOSIT, ST_CUSTPAYMENT);
96                 foreach ($types as $j)
97                 {
98                         $myrow = get_receipt($j, $i);
99                         if (!$myrow)
100                                 continue;
101                         if ($currency != ALL_TEXT && $myrow['curr_code'] != $currency) {
102                                 continue;
103                         }
104                         $res = get_bank_trans($j, $i);
105                         $baccount = db_fetch($res);
106                         $params['bankaccount'] = $baccount['bank_act'];
107
108                         $contacts = get_branch_contacts($myrow['branch_code'], 'invoice', $myrow['debtor_no']);
109                         $rep->SetCommonData($myrow, null, $myrow, $baccount, ST_CUSTPAYMENT, $contacts);
110                         $rep->SetHeaderType('Header2');
111                         $rep->NewPage();
112                         $result = get_allocatable_to_cust_transactions($myrow['debtor_no'], $myrow['trans_no'], $myrow['type']);
113
114                         $doctype = ST_CUSTPAYMENT;
115
116                         $total_allocated = 0;
117                         $rep->TextCol(0, 4,     _("As advance / full / part / payment towards:"), -2);
118                         $rep->NewLine(2);
119
120                         while ($myrow2=db_fetch($result))
121                         {
122                                 $rep->TextCol(0, 1,     $systypes_array[$myrow2['type']], -2);
123                                 $rep->TextCol(1, 2,     $myrow2['reference'], -2);
124                                 $rep->TextCol(2, 3,     sql2date($myrow2['tran_date']), -2);
125                                 $rep->TextCol(3, 4,     sql2date($myrow2['due_date']), -2);
126                                 $rep->AmountCol(4, 5, $myrow2['Total'], $dec, -2);
127                                 $rep->AmountCol(5, 6, $myrow2['Total'] - $myrow2['alloc'], $dec, -2);
128                                 $rep->AmountCol(6, 7, $myrow2['amt'], $dec, -2);
129
130                                 $total_allocated += $myrow2['amt'];
131                                 $rep->NewLine(1);
132                                 if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight))
133                                         $rep->NewPage();
134                         }
135
136                         $memo = get_comments_string($j, $i);
137                         if ($memo != "")
138                         {
139                                 $rep->NewLine();
140                                 $rep->TextColLines(1, 5, $memo, -2);
141                         }
142
143                         $rep->row = $rep->bottomMargin + (16 * $rep->lineHeight);
144
145                         $rep->TextCol(3, 6, _("Total Allocated"), -2);
146                         $rep->AmountCol(6, 7, $total_allocated, $dec, -2);
147                         $rep->NewLine();
148                         $rep->TextCol(3, 6, _("Left to Allocate"), -2);
149                         $rep->AmountCol(6, 7, $myrow['Total'] + $myrow['ov_discount'] - $total_allocated, $dec, -2);
150                         if (floatcmp($myrow['ov_discount'], 0))
151                         {
152                                 $rep->NewLine();
153                                 $rep->TextCol(3, 6, _("Discount"), - 2);
154                                 $rep->AmountCol(6, 7, -$myrow['ov_discount'], $dec, -2);
155                         }       
156                         $rep->NewLine();
157                         $rep->Font('bold');
158                         $rep->TextCol(3, 6, _("TOTAL RECEIPT"), - 2);
159                         $rep->AmountCol(6, 7, $myrow['Total'], $dec, -2);
160
161                         $words = price_in_words($myrow['Total'], ST_CUSTPAYMENT);
162                         if ($words != "")
163                         {
164                                 $rep->NewLine(1);
165                                 $rep->TextCol(0, 7, $myrow['curr_code'] . ": " . $words, - 2);
166                         }
167                         $rep->Font();
168                         $rep->NewLine();
169                         $rep->TextCol(6, 7, _("Received / Sign"), - 2);
170                         $rep->NewLine();
171                         $rep->TextCol(0, 2, _("By Cash / Cheque* / Draft No."), - 2);
172                         $rep->TextCol(2, 4, "______________________________", - 2);
173                         $rep->TextCol(4, 5, _("Dated"), - 2);
174                         $rep->TextCol(5, 6, "__________________", - 2);
175                         $rep->NewLine(1);
176                         $rep->TextCol(0, 2, _("Drawn on Bank"), - 2);
177                         $rep->TextCol(2, 4, "______________________________", - 2);
178                         $rep->TextCol(4, 5, _("Branch"), - 2);
179                         $rep->TextCol(5, 6, "__________________", - 2);
180                         $rep->TextCol(6, 7, "__________________");
181                 }
182         }
183         $rep->End();
184 }
185