@joe: Is this essential to include in the core FA. If so clean up the kludge herein which was just a Quick'n Dirty fix.
151 01/21/2024 02:31:42 pm
Re: allocated cloumn, and an option not to show it (17 replies, posted in Reporting)
152 01/13/2024 08:12:06 pm
Re: allocated cloumn, and an option not to show it (17 replies, posted in Reporting)
Attached is modified version of reporting/rep201.php file to suit your needs. You may do the same for reporting/rep201.php.
Such modified files should be placed in the company/#/reporting folder so as to be applicable as a substitute for the default one in the reporting folder.
153 01/13/2024 07:40:28 pm
Re: Installation at office and multiple trucks that are warehouses (2 replies, posted in Installation)
Have a separate application for managing the truck transaction data and have a middleware to synch with FA tables when at the HQ. Issues such as change in data that was already synched will render the HQ server data as stale even though newer data are in synch.
154 01/13/2024 07:33:40 pm
Re: Error Handler not working for php 8.2 (11 replies, posted in FA Modifications)
Let us freeze the PHP version for this FA version.
People should not keep updating PHP version frequently.
155 01/13/2024 07:32:23 pm
Re: How to delete or modify leave of employee from timecard (1 replies, posted in Modules/Add-on's)
If you are referring to Notrinos FrontHRM module, visit
https://frontaccounting.com/punbb/viewtopic.php?id=9773
Check for newer version.
156 01/13/2024 07:30:06 pm
Re: Edit PO Button is not shwoing at Search Outstanding Purchase Orders (2 replies, posted in Report Bugs here)
Check if there are any overdue items.
157 01/13/2024 07:25:26 pm
Re: Upgrading Front Accounting (5 replies, posted in Installation)
Navigate to Setup => Company Preferences and in the left side bottom check if the DB version is:
Database Scheme Version 2.4.1
This setting comes from the #_sys_prefs table "value: field for "name" field = version_id.
Then check your database schema and settings / constants in the your database with the schema sql of the Chart of Accounts used and make the necessary changes to match the version you used. All CoAs are for the install are in the sql folder. Also see if the version numbers match the ones in the "installed_extensions.php file if they were added from withing the UI.
After you have updated the core FA files, navigate to Setup => Software Upgrade and see if all is okay.
158 01/06/2024 07:41:24 pm
Re: allocated cloumn, and an option not to show it (17 replies, posted in Reporting)
Did you mean:
https://frontaccounting.com/fawiki/uploads/Help/Rep201_SupBalRpt.png
https://frontaccounting.com/fawiki/uploads/Help/Rep101_CustomerBalances.png
159 01/06/2024 07:25:33 pm
Re: Proper configuration for US / State Taxes (1 replies, posted in Setup)
https://www.tax-rates.org/taxtables/sales-tax-by-state
160 01/06/2024 07:24:08 pm
Re: Upgrading Front Accounting (5 replies, posted in Installation)
check version.php file.
161 01/06/2024 07:23:02 pm
Re: Needs to develop an Android app for FrontAccounting (4 replies, posted in Jobs wanted/offered, non-free offers)
What are the demo limitations?
162 01/06/2024 07:21:58 pm
Re: Emailing not setting mime-type (38 replies, posted in Reporting)
Some have success with PHP 8.0 and many have problems with later PHP versions.
163 01/06/2024 07:21:04 pm
Re: Emailing not setting mime-type (38 replies, posted in Reporting)
Some have success with PHP 8.0 and many have problems with later PHP versions.
164 01/06/2024 07:19:55 pm
Re: Error Handler not working for php 8.2 (11 replies, posted in FA Modifications)
A note page in the wiki would be good to know the extent of PHP version compatibility for each release.
165 01/06/2024 07:18:43 pm
Re: Report includes not Overriding (1 replies, posted in Reporting)
Generally only the repXXX.php files can be so placed. @joe - can the above be done too?
166 01/06/2024 07:17:11 pm
Re: Random timeout issue (5 replies, posted in Installation)
A cronjob is easily done in linux. Contact your hosting admin.
167 01/06/2024 07:15:02 pm
Re: allocated cloumn, and an option not to show it (17 replies, posted in Reporting)
Which Report are you referring to?
168 01/06/2024 07:10:18 pm
Re: Item Description in Other languages (2 replies, posted in Wish List)
Make a multi lingual string for the description with a utf8 field type
169 11/18/2023 09:25:09 pm
Re: Rep704 Total Debit and Total Credit (3 replies, posted in Reporting)
Why don't you fork the FA in GitHub and make a folder with changed files after a commit to import the original into the changes folder. That way it will be able to track changes whenever a changed file is updated in the core. Have a look at my fork.
170 11/18/2023 09:21:17 pm
Re: Backup/Restore showing Empty Database after backup (2 replies, posted in Setup)
Possible write permission error in the web server path.
171 11/18/2023 08:59:20 pm
Re: Better sql construct in sales/includes/db/sales_order_db.inc (3 replies, posted in Accounts Receivable)
It doesn't appear to have been pushed into the GitHub repo yet here. but is available in the SF.net repo. Hope the GitHub repo gets synched correctly in time.
172 11/18/2023 08:54:08 pm
Re: Encountering issues with modules and updates (2 replies, posted in Report Bugs here)
173 11/18/2023 08:51:41 pm
Re: Improvements to FA (3 replies, posted in Wish List)
Please make customisation to current version / master code base listing diff files. Use WinMerge for it as you are using windows (CRLF in your files).
174 11/18/2023 08:49:31 pm
Re: Random timeout issue (5 replies, posted in Installation)
Can re-validate session when it expires until logout - no need for db tables and other customisations. A cronjob to revalidate all sessions from time to time is also another option without FA code change.
175 11/18/2023 08:45:47 pm
Re: 0005724: Bug In Date Editing in Latest FA (7 replies, posted in Report Bugs here)
This occurs due to lines 28-32 in includes/db/audit_trail_db.inc:
$sql = "UPDATE ".TB_PREF."audit_trail audit LEFT JOIN ".TB_PREF."fiscal_year year ON year.begin<='$date' AND year.end>='$date'
SET audit.gl_seq = IF(audit.id=".db_insert_id().", 0, NULL),"
."audit.fiscal_year=year.id"
. " WHERE type=".db_escape($trans_type)." AND trans_no="
. db_escape($trans_no);
If there is no valid matching value of the field fiscal_year as happens when no records for fiscal year in question, this will error out.