Changed license type to GPLv3 in top of files
[fa-stable.git] / reporting / includes / doctext.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_Bank_Account = _("Bank Account");
36          $doc_Please_Quote = _("Please quote Invoice no. when paying. All amounts stated in");
37         }
38         $doc_Address = _("Address");
39         $doc_Phone_Fax_Email = _("Phone/Fax/Email");
40         $doc_Bank = _("Bank");
41         $doc_Bank_Account = _("Bank Account");
42         $doc_Payment_Link = _("You can pay through");
43         if ($doctype == 8 || $doctype == 9 || $doctype == 10 || $doctype == 11 || $doctype == 13)
44         {
45                 if ($doctype == 8)
46                         $this->title = _("PURCHASE ORDER");
47                 else if ($doctype == 13)
48                         $this->title = _("DELIVERY NOTE");
49                 else if ($doctype == 9)
50                         $this->title = ($print_as_quote==1 ? _("QUOTE") : _("SALES ORDER"));
51                 else if ($doctype == 10)
52                         $this->title = _("INVOICE");
53                 else
54                         $this->title = _("CREDIT NOTE");
55                 if ($doctype == 8)
56                         $this->headers = array(_("Item Code"), _("Item Description"),
57                                 _("Delivery Date"), _("Quantity"),      _("Unit"), _("Price"), _("Total"));
58                 else
59                         $this->headers = array(_("Item Code"), _("Item Description"),   _("Quantity"),
60                                 _("Unit"), _("Price"), _("Discount %"), _("Total"));
61         }
62         else if ($doctype == 12)
63         {
64                 $this->title = _("STATEMENT");
65                 $this->headers = array(_("Trans Type"), _("#"), _("Date"), _("DueDate"), _("Charges"),
66                         _("Credits"), _("Allocated"), _("Outstanding"));
67         }
68 }
69 if (isset($emailtype))
70 {
71         $doc_Dear_Sirs = _("Dear Sirs");
72         $doc_AttachedFile = _("Attached you will find ");
73         $doc_Kindest_regards = _("Kindest regards");
74         $doc_Payment_Link = _("You can pay through");
75 }
76 if (isset($header2type) || isset($linetype))
77 {
78         $doc_Invoice_no = ($doctype==13 ? _("Delivery Note No.") : (($doctype==8 || $doctype==9) ? _("Order no.") : _("Invoice No.")));
79         $doc_Delivery_no = _("Delivery Note No.");
80         $doc_Order_no = _("Order no.");
81 }
82 if (isset($linetype))
83 {
84         if ($doctype == 8 || $doctype == 9 || $doctype == 10 || $doctype == 11 || $doctype == 13)
85         {
86                 $doc_Sub_total = _("Sub-total");
87                 $doc_Shipping = _("Shipping");
88                 $doc_Included = _("Included");
89                 $doc_Amount = _("Amount");
90                 $doc_TOTAL_INVOICE = _("TOTAL INVOICE");
91                 $doc_TOTAL_ORDER = _("TOTAL ORDER EX VAT");
92                 $doc_TOTAL_PO = _("TOTAL PO EX VAT");
93                 $doc_TOTAL_DELIVERY = _("TOTAL DELIVERY INCL. VAT");
94         }
95         else if ($doctype == 12)
96         {
97                 $doc_Outstanding = _("Outstanding Transactions");
98                 $doc_Current = _("Current");
99                 $doc_Total_Balance = _("Total Balance");
100                 $doc_Statement = _("Statement");
101                 $doc_as_of = _("as of");
102                 $doc_Days = _("Days");
103                 $doc_Over = _("Over");
104         }
105 }
106 ?>