Implemented Selectable Print Orientation (Portrait, Landscape) for all reports in...
[fa-stable.git] / reporting / rep110.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 = $_POST['PARAM_0'] == $_POST['PARAM_1'] ?
13         'SA_SALESTRANSVIEW' : 'SA_SALESBULKREP';
14 // ----------------------------------------------------------------
15 // $ Revision:  2.0 $
16 // Creator:     Janusz Dobrwolski
17 // date_:       2008-01-14
18 // Title:       Print Delivery Notes
19 // draft version!
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 include_once($path_to_root . "/sales/includes/sales_db.inc");
27
28 $packing_slip = 0;
29 //----------------------------------------------------------------------------------------------------
30
31 print_deliveries();
32
33 //----------------------------------------------------------------------------------------------------
34
35 function print_deliveries()
36 {
37         global $path_to_root, $packing_slip, $alternative_tax_include_on_docs, $suppress_tax_rates, $no_zero_lines_amount;
38
39         include_once($path_to_root . "/reporting/includes/pdf_report.inc");
40
41         $from = $_POST['PARAM_0'];
42         $to = $_POST['PARAM_1'];
43         $email = $_POST['PARAM_2'];
44         $packing_slip = $_POST['PARAM_3'];
45         $comments = $_POST['PARAM_4'];
46         $orientation = $_POST['PARAM_5'];
47
48         $orientation = ($orientation ? 'L' : 'P');
49         if (!$from || !$to) return;
50
51         $dec = user_price_dec();
52
53         $fno = explode("-", $from);
54         $tno = explode("-", $to);
55         $from = min($fno[0], $tno[0]);
56         $to = max($fno[0], $tno[0]);
57
58         $cols = array(4, 60, 225, 300, 325, 385, 450, 515);
59
60         // $headers in doctext.inc
61         $aligns = array('left', 'left', 'right', 'left', 'right', 'right', 'right');
62
63         $params = array('comments' => $comments);
64
65         $cur = get_company_Pref('curr_default');
66
67         if ($email == 0)
68         {
69                 if ($packing_slip == 0)
70                         $rep = new FrontReport(_('DELIVERY'), "DeliveryNoteBulk", user_pagesize(), 9, $orientation);
71                 else
72                         $rep = new FrontReport(_('PACKING SLIP'), "PackingSlipBulk", user_pagesize(), 9, $orientation);
73         }
74     if ($orientation == 'L')
75         $rep->recalculate_cols($cols);
76         for ($i = $from; $i <= $to; $i++)
77         {
78                         if (!exists_customer_trans(ST_CUSTDELIVERY, $i))
79                                 continue;
80                         $myrow = get_customer_trans($i, ST_CUSTDELIVERY);
81                         $branch = get_branch($myrow["branch_code"]);
82                         $sales_order = get_sales_order_header($myrow["order_"], ST_SALESORDER); // ?
83                         if ($email == 1)
84                                 $rep = new FrontReport("", "", user_pagesize(), 9, $orientation);
85                         $rep->SetHeaderType('Header2');
86                         $rep->currency = $cur;
87                         $rep->Font();
88                         if ($packing_slip == 0)
89                         {
90                                 $rep->title = _('DELIVERY NOTE');
91                                 $rep->filename = "Delivery" . $myrow['reference'] . ".pdf";
92                         }
93                         else
94                         {
95                                 $rep->title = _('PACKING SLIP');
96                                 $rep->filename = "Packing_slip" . $myrow['reference'] . ".pdf";
97                         }
98                         $rep->Info($params, $cols, null, $aligns);
99                         $contacts = get_branch_contacts($branch['branch_code'], 'delivery', $branch['debtor_no'], false);
100                         $rep->SetCommonData($myrow, $branch, $sales_order, '', ST_CUSTDELIVERY, $contacts);
101                         $rep->NewPage();
102
103                         $result = get_customer_trans_details(ST_CUSTDELIVERY, $i);
104                         $SubTotal = 0;
105                         while ($myrow2=db_fetch($result))
106                         {
107                                 if ($myrow2["quantity"] == 0)
108                                         continue;
109
110                                 $Net = round2(((1 - $myrow2["discount_percent"]) * $myrow2["unit_price"] * $myrow2["quantity"]),
111                                    user_price_dec());
112                                 $SubTotal += $Net;
113                         $DisplayPrice = number_format2($myrow2["unit_price"],$dec);
114                         $DisplayQty = number_format2($myrow2["quantity"],get_qty_dec($myrow2['stock_id']));
115                         $DisplayNet = number_format2($Net,$dec);
116                         if ($myrow2["discount_percent"]==0)
117                                         $DisplayDiscount ="";
118                         else
119                                         $DisplayDiscount = number_format2($myrow2["discount_percent"]*100,user_percent_dec()) . "%";
120                                 $rep->TextCol(0, 1,     $myrow2['stock_id'], -2);
121                                 $oldrow = $rep->row;
122                                 $rep->TextColLines(1, 2, $myrow2['StockDescription'], -2);
123                                 $newrow = $rep->row;
124                                 $rep->row = $oldrow;
125                                 if ($Net != 0.0  || !is_service($myrow2['mb_flag']) || !isset($no_zero_lines_amount) || $no_zero_lines_amount == 0)
126                                 {
127                                         $rep->TextCol(2, 3,     $DisplayQty, -2);
128                                         $rep->TextCol(3, 4,     $myrow2['units'], -2);
129                                         if ($packing_slip == 0)
130                                         {
131                                                 $rep->TextCol(4, 5,     $DisplayPrice, -2);
132                                                 $rep->TextCol(5, 6,     $DisplayDiscount, -2);
133                                                 $rep->TextCol(6, 7,     $DisplayNet, -2);
134                                         }
135                                 }
136                                 $rep->row = $newrow;
137                                 //$rep->NewLine(1);
138                                 if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight))
139                                         $rep->NewPage();
140                         }
141
142                         $memo = get_comments_string(ST_CUSTDELIVERY, $i);
143                         if ($memo != "")
144                         {
145                                 $rep->NewLine();
146                                 $rep->TextColLines(1, 5, $memo, -2);
147                         }
148
149                         $DisplaySubTot = number_format2($SubTotal,$dec);
150                         $DisplayFreight = number_format2($myrow["ov_freight"],$dec);
151
152                 $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight);
153                         $doctype=ST_CUSTDELIVERY;
154                         if ($packing_slip == 0)
155                         {
156                                 $rep->TextCol(3, 6, _("Sub-total"), -2);
157                                 $rep->TextCol(6, 7,     $DisplaySubTot, -2);
158                                 $rep->NewLine();
159                                 $rep->TextCol(3, 6, _("Shipping"), -2);
160                                 $rep->TextCol(6, 7,     $DisplayFreight, -2);
161                                 $rep->NewLine();
162                                 $tax_items = get_trans_tax_details(ST_CUSTDELIVERY, $i);
163                                 $first = true;
164                         while ($tax_item = db_fetch($tax_items))
165                         {
166                                 if ($tax_item['amount'] == 0)
167                                         continue;
168                                 $DisplayTax = number_format2($tax_item['amount'], $dec);
169  
170                                         if (isset($suppress_tax_rates) && $suppress_tax_rates == 1)
171                                                 $tax_type_name = $tax_item['tax_type_name'];
172                                         else
173                                                 $tax_type_name = $tax_item['tax_type_name']." (".$tax_item['rate']."%) ";
174
175                                         if ($myrow['tax_included'])
176                                 {
177                                                 if (isset($alternative_tax_include_on_docs) && $alternative_tax_include_on_docs == 1)
178                                         {
179                                                 if ($first)
180                                                 {
181                                                                 $rep->TextCol(3, 6, _("Total Tax Excluded"), -2);
182                                                                 $rep->TextCol(6, 7,     number_format2($tax_item['net_amount'], $dec), -2);
183                                                                 $rep->NewLine();
184                                                 }
185                                                         $rep->TextCol(3, 6, $tax_type_name, -2);
186                                                         $rep->TextCol(6, 7,     $DisplayTax, -2);
187                                                         $first = false;
188                                         }
189                                         else
190                                                         $rep->TextCol(3, 7, _("Included") . " " . $tax_type_name . _("Amount") . ": " . $DisplayTax, -2);
191                                         }
192                                 else
193                                 {
194                                                 $rep->TextCol(3, 6, $tax_type_name, -2);
195                                                 $rep->TextCol(6, 7,     $DisplayTax, -2);
196                                         }
197                                         $rep->NewLine();
198                         }
199                         $rep->NewLine();
200                                 $DisplayTotal = number_format2($myrow["ov_freight"] +$myrow["ov_freight_tax"] + $myrow["ov_gst"] +
201                                         $myrow["ov_amount"],$dec);
202                                 $rep->Font('bold');
203                                 $rep->TextCol(3, 6, _("TOTAL DELIVERY INCL. VAT"), - 2);
204                                 $rep->TextCol(6, 7,     $DisplayTotal, -2);
205                                 $words = price_in_words($myrow['Total'], ST_CUSTDELIVERY);
206                                 if ($words != "")
207                                 {
208                                         $rep->NewLine(1);
209                                         $rep->TextCol(1, 7, $myrow['curr_code'] . ": " . $words, - 2);
210                                 }       
211                                 $rep->Font();
212                         }       
213                         if ($email == 1)
214                         {
215                                 $rep->End($email);
216                         }
217         }
218         if ($email == 0)
219                 $rep->End();
220 }
221
222 ?>