Huge sales module changes toward delivery and invoicing separation. Includes some...
[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 (!exists_customer_trans($j, $i))
71                                 continue;
72                         $myrow = get_customer_trans($i, $j);
73                         $branch = get_branch($myrow["branch_code"]);
74                         $branch['disable_branch'] = $paylink; // helper
75                         if ($j == 10)
76                                 $sales_order = get_sales_order($myrow["order_"]);
77                         else
78                                 $sales_order = null;
79                         if ($email == 1)
80                         {
81                                 $rep = new FrontReport("", "", user_pagesize());
82                                 $rep->currency = $cur;
83                                 $rep->Font();
84                                 if ($j == 10)
85                                 {
86                                         $rep->title = _('INVOICE');
87                                         $rep->filename = "Invoice" . $myrow['reference'] . ".pdf";
88                                 }
89                                 else    
90                                 {
91                                         $rep->title = _('CREDIT NOTE');
92                                         $rep->filename = "CreditNote" . $myrow['reference'] . ".pdf";
93                                 }       
94                                 $rep->Info($params, $cols, null, $aligns);
95                         }
96                         else
97                                 $rep->title = ($j == 10) ? _('INVOICE') : _('CREDIT NOTE');
98                         $rep->Header2($myrow, $branch, $sales_order, $baccount, $j);
99                         
100                         $result = get_customer_trans_details($j, $i);
101                         $SubTotal = 0;
102                         while ($myrow2=db_fetch($result))
103                         {
104                                 $Net = ((1 - $myrow2["discount_percent"]) * $myrow2["FullUnitPrice"] * -$myrow2["quantity"]);
105                                 $SubTotal += $Net;
106                         $DisplayPrice = number_format2($myrow2["FullUnitPrice"],$dec);
107                         $DisplayQty = number_format2(-$myrow2["quantity"],user_qty_dec());
108                         $DisplayNet = number_format2($Net,$dec);
109                         if ($myrow2["discount_percent"]==0)
110                                         $DisplayDiscount ="";
111                         else 
112                                         $DisplayDiscount = number_format2($myrow2["discount_percent"]*100,user_percent_dec()) . "%";
113                                 $rep->TextCol(0, 1,     $myrow2['stock_id'], -2);
114                                 $rep->TextCol(1, 2,     $myrow2['StockDescription'], -2);
115                                 $rep->TextCol(2, 3,     $DisplayQty, -2);
116                                 $rep->TextCol(3, 4,     $myrow2['units'], -2);
117                                 $rep->TextCol(4, 5,     $DisplayPrice, -2);
118                                 $rep->TextCol(5, 6,     $DisplayDiscount, -2);
119                                 $rep->TextCol(6, 7,     $DisplayNet, -2);
120                                 $rep->NewLine(1);
121                                 if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight)) 
122                                         $rep->Header2($myrow, $branch, $sales_order, $baccount,$j);
123                         }
124                         
125                         $comments = get_comments($j, $i);
126                         if ($comments && db_num_rows($comments))
127                         {       
128                                 $rep->NewLine();
129                         while ($comment=db_fetch($comments)) 
130                                 $rep->TextColLines(0, 6, $comment['memo_'], -2);
131                         }       
132                                 
133                         $DisplaySubTot = number_format2($SubTotal,$dec);
134                         $DisplayFreight = number_format2($myrow["ov_freight"],$dec);
135
136                 $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight);
137                         $linetype = true;
138                         $doctype = $j;
139                         if ($rep->currency != $myrow['curr_code'])
140                         {
141                                 include($path_to_root . "reporting/includes/doctext2.inc");                     
142                         }       
143                         else
144                         {
145                                 include($path_to_root . "reporting/includes/doctext.inc");                      
146                         }       
147                 
148                         $rep->TextCol(3, 6, $doc_Sub_total, -2);
149                         $rep->TextCol(6, 7,     $DisplaySubTot, -2);
150                         $rep->NewLine();
151                         $rep->TextCol(3, 6, $doc_Shipping, -2);
152                         $rep->TextCol(6, 7,     $DisplayFreight, -2);
153                         $rep->NewLine();
154                         $tax_items = get_customer_trans_tax_details($j, $i);
155                 while ($tax_item = db_fetch($tax_items)) 
156                 {
157                         $DisplayTax = number_format2($tax_item['amount'], $dec);
158                         if ($tax_item['included_in_price'])
159                         {
160                                         $rep->TextCol(3, 7, $doc_Included . " " . $tax_item['tax_type_name'] . 
161                                                 " (" . $tax_item['rate'] . "%) " . $doc_Amount . ":" . $DisplayTax, -2);
162                                 }               
163                         else
164                         {
165                                         $rep->TextCol(3, 6, $tax_item['tax_type_name'] . " (" . 
166                                                 $tax_item['rate'] . "%)", -2);
167                                         $rep->TextCol(6, 7,     $DisplayTax, -2);
168                                 }                       
169                                 $rep->NewLine();
170                 }
171                 $rep->NewLine();
172                         $DisplayTotal = number_format2($myrow["ov_freight"] + $myrow["ov_gst"] +
173                                 $myrow["ov_amount"],$dec);
174                         $rep->Font('bold');     
175                         $rep->TextCol(3, 6, $doc_TOTAL_INVOICE, - 2);
176                         $rep->TextCol(6, 7,     $DisplayTotal, -2);
177                         $rep->Font();   
178                         if ($email == 1)
179                         {
180                                 $myrow['dimension_id'] = $paylink; // helper for pmt link
181                                 if ($myrow['email'] == '')
182                                 {
183                                         $myrow['email'] = $branch['email'];
184                                         $myrow['DebtorName'] = $branch['br_name'];
185                                 }
186                                 $rep->End($email, $doc_Invoice_no . " " . $myrow['reference'], $myrow, $j);
187                         }       
188                 }
189         }
190         if ($email == 0)
191                 $rep->End();
192 }
193
194 ?>