Topic: Recurring invoices

This has probably been asked before but...

We're looking to have the 'Recurrent invoices covers period' to show dates in the future.  I.e. if we send out an invoice on 1st April 2015 we would like the period to show 1st April 2015 to 30th March 2016.

Is this possible on the current version of FA?  We're running 2.3.24.

It may be that we can remove the 'Recurrent invoices covers period' line from the invoices/templates - and just add to the invoice/template in the comment that 'This invoice is to cover the period from the invoice date onwards." or something similar.

Re: Recurring invoices

yes you can make recurrent invoices , try to read the wiki for it, you can create it recurrent invoices.

check mine article about recurrent invoices, i hope this will help you

http://www.kvcodes.com/2015/02/create-recurrent-invoice-frontaccounting/

Subscription service based on FA
HRM CRM POS batch Themes

Re: Recurring invoices

Look at line 44 in sales/create_recurrent_invoices.php

    $doc->Comments .= sprintf(_("Recurrent Invoice covers period %s - %s."), $from, add_days($to, -1));

The above file is called only in line 38 of applications/customers.php - lines 37-38:

        $this->add_rapp_function(0, _("&Create and Print Recurrent Invoices"),
            "sales/create_recurrent_invoices.php?", 'SA_SALESINVOICE', MENU_TRANSACTION);

which is just the menu entry to create and print  Recurrent Invoices.