Merged changes form main trunk since 2.1RC
[fa-stable.git] / reporting / includes / doctext2.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 if (isset($header2type))
13 {
14         $doc_Cust_no = "Cust no";
15         $doc_Date = "Date";
16         $doc_Charge_To = "Charge To";
17         $doc_Delivered_To = "Delivered To";
18         $doc_Shipping_Company = "Shipping Company";
19         if ($doctype == 9)
20                 $doc_Due_Date = "Delivery Date";
21         else
22                 $doc_Due_Date = "Due Date";
23         $doc_Your_Ref = "Your Ref";
24         $doc_Our_Ref = "Our Ref.";
25         $doc_Your_VAT_no = "Your VAT No.";
26         $doc_Our_VAT_no = "Our VAT No.";
27         $doc_Payment_Terms = "Payment Terms";
28         $doc_Customers_Ref = "Customers Reference";
29         $doc_Our_Order_No = "Our Order No";
30         $doc_Domicile = "Domicile";
31         if($doctype == 13 || $doctype == 8 || $doctype == 9) {
32          $doc_Bank_Account = '';
33          $doc_Please_Quote = "All amounts stated in";
34   } else {
35          $doc_Please_Quote = "Please quote ".($doctype==10 ? "Invoice" : "Credit")
36                 ." no. when paying. All amounts stated in";
37          $doc_Bank_Account = "Bank Account";
38         }
39         $doc_Address = "Address";
40         $doc_Phone_Fax_Email = "Phone/Fax/Email";
41         $doc_Bank = "Bank";
42         $doc_Bank_Account = "Bank Account";
43         $doc_Payment_Link = "You can pay through";
44         if ($doctype == 8 || $doctype == 9 || $doctype == 10 || $doctype == 11 || $doctype == 13)
45         {
46                 if ($doctype == 8)
47                         $this->title = "PURCHASE ORDER";
48                 else if ($doctype == 9)
49                         $this->title = ($print_as_quote==1 ? "QUOTE" : "SALES ORDER");
50                 else if ($doctype == 10)
51                         $this->title = "INVOICE";
52                 else if ($doctype == 13)
53                         $this->title = "DELIVERY NOTE";
54                 else
55                         $this->title = "CREDIT NOTE";
56                 if ($doctype == 8)
57                         $this->headers = array('Item Code', 'Item Description', 'Delivery Date',
58                                 'Quantity', 'Unit',     'Price', 'Total');
59                 else
60                         $this->headers = array('Item Code', 'Item Description', 'Quantity', 'Unit',
61                                 'Price', 'Discount %', 'Total');
62         }
63         else if ($doctype == 12)
64         {
65                 $this->title = "STATEMENT";
66                 $this->headers = array('Trans Type', '#', 'Date', 'Due Date', 'Charges',
67                         'Credits', 'Allocated', 'Outstanding');
68         }
69 }
70 if (isset($emailtype))
71 {
72         $doc_Dear_Sirs = "Dear Sirs";
73         $doc_AttachedFile = "Attached you will find ";
74         $doc_Kindest_regards = "Kindest regards";
75         $doc_Payment_Link = "You can pay through";
76 }
77 if (isset($header2type) || isset($linetype))
78 {
79         $doc_Invoice_no = ($doctype==13 ? "Delivery Note No." : (($doctype==8 || $doctype==9) ? "Order no." : 
80         ($doctype==10 ? "Invoice No." : "Credit No.")));
81         $doc_Delivery_no = "Delivery Note No.";
82         $doc_Order_no = "Order no.";
83 }
84 if (isset($linetype))
85 {
86         if ($doctype == 8 || $doctype == 9 || $doctype == 10 || $doctype == 11 || $doctype == 13)
87         {
88                 $doc_Sub_total = "Sub-total";
89                 $doc_Shipping = "Shipping";
90                 $doc_Included = "Included";
91                 $doc_Amount = "amount";
92                 $doc_TOTAL_INVOICE = $doctype==10 ? "TOTAL INVOICE" : "TOTAL CREDIT";
93                 $doc_TOTAL_ORDER = "TOTAL ORDER EX VAT";
94                 $doc_TOTAL_PO = "TOTAL PO EX VAT";
95                 $doc_TOTAL_DELIVERY = "TOTAL DELIVERY INCL. VAT";
96         }
97         else if ($doctype == 12)
98         {
99                 $doc_Outstanding = "Outstanding Transactions";
100                 $doc_Current = "Current";
101                 $doc_Total_Balance = "Total Balance";
102                 $doc_Statement = "Statement";
103                 $doc_as_of = "as of";
104                 $doc_Days = "Days";
105                 $doc_Over = "Over";
106         }
107 }
108 ?>