Merged changes from main trunk up to version_2_1_4
[fa-stable.git] / sales / create_recurrent_invoices.php
index d398648c93e3894d89a8075d05c0a8d037846f2d..603eef15eef5c4713ac67f0ada6abe8d850b883f 100644 (file)
@@ -1,6 +1,14 @@
 <?php
-
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 $page_security = 3;
 $path_to_root="..";
 include_once($path_to_root . "/sales/includes/cart_class.inc");
@@ -34,7 +42,7 @@ function create_recurrent_invoices($customer_id, $branch_id, $order_no, $tmpl_no
 
        $doc->due_date = get_invoice_duedate($doc->customer_id, $doc->document_date);
        $doc->reference = references::get_next($doc->trans_type);
-       $doc->Comments='';
+       //$doc->Comments='';
 
        foreach ($doc->line_items as $line_no=>$item) {
                $line = &$doc->line_items[$line_no];
@@ -150,7 +158,7 @@ end_table();
 if ($due)
        display_note(_("Marked items are due."), 1, 0, "class='overduefg'");
 else
-       display_note(("No recurrent invoices are due."), 1, 0);
+       display_note(_("No recurrent invoices are due."), 1, 0);
 
 echo '<br>';