I am using FrontAccounting 2.4.3 and installed the SimpleAPI. When I am trying to test, getting blank page.

http://localhost/fa/modules/api

Any tips to debug will help.

2

(6 replies, posted in Reporting)

I am very new to this product, but it seems like this is happening because of the way tax related attributed are set.

Please tweak the attributes in Company Setup and try running the report again.

Attributes -
1)  Tax Period - I think default value is 3 months, if you need monthly snapshot this can be updated to 1
2)  Tax Last Period - Which can be setup to 1 month.

In my opinion with these 2 changes it will not pull the last month's data and report will show only current month Input/Output Tax.

Note - Please take a note of existing values in your setup before making changes and revert if this does not give the desired results.

3

(6 replies, posted in Reporting)

Hi realjedd -

In my opinion it has to be same account as "2150 Sales Tax" for Sales/Purchase.

I understand that you are looking this from VAT standpoint, so you will get Dr. and Cr. in same account from the type of transaction i.e. Sales/Purchase. The net in this GL Account will determine that Refund or Tax Payable to statutory body in your country.

Thanks,

4

(2 replies, posted in Reporting)

Hi realjedd,

I am new to PHP and Frontaccounting, but I did some research and achieve this in my instance (May be experts here can help with better way)

FA Install Directory > reporting > includes

Edit file doctext.inc for Case ST_SALESINVOICE as below -

Original -
case ST_SALESINVOICE:
            $this->title = $this->formData['prepaid']=='partial' ? _("PREPAYMENT INVOICE")
                : ($this->formData['prepaid']=='final' ? _("FINAL INVOICE")  : _("INVOICE"));

Modified -
case ST_SALESINVOICE:
            $this->title = $this->formData['prepaid']=='partial' ? _("PREPAYMENT INVOICE")
                : ($this->formData['prepaid']=='final' ? _("FINAL INVOICE")  : _("TAX INVOICE"));

and this will display Invoice as "Tax Invoice"

Thanks