Changing the fiscal id will need to be reflected in some other tables as well.
1,501 11/06/2018 04:57:49 pm
Re: Fiscal year error on every transaction (11 replies, posted in Report Bugs here)
1,502 11/06/2018 04:54:32 pm
Re: Automatic Creation of Transaction Reference Number (2 replies, posted in Banking and General Ledger)
Known Issue:
https://frontaccounting.com/punbb/viewtopic.php?id=6036
https://frontaccounting.com/punbb/viewtopic.php?id=7651
Check the Wiki for workarounds.
1,503 11/06/2018 04:48:59 pm
Re: Import Items CSV in FA 2.4.4 (5 replies, posted in Report Bugs here)
Make sure the installed_extensions.php file refers to the actual path in the modules folder where the extension resides.
1,504 11/04/2018 09:41:31 am
Re: Import Items CSV in FA 2.4.4 (5 replies, posted in Report Bugs here)
Use the files from the unofficial repo to overwrite their counterparts. Alternatively, the updated import_items extension is attached herewith which can be unpacked into the /modules/ folder and then installed and activated in the default company admin FA login.
1,505 11/04/2018 09:37:49 am
Re: Fiscal year error on every transaction (11 replies, posted in Report Bugs here)
List the contents of the fiscal year table. The sequence of the ids must match the sort order of the fiscal year start field.
1,506 11/04/2018 01:36:03 am
Re: Fiscal year error on every transaction (11 replies, posted in Report Bugs here)
Set your active fiscal year in company setup. Do not change the code.
1,507 11/04/2018 01:34:46 am
Re: Fixing Usage - report generator (40 replies, posted in Modules Add-on's)
The latest repgen is attached herewith.
Unpack into the /modules/ folder and install and activate as desired. Then activate the repgen permissions for the Administrator role in each company.
1,508 11/04/2018 01:30:53 am
Re: Tax Report (12 replies, posted in Reporting)
@joe: any legacy port went awry?
1,509 11/04/2018 01:29:57 am
Re: Disable server side cache (7 replies, posted in FA Modifications)
@poncho1234: You are right - the company/#/js_cache/1/* vanishes.
1,510 11/04/2018 01:27:36 am
Re: Creating delivery service item posts Inventory and COGS Automaticly. (9 replies, posted in Accounts Receivable)
The Post release files just overwrite the existing counterparts - take care of the parent folder structure to suit your install.
Verify that your config.php file has the variables of the new config.default.php file which has not changed since FA 2.4.4 release yet.
Compare the variables in your sys_prefs table and fill in any absent in them that are in the standard chart of accounts - sql/en_US-new.sql.
Any addon modules from old FA 2.3 installs may have to be updated to their FA 2.4 counterparts if any.
1,511 11/03/2018 08:26:39 am
Re: Creating delivery service item posts Inventory and COGS Automaticly. (9 replies, posted in Accounts Receivable)
Use the Post Release fixes files as well at:
https://frontaccounting.com/punbb/viewtopic.php?pid=31246#p31246
1,512 11/03/2018 08:06:16 am
Re: Accounting Standard in Front accounting (9 replies, posted in Setup)
Hope your fiscal years table is properly arranged - the id is sequential and matches the table data years.
1,513 11/03/2018 08:05:03 am
Re: Creating delivery service item posts Inventory and COGS Automaticly. (9 replies, posted in Accounts Receivable)
Which version of FA and what Chart are you using?
1,514 11/03/2018 08:01:46 am
Re: Bug Created by Last Commit to items.php (8 replies, posted in Items and Inventory)
@joe: This could be an issue based on the commit at line 363 where a sales_account is used instead of item units.
1,515 11/03/2018 08:00:09 am
Re: Disable server side cache (7 replies, posted in FA Modifications)
@joe: can this be generically updated in the core?
1,516 11/03/2018 07:57:31 am
Re: Fixing Usage - report generator (40 replies, posted in Modules Add-on's)
Upgrade to FA 2.4.4 Git Master version and use the FA 2.4.x version of the report generator extension at https://github.com/apmuthu/FA24extensions/tree/master/Extensions/repgen
1,517 10/31/2018 06:50:18 pm
Re: Tax Report (12 replies, posted in Reporting)
Try the Git Master version and revert on any issue still remaining.
1,518 10/31/2018 06:47:38 pm
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
All such PHP 7.x gotchas can be made into a separate php7.php file to be included if a PHP7.x version is in use.
1,519 10/31/2018 01:20:17 am
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
@joe: Can we change all such each() constructs using @cleal's function?
1,520 10/30/2018 06:09:20 am
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
Quite a few other pages need the changes even if not all listed in my previous post. Would a generic PHP 7.2 function / class file be created with such overrides so as not to have to makes such changes everywhere?
1,521 10/29/2018 11:39:55 am
Re: reports_classes.inc:40: count() (26 replies, posted in Reporting)
A search for the string "= count(" reveals several places in several files:
1,522 10/29/2018 11:32:09 am
Re: Setting Up Suppliers (1 replies, posted in Setup)
When inventory need not be tracked and allocations are not envisaged, a direct expense can be booked.
Read the Wiki.
1,523 10/26/2018 02:37:34 am
Re: Making Tax Digital VAT in UK and EEC (27 replies, posted in Setup)
https://github.com/PHPOffice
https://github.com/PHPOffice/PhpSpreadsheet
1,524 10/26/2018 02:35:23 am
Re: Fixed deprecated each() function in PHP 7.2 (4 replies, posted in Report Bugs here)
Please do the same for fpdi/fpdi.php
1,525 10/26/2018 01:37:07 am
Re: The each() function is deprecated TCPDF (7 replies, posted in Reporting)
There are 4 matches in reporting/includes/tcpdf.php (committed) and 1 in reporting/includes/fpdi/fpdi. (line 396).
The foreach() construct has been in existence for quite a while, the each() was convenient as an all-in-one list() assignment as well. PHP 7.2+ seems to be reducing alternative coding constructs as part of their "standardisation".