X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcreate_recurrent_invoices.php;h=dcc9cffe44c4c11b3ab491cf18ac1707894b55ff;hb=ac5842d266a1c8b935231b03f987bd52dc8b9500;hp=1f71ae42fe7311b5dc64c7f8e42f29fa3c2315ca;hpb=6a5e7b01214ffb731690a76bdee8cc9d5b19ddfe;p=fa-stable.git diff --git a/sales/create_recurrent_invoices.php b/sales/create_recurrent_invoices.php index 1f71ae42..dcc9cffe 100644 --- a/sales/create_recurrent_invoices.php +++ b/sales/create_recurrent_invoices.php @@ -23,13 +23,6 @@ if ($use_popup_windows) page(_($help_context = "Create and Print Recurrent Invoices"), false, false, "", $js); -function set_last_sent($id, $date) -{ - $date = date2sql($date); - $sql = "UPDATE ".TB_PREF."recurrent_invoices SET last_sent='$date' WHERE id=".db_escape($id); - db_query($sql,"The recurrent invoice could not be updated or added"); -} - function create_recurrent_invoices($customer_id, $branch_id, $order_no, $tmpl_no) { global $Refs; @@ -42,7 +35,7 @@ function create_recurrent_invoices($customer_id, $branch_id, $order_no, $tmpl_no $doc->trans_no = 0; $doc->document_date = Today(); // 2006-06-15. Added so Invoices and Deliveries get current day - $doc->due_date = get_invoice_duedate($doc->customer_id, $doc->document_date); + $doc->due_date = get_invoice_duedate($doc->payment, $doc->document_date); $doc->reference = $Refs->get_next($doc->trans_type); //$doc->Comments=''; @@ -55,7 +48,7 @@ function create_recurrent_invoices($customer_id, $branch_id, $order_no, $tmpl_no $cart->trans_type = ST_SALESINVOICE; $cart->reference = $Refs->get_next($cart->trans_type); $invno = $cart->write(1); - set_last_sent($tmpl_no, $cart->document_date); + update_last_sent_recurrent_invoice($tmpl_no, $cart->document_date); return $invno; } @@ -65,10 +58,7 @@ if (isset($_GET['recurrent'])) if (is_date_in_fiscalyear($date)) { $invs = array(); - $sql = "SELECT * FROM ".TB_PREF."recurrent_invoices WHERE id=".db_escape($_GET['recurrent']); - - $result = db_query($sql,"could not get recurrent invoice"); - $myrow = db_fetch($result); + $myrow = get_recurrent_invoice($_GET['recurrent']); if ($myrow['debtor_no'] == 0) { $cust = get_cust_branches_from_group($myrow['group_no']); @@ -100,21 +90,11 @@ if (isset($_GET['recurrent'])) } else display_error(_("The entered date is not in fiscal year.")); -} - -//------------------------------------------------------------------------------------------------- -function get_sales_group_name($group_no) -{ - $sql = "SELECT description FROM ".TB_PREF."groups WHERE id = ".db_escape($group_no); - $result = db_query($sql, "could not get group"); - $row = db_fetch($result); - return $row[0]; } -$sql = "SELECT * FROM ".TB_PREF."recurrent_invoices ORDER BY description, group_no, debtor_no"; -$result = db_query($sql,"could not get recurrent invoices"); +$result = get_recurrent_invoices(); -start_table("$table_style width=70%"); +start_table(TABLESTYLE, "width=70%"); $th = array(_("Description"), _("Template No"),_("Customer"),_("Branch")."/"._("Group"),_("Days"),_("Monthly"),_("Begin"),_("End"),_("Last Created"),""); table_header($th); $k = 0; @@ -170,7 +150,7 @@ if ($due) else display_note(_("No recurrent invoices are due."), 1, 0); -echo '
'; +br(); end_page(); ?>