Changed so direct printing of invoices/credit notes is funtioning.
[fa-stable.git] / reporting / rep107.php
1 <?php
2
3 $page_security = 2;
4 // ----------------------------------------------------------------
5 // $ Revision:  2.0 $
6 // Creator:     Joe Hunt
7 // date_:       2005-05-19
8 // Title:       Print Invoices
9 // ----------------------------------------------------------------
10 $path_to_root="../";
11
12 include_once($path_to_root . "includes/session.inc");
13 include_once($path_to_root . "includes/date_functions.inc");
14 include_once($path_to_root . "includes/data_checks.inc");
15 include_once($path_to_root . "sales/includes/sales_db.inc");
16
17 //----------------------------------------------------------------------------------------------------
18
19 // trial_inquiry_controls();
20 print_invoices();
21
22 //----------------------------------------------------------------------------------------------------
23
24 function print_invoices()
25 {
26         global $path_to_root;
27
28         include_once($path_to_root . "reporting/includes/pdf_report.inc");
29
30         $from = $_POST['PARAM_0'];
31         $to = $_POST['PARAM_1'];
32         $currency = $_POST['PARAM_2'];
33         $bankaccount = $_POST['PARAM_3'];
34         $email = $_POST['PARAM_4'];
35         $paylink = $_POST['PARAM_5'];
36         $comments = $_POST['PARAM_6'];
37
38         if ($from == null)
39                 $from = 0;
40         if ($to == null)
41                 $to = 0;
42         $dec =user_price_dec();
43
44         $fno = explode("-", $from);
45         $tno = explode("-", $to);
46
47         $cols = array(4, 60, 225, 300, 325, 385, 450, 515);
48
49         // $headers in doctext.inc
50         $aligns = array('left', 'left', 'right', 'left', 'right', 'right', 'right');
51
52         $params = array('comments' => $comments,
53                                         'bankaccount' => $bankaccount);
54
55         $baccount = get_bank_account($params['bankaccount']);
56         $cur = get_company_Pref('curr_default');
57
58         if ($email == 0)
59         {
60                 $rep = new FrontReport(_('INVOICE'), "InvoiceBulk.pdf", user_pagesize());
61                 $rep->currency = $cur;
62                 $rep->Font();
63                 $rep->Info($params, $cols, null, $aligns);
64         }
65
66         for ($i = $fno[0]; $i <= $tno[0]; $i++)
67         {
68                 for ($j = 10; $j <= 11; $j++)
69                 {
70                         if (isset($_POST['PARAM_7']) && $_POST['PARAM_7'] != $j)
71                                 continue;
72                         if (!exists_customer_trans($j, $i))
73                                 continue;
74                         $myrow = get_customer_trans($i, $j);
75                         $branch = get_branch($myrow["branch_code"]);
76                         $branch['disable_branch'] = $paylink; // helper
77                         if ($j == 10)
78                                 $sales_order = get_sales_order($myrow["order_"]);
79                         else
80                                 $sales_order = null;
81                         if ($email == 1)
82                         {
83                                 $rep = new FrontReport("", "", user_pagesize());
84                                 $rep->currency = $cur;
85                                 $rep->Font();
86                                 if ($j == 10)
87                                 {
88                                         $rep->title = _('INVOICE');
89                                         $rep->filename = "Invoice" . $myrow['reference'] . ".pdf";
90                                 }
91                                 else
92                                 {
93                                         $rep->title = _('CREDIT NOTE');
94                                         $rep->filename = "CreditNote" . $myrow['reference'] . ".pdf";
95                                 }
96                                 $rep->Info($params, $cols, null, $aligns);
97                         }
98                         else
99                                 $rep->title = ($j == 10) ? _('INVOICE') : _('CREDIT NOTE');
100                         $rep->Header2($myrow, $branch, $sales_order, $baccount, $j);
101
102                         $result = get_customer_trans_details($j, $i);
103                         $SubTotal = 0;
104                         while ($myrow2=db_fetch($result))
105                         {
106                                 $Net = ((1 - $myrow2["discount_percent"]) * $myrow2["FullUnitPrice"] * -$myrow2["quantity"]);
107                                 $SubTotal += $Net;
108                         $DisplayPrice = number_format2($myrow2["FullUnitPrice"],$dec);
109                         $DisplayQty = number_format2(-$myrow2["quantity"],user_qty_dec());
110                         $DisplayNet = number_format2($Net,$dec);
111                         if ($myrow2["discount_percent"]==0)
112                                         $DisplayDiscount ="";
113                         else
114                                         $DisplayDiscount = number_format2($myrow2["discount_percent"]*100,user_percent_dec()) . "%";
115                                 $rep->TextCol(0, 1,     $myrow2['stock_id'], -2);
116                                 $rep->TextCol(1, 2,     $myrow2['StockDescription'], -2);
117                                 $rep->TextCol(2, 3,     $DisplayQty, -2);
118                                 $rep->TextCol(3, 4,     $myrow2['units'], -2);
119                                 $rep->TextCol(4, 5,     $DisplayPrice, -2);
120                                 $rep->TextCol(5, 6,     $DisplayDiscount, -2);
121                                 $rep->TextCol(6, 7,     $DisplayNet, -2);
122                                 $rep->NewLine(1);
123                                 if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight))
124                                         $rep->Header2($myrow, $branch, $sales_order, $baccount,$j);
125                         }
126
127                         $comments = get_comments($j, $i);
128                         if ($comments && db_num_rows($comments))
129                         {
130                                 $rep->NewLine();
131                         while ($comment=db_fetch($comments))
132                                 $rep->TextColLines(0, 6, $comment['memo_'], -2);
133                         }
134
135                         $DisplaySubTot = number_format2($SubTotal,$dec);
136                         $DisplayFreight = number_format2($myrow["ov_freight"],$dec);
137
138                 $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight);
139                         $linetype = true;
140                         $doctype = $j;
141                         if ($rep->currency != $myrow['curr_code'])
142                         {
143                                 include($path_to_root . "reporting/includes/doctext2.inc");
144                         }
145                         else
146                         {
147                                 include($path_to_root . "reporting/includes/doctext.inc");
148                         }
149
150                         $rep->TextCol(3, 6, $doc_Sub_total, -2);
151                         $rep->TextCol(6, 7,     $DisplaySubTot, -2);
152                         $rep->NewLine();
153                         $rep->TextCol(3, 6, $doc_Shipping, -2);
154                         $rep->TextCol(6, 7,     $DisplayFreight, -2);
155                         $rep->NewLine();
156                         $tax_items = get_customer_trans_tax_details($j, $i);
157                 while ($tax_item = db_fetch($tax_items))
158                 {
159                         $DisplayTax = number_format2($tax_item['amount'], $dec);
160                         if ($tax_item['included_in_price'])
161                         {
162                                         $rep->TextCol(3, 7, $doc_Included . " " . $tax_item['tax_type_name'] .
163                                                 " (" . $tax_item['rate'] . "%) " . $doc_Amount . ":" . $DisplayTax, -2);
164                                 }
165                         else
166                         {
167                                         $rep->TextCol(3, 6, $tax_item['tax_type_name'] . " (" .
168                                                 $tax_item['rate'] . "%)", -2);
169                                         $rep->TextCol(6, 7,     $DisplayTax, -2);
170                                 }
171                                 $rep->NewLine();
172                 }
173                 $rep->NewLine();
174                         $DisplayTotal = number_format2($myrow["ov_freight"] + $myrow["ov_gst"] +
175                                 $myrow["ov_amount"],$dec);
176                         $rep->Font('bold');
177                         $rep->TextCol(3, 6, $doc_TOTAL_INVOICE, - 2);
178                         $rep->TextCol(6, 7,     $DisplayTotal, -2);
179                         $rep->Font();
180                         if ($email == 1)
181                         {
182                                 $myrow['dimension_id'] = $paylink; // helper for pmt link
183                                 if ($myrow['email'] == '')
184                                 {
185                                         $myrow['email'] = $branch['email'];
186                                         $myrow['DebtorName'] = $branch['br_name'];
187                                 }
188                                 $rep->End($email, $doc_Invoice_no . " " . $myrow['reference'], $myrow, $j);
189                         }
190                 }
191         }
192         if ($email == 0)
193                 $rep->End();
194 }
195
196 ?>