Do not print zero lines amount of 0.00 in Sales Documents if service item, $no_zero_l...
[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
47         if (!$from || !$to) return;
48
49         $dec = user_price_dec();
50
51         $fno = explode("-", $from);
52         $tno = explode("-", $to);
53         $from = min($fno[0], $tno[0]);
54         $to = max($fno[0], $tno[0]);
55
56         $cols = array(4, 60, 225, 300, 325, 385, 450, 515);
57
58         // $headers in doctext.inc
59         $aligns = array('left', 'left', 'right', 'left', 'right', 'right', 'right');
60
61         $params = array('comments' => $comments);
62
63         $cur = get_company_Pref('curr_default');
64
65         if ($email == 0)
66         {
67                 if ($packing_slip == 0)
68                         $rep = new FrontReport(_('DELIVERY'), "DeliveryNoteBulk", user_pagesize());
69                 else
70                         $rep = new FrontReport(_('PACKING SLIP'), "PackingSlipBulk", user_pagesize());
71                 $rep->SetHeaderType('Header2');
72                 $rep->currency = $cur;
73                 $rep->Font();
74                 $rep->Info($params, $cols, null, $aligns);
75         }
76
77         for ($i = $from; $i <= $to; $i++)
78         {
79                         if (!exists_customer_trans(ST_CUSTDELIVERY, $i))
80                                 continue;
81                         $myrow = get_customer_trans($i, ST_CUSTDELIVERY);
82                         $branch = get_branch($myrow["branch_code"]);
83                         $sales_order = get_sales_order_header($myrow["order_"], ST_SALESORDER); // ?
84                         if ($email == 1)
85                         {
86                                 $rep = new FrontReport("", "", user_pagesize());
87                                 $rep->SetHeaderType('Header2');
88                                 $rep->currency = $cur;
89                                 $rep->Font();
90                                 if ($packing_slip == 0)
91                                 {
92                                         $rep->title = _('DELIVERY NOTE');
93                                         $rep->filename = "Delivery" . $myrow['reference'] . ".pdf";
94                                 }
95                                 else
96                                 {
97                                         $rep->title = _('PACKING SLIP');
98                                         $rep->filename = "Packing_slip" . $myrow['reference'] . ".pdf";
99                                 }
100                                 $rep->Info($params, $cols, null, $aligns);
101                         }
102                         else
103                                 $rep->title = _('DELIVERY NOTE');
104                         $contacts = get_branch_contacts($branch['branch_code'], 'delivery', $branch['debtor_no'], false);
105                         $rep->SetCommonData($myrow, $branch, $sales_order, '', ST_CUSTDELIVERY, $contacts);
106                         $rep->NewPage();
107
108                         $result = get_customer_trans_details(ST_CUSTDELIVERY, $i);
109                         $SubTotal = 0;
110                         while ($myrow2=db_fetch($result))
111                         {
112                                 if ($myrow2["quantity"] == 0)
113                                         continue;
114                                         
115                                 $Net = round2(((1 - $myrow2["discount_percent"]) * $myrow2["unit_price"] * $myrow2["quantity"]),
116                                    user_price_dec());
117                                 $SubTotal += $Net;
118                         $DisplayPrice = number_format2($myrow2["unit_price"],$dec);
119                         $DisplayQty = number_format2($myrow2["quantity"],get_qty_dec($myrow2['stock_id']));
120                         $DisplayNet = number_format2($Net,$dec);
121                         if ($myrow2["discount_percent"]==0)
122                                         $DisplayDiscount ="";
123                         else
124                                         $DisplayDiscount = number_format2($myrow2["discount_percent"]*100,user_percent_dec()) . "%";
125                                 $rep->TextCol(0, 1,     $myrow2['stock_id'], -2);
126                                 $oldrow = $rep->row;
127                                 $rep->TextColLines(1, 2, $myrow2['StockDescription'], -2);
128                                 $newrow = $rep->row;
129                                 $rep->row = $oldrow;
130                                 if ($Net != 0.0  || !is_service($myrow2['mb_flag']) || !isset($no_zero_lines_amount) || $no_zero_lines_amount == 0)
131                                 {                       
132                                         $rep->TextCol(2, 3,     $DisplayQty, -2);
133                                         $rep->TextCol(3, 4,     $myrow2['units'], -2);
134                                         if ($packing_slip == 0)
135                                         {
136                                                 $rep->TextCol(4, 5,     $DisplayPrice, -2);
137                                                 $rep->TextCol(5, 6,     $DisplayDiscount, -2);
138                                                 $rep->TextCol(6, 7,     $DisplayNet, -2);
139                                         }
140                                 }       
141                                 $rep->row = $newrow;
142                                 //$rep->NewLine(1);
143                                 if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight))
144                                         $rep->NewPage();
145                         }
146
147                         $memo = get_comments_string(ST_CUSTDELIVERY, $i);
148                         if ($memo != "")
149                         {
150                                 $rep->NewLine();
151                                 $rep->TextColLines(1, 5, $memo, -2);
152                         }
153
154                         $DisplaySubTot = number_format2($SubTotal,$dec);
155                         $DisplayFreight = number_format2($myrow["ov_freight"],$dec);
156
157                 $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight);
158                         $doctype=ST_CUSTDELIVERY;
159                         if ($packing_slip == 0)
160                         {
161                                 $rep->TextCol(3, 6, _("Sub-total"), -2);
162                                 $rep->TextCol(6, 7,     $DisplaySubTot, -2);
163                                 $rep->NewLine();
164                                 $rep->TextCol(3, 6, _("Shipping"), -2);
165                                 $rep->TextCol(6, 7,     $DisplayFreight, -2);
166                                 $rep->NewLine();
167                                 $tax_items = get_trans_tax_details(ST_CUSTDELIVERY, $i);
168                                 $first = true;
169                         while ($tax_item = db_fetch($tax_items))
170                         {
171                                 if ($tax_item['amount'] == 0)
172                                         continue;
173                                 $DisplayTax = number_format2($tax_item['amount'], $dec);
174  
175                                         if (isset($suppress_tax_rates) && $suppress_tax_rates == 1)
176                                                 $tax_type_name = $tax_item['tax_type_name'];
177                                         else
178                                                 $tax_type_name = $tax_item['tax_type_name']." (".$tax_item['rate']."%) ";
179  
180                                         if ($tax_item['included_in_price'])
181                                 {
182                                                 if (isset($alternative_tax_include_on_docs) && $alternative_tax_include_on_docs == 1)
183                                         {
184                                                 if ($first)
185                                                 {
186                                                                 $rep->TextCol(3, 6, _("Total Tax Excluded"), -2);
187                                                                 $rep->TextCol(6, 7,     number_format2($tax_item['net_amount'], $dec), -2);
188                                                                 $rep->NewLine();
189                                                 }
190                                                         $rep->TextCol(3, 6, $tax_type_name, -2);
191                                                         $rep->TextCol(6, 7,     $DisplayTax, -2);
192                                                         $first = false;
193                                         }
194                                         else
195                                                         $rep->TextCol(3, 7, _("Included") . " " . $tax_type_name . _("Amount") . ": " . $DisplayTax, -2);
196                                         }
197                                 else
198                                 {
199                                                 $rep->TextCol(3, 6, $tax_type_name, -2);
200                                                 $rep->TextCol(6, 7,     $DisplayTax, -2);
201                                         }
202                                         $rep->NewLine();
203                         }
204                         $rep->NewLine();
205                                 $DisplayTotal = number_format2($myrow["ov_freight"] +$myrow["ov_freight_tax"] + $myrow["ov_gst"] +
206                                         $myrow["ov_amount"],$dec);
207                                 $rep->Font('bold');
208                                 $rep->TextCol(3, 6, _("TOTAL DELIVERY INCL. VAT"), - 2);
209                                 $rep->TextCol(6, 7,     $DisplayTotal, -2);
210                                 $words = price_in_words($myrow['Total'], ST_CUSTDELIVERY);
211                                 if ($words != "")
212                                 {
213                                         $rep->NewLine(1);
214                                         $rep->TextCol(1, 7, $myrow['curr_code'] . ": " . $words, - 2);
215                                 }       
216                                 $rep->Font();
217                         }       
218                         if ($email == 1)
219                         {
220                                 $rep->End($email);
221                         }
222         }
223         if ($email == 0)
224                 $rep->End();
225 }
226
227 ?>