Merged changes in main branch up to v.2.1.2
[fa-stable.git] / reporting / includes / header2.inc
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                 // New version (without vertical lines)
13
14                 $this->row = $this->pageHeight - $this->topMargin;
15
16                 $upper = $this->row - 2 * $this->lineHeight;
17                 $lower = $this->bottomMargin + 6 * $this->lineHeight;
18                 $iline1 = $upper - 7.5 * $this->lineHeight;
19                 $iline2 = $iline1 - 8 * $this->lineHeight;
20                 $iline3 = $iline2 - 1.5 * $this->lineHeight;
21                 $iline4 = $iline3 - 1.5 * $this->lineHeight;
22                 $iline5 = $iline4 - 3 * $this->lineHeight;
23                 $iline6 = $iline5 - 1.5 * $this->lineHeight;
24                 $iline7 = $lower;
25                 $right = $this->pageWidth - $this->rightMargin;
26                 $width = ($right - $this->leftMargin) / 6;
27                 $icol = $this->pageWidth / 2;
28                 $ccol = $this->cols[0] + 4;
29                 $c2col = $ccol + 60;
30                 $ccol2 = $icol / 2;
31                 $mcol = $icol + 8;
32                 $mcol2 = $this->pageWidth - $ccol2;
33                 $cols = count($this->cols);
34                 $this->SetDrawColor(205, 205, 205);
35                 $this->Line($iline1, 3);
36                 $this->SetDrawColor(128, 128, 128);
37                 $this->Line($iline1);
38                 $this->rectangle($this->leftMargin, $iline2, $right - $this->leftMargin, $iline2 - $iline3, "F", null, array(222, 231, 236));   
39                 $this->Line($iline2);
40                 $this->Line($iline3);
41                 $this->Line($iline4);
42                 $this->rectangle($this->leftMargin, $iline5, $right - $this->leftMargin, $iline5 - $iline6, "F", null, array(222, 231, 236));   
43                 $this->Line($iline5);
44                 $this->Line($iline6);
45                 $this->Line($iline7);
46                 $this->LineTo($this->leftMargin, $iline2 ,$this->leftMargin, $iline4);
47                 $col = $this->leftMargin;
48                 for ($i = 0; $i < 5; $i++)
49                 {
50                         $this->LineTo($col += $width, $iline2,$col, $iline4);
51                 }       
52                 $this->LineTo($right, $iline2 ,$right, $iline4);
53                 $this->LineTo($this->leftMargin, $iline5 ,$this->leftMargin, $iline7);
54                 $this->LineTo($this->cols[$cols - 2] + 4, $iline5 ,$this->cols[$cols - 2] + 4, $iline7);
55                 $this->LineTo($right, $iline5 ,$right, $iline7);
56
57                 $this->NewLine();
58                 if ($this->company['coy_logo'] != '')
59                 {
60                         $logo = $comp_path .'/'. user_company() . "/images/" . $this->company['coy_logo'];
61                         $this->AddImage($logo, $ccol, $this->row - 10, 0, 40);
62                 }
63                 else
64                 {
65                         $this->fontSize += 4;
66                         $this->Font('bold');
67                         $this->Text($ccol, $this->company['coy_name'], $icol);
68                         $this->Font();
69                         $this->fontSize -= 4;
70                 }
71                 $this->SetTextColor(190, 190, 190);
72                 $this->fontSize += 10;
73                 $this->Font('bold');
74                 $this->TextWrap($mcol, $this->row, $this->pageWidth - $this->rightMargin - $mcol - 20, $this->title, 'right');
75                 $this->Font();
76                 $this->fontSize -= 10;
77                 $this->NewLine();
78                 $this->SetTextColor(0, 0, 0);
79                 $adrline = $this->row;
80                 $this->TextWrapLines($ccol, $icol, $this->company['postal_address']);
81                 $this->Font('italic');
82                 if ($this->company['phone'] != "")
83                 {
84                         $this->Text($ccol, _("Phone"), $c2col);
85                         $this->Text($c2col, $this->company['phone'], $mcol);
86                         $this->NewLine();
87                 }       
88                 if ($this->company['fax'] != "")
89                 {
90                         $this->Text($ccol, _("Fax"), $c2col);
91                         $this->Text($c2col, $this->company['fax'], $mcol);
92                         $this->NewLine();
93                 }       
94                 if ($this->company['email'] != "")
95                 {
96                         $this->Text($ccol, _("Email"), $c2col);
97
98                         $url = "mailto:" . $this->company['email'];
99                         $this->SetTextColor(0, 0, 255);
100                         $this->Text($c2col, $this->company['email'], $mcol);
101                         $this->SetTextColor(0, 0, 0);
102                         $this->addLink($url, $c2col, $this->row, $mcol, $this->row + $this->lineHeight);
103
104                         $this->NewLine();
105                 }       
106                 if ($this->company['gst_no'] != "")
107                 {
108                         $this->Text($ccol, $doc_Our_VAT_no, $c2col);
109                         $this->Text($c2col, $this->company['gst_no'], $mcol);
110                         $this->NewLine();
111                 }
112                 if (($doctype == 10 || $doctype == 12) && $this->company['domicile'] != "")
113                 {
114                         $this->Text($ccol, $doc_Domicile, $c2col);
115                         $this->Text($c2col, $this->company['domicile'], $mcol);
116                         $this->NewLine();
117                 }
118                 $this->Font();
119                 $this->row = $adrline;
120                 $this->NewLine(3);
121                 $this->Text($mcol + 100, $doc_Date.":");
122                 if ($doctype == 8 || $doctype == 9)
123                         $this->Text($mcol + 180, sql2date($myrow['ord_date']));
124                 else
125                         $this->Text($mcol + 180, sql2date($myrow['tran_date']));
126                 $this->NewLine();
127                 $this->Text($mcol + 100, $doc_Invoice_no);
128                 if ($doctype == 8 || $doctype == 9) // PO or SO
129                         $this->Text($mcol + 180, $myrow['order_no']);
130                 else if (isset($myrow['trans_no']) && isset($myrow['reference'])) // INV/CRE/STA
131                 {
132                         if ($print_invoice_no == 1)
133                                 $this->Text($mcol + 180, $myrow['trans_no']);
134                         else
135                                 $this->Text($mcol + 180, $myrow['reference']);
136                 }
137
138                 if ($this->pageNumber > 1 && !strstr($this->filename, "Bulk"))
139                         $this->Text($this->endLine - 35, _("Page") . ' ' . $this->pageNumber);
140                 $this->row = $iline1 - $this->lineHeight;
141                 $this->fontSize -= 4;
142                 $this->Text($ccol, $doc_Charge_To, $icol);
143                 $this->Text($mcol, $doc_Delivered_To);
144                 $this->fontSize += 4;
145
146                 $this->row = $this->row - $this->lineHeight - 5;
147
148                 $temp = $this->row;
149                 if ($doctype == 9)
150                 {
151                         $this->Text($ccol, $myrow['name'], $icol);
152                 }
153                 else
154                 {
155                         if ($doctype == 8) {
156                                 $name = $myrow['supp_name'];
157                                 $addr = $myrow['address'];
158                         } else {
159                                 if (trim($branch['br_address']) != '') {
160                                         $name = $branch['br_name'];
161                                         $addr = $branch['br_address'];
162                                 } else {
163                                         $name = $myrow['DebtorName'];
164                                         $addr = $myrow['address'];
165                                 }
166                         }
167                         $this->Text($ccol, $name, $icol);
168                         $this->NewLine();
169                         $this->TextWrapLines($ccol, $icol - $ccol, $addr);
170                 }
171                 if ($sales_order != NULL)
172                 {
173                         $this->row = $temp;
174                         if ($doctype == 8)
175                                 $this->Text($mcol, $this->company['coy_name']);
176                         else
177                                 $this->Text($mcol, $sales_order['deliver_to']);
178                         $this->NewLine();
179                         $this->TextWrapLines($mcol, $this->rightMargin - $mcol, $sales_order['delivery_address']);
180                 }
181                 $this->row = $iline2 - $this->lineHeight - 1;
182                 $col = $this->leftMargin;
183                 $this->TextWrap($col, $this->row, $width, $doc_Customers_Ref, 'C');
184                 $col += $width;
185                 $this->TextWrap($col, $this->row, $width, $doc_Our_Ref, 'C');
186                 $col += $width;
187                 $this->TextWrap($col, $this->row, $width, $doc_Your_VAT_no, 'C');
188                 $col += $width;
189                 if ($doctype == 10)
190                         $this->TextWrap($col, $this->row, $width, $doc_Delivery_no, 'C');
191                 else
192                         $this->TextWrap($col, $this->row, $width, $doc_Our_Order_No, 'C');
193                 $col += $width;
194                 $this->TextWrap($col, $this->row, $width, $doc_Payment_Terms, 'C');
195                 $col += $width;
196                 $this->TextWrap($col, $this->row, $width, $doc_Due_Date, 'C');
197                 $this->row = $iline3 - $this->lineHeight - 1;
198                 $col = $this->leftMargin;
199                 if ($doctype == 8)
200                         $this->TextWrap($col, $this->row, $width, $myrow['supp_account_no'], 'C');
201                 elseif (isset($sales_order["customer_ref"]))
202                         $this->TextWrap($col, $this->row, $width, $sales_order["customer_ref"], 'C');
203                 $col += $width; 
204                 if ($branch != null)
205                 {
206                         $id = $branch['salesman'];
207                         $sql = "SELECT salesman_name  FROM ".TB_PREF."salesman WHERE salesman_code='$id'";
208                         $result = db_query($sql,"could not get sales person");
209                         $row = db_fetch($result);
210                         $this->TextWrap($col, $this->row, $width, $row['salesman_name'], 'C');
211                 }               
212                 $col += $width; 
213                 if ($doctype != 8 && isset($myrow['tax_id']))
214                         $this->TextWrap($col, $this->row, $width, $myrow['tax_id'], 'C');
215                 $col += $width; 
216                 if ($doctype == 10)
217                 {
218                         $deliveries = get_parent_trans(10,$myrow['trans_no']);
219                         $line = "";
220                         foreach ($deliveries as $delivery)
221                         {
222                                 if ($line == "")
223                                         $line .= "$delivery";
224                                 else
225                                         $line .= ",$delivery";
226                         }               
227                         $this->TextWrap($col, $this->row, $width, $line, 'C');
228                 }
229                 elseif (isset($myrow['order_']))
230                         $this->TextWrap($col, $this->row, $width, $myrow['order_'], 'C');
231                 $col += $width; 
232                 $id = $myrow['payment_terms'];
233                 $sql = "SELECT terms FROM ".TB_PREF."payment_terms WHERE terms_indicator='$id'";
234                 $result = db_query($sql,"could not get paymentterms");
235                 $row = db_fetch($result);
236                 $this->TextWrap($col, $this->row, $width, $row["terms"], 'C');
237                 $col += $width; 
238                 if ($doctype == 9)
239                         $this->TextWrap($col, $this->row, $width, sql2date($myrow['delivery_date']), 'C');
240                 else if ($doctype != 8 && $doctype != 11 && isset($myrow['due_date']))
241                         $this->TextWrap($col, $this->row, $width, sql2date($myrow['due_date']), 'C');
242                 
243                 $this->row = $iline5 - $this->lineHeight - 1;
244                 $this->Font('bold');
245                 $count = count($this->headers);
246                 $this->cols[$count] = $right - 3;
247                 for ($i = 0; $i < $count; $i++)
248                         $this->TextCol($i, $i + 1, $this->headers[$i], -2);
249                 $this->Font();
250                 $this->Font('italic');
251                 $this->row = $iline7 - $this->lineHeight - 6;
252                 $this->TextWrap($ccol, $this->row, $right - $ccol, $doc_Please_Quote . " - " . $myrow['curr_code'], 'C');
253                 $this->NewLine();
254
255                 if (isset($bankaccount['bank_name']))
256                 {
257                         $txt = $doc_Bank . ": ".$bankaccount['bank_name']. ", " . $doc_Bank_Account . ": " . $bankaccount['bank_account_number'];
258                         $this->TextWrap($ccol, $this->row, $right - $ccol, $txt, 'C');
259                         $this->NewLine();
260                 }       
261                 if ($doctype == 10 && $branch['disable_branch'] > 0) // payment links
262                 {
263                         if ($branch['disable_branch'] == 1)
264                         {
265                                 $amt = number_format($myrow["ov_freight"] + $myrow["ov_gst"] +  $myrow["ov_amount"], user_price_dec());
266                                 $txt = $doc_Payment_Link . " PayPal: ";
267                                 $name = urlencode($this->title . " " . $myrow['reference']);
268                                 $url = "https://www.paypal.com/xclick/business=" . $this->company['email'] . "&item_name=" .
269                                         $name . "&amount=" . $amt . "&currency_code=" . $myrow['curr_code'];
270                                 $this->fontSize -= 2;
271                                 $this->TextWrap($ccol, $this->row, $right - $ccol, $txt, 'C');
272                                 $this->NewLine();
273                                 $this->SetTextColor(0, 0, 255);
274                                 $this->TextWrap($ccol, $this->row, $right - $ccol, $url, 'C');
275                                 $this->SetTextColor(0, 0, 0);
276                                 $this->addLink($url, $ccol, $this->row, $this->pageWidth - $this->rightMargin, $this->row + $this->lineHeight);
277                                 $this->fontSize += 2;
278                                 $this->NewLine();
279                         }
280                 }
281                 if ($this->params['comments'] != '')
282                 {
283                         $this->TextWrap($ccol, $this->row, $right - $ccol, $this->params['comments'], 'C');
284                         $this->NewLine();
285                 }
286                 if (($doctype == 10 || $doctype == 12) && $this->company['legal_text'] != "") 
287                 {
288                         $this->TextWrap($ccol, $this->row, $right - $ccol, $this->company['legal_text'], 'C');
289                         $this->NewLine();
290                 }
291                 $this->Font();
292                 $temp = $iline6 - $this->lineHeight - 2;
293 ?>