https://github.com/FrontAccountingERP/FA
needs to be synched with
https://sourceforge.net/p/frontaccounting/git/commit_browser
276 05/15/2023 03:55:33 pm
Topic: GitHub not updated from SF.net since March 18th 2023. (2 replies, posted in Report Bugs here)
277 04/18/2023 05:24:27 pm
Re: Supplier Description is overwritten (14 replies, posted in Report Bugs here)
@ckrosco: If you still want t, then your code should be checked:
if ($description = "")
is an assignment but it should be
if ($description == "")
which is a comparison.
278 04/09/2023 03:29:36 pm
Re: Thai language (9 replies, posted in Translations)
Thai CoA has the country's Tax value, Fiscal year period and Thai Currency. It is there for native Thai users to update at will and submit back to the project.
Thai language is a work in progress so that native language speakers/users can fill it up and it is hosted in Transifex and can be updated at will. There are a total of 16 translations done in Transifex for the Thai Language and native speakers/users are welcome to join the effort.
The latest Thai language files are at:
https://github.com/apmuthu/FA24extensions/commit/e8e2fb61a0e34d696b9e6ebdf89c7323797dbc91
Transifex link:
https://www.transifex.com/gnuacademy/teams/55037/th_TH/
279 04/04/2023 05:09:58 pm
Re: how to increase login user text length (3 replies, posted in Setup)
Check the "View-Source" of the login form and see if some browser moz css styling automatically came in.
280 04/03/2023 11:41:48 am
Re: Thai language (9 replies, posted in Translations)
@joe: now that there is interest in FA from Thailand, it seems appropriate to include both the Thai Chart of Accounts and the Thai Language files as well into the official extension repos and update the ta_IN and vi_VN language files as well. You can take it from my unofficial extensions repo listed above.
@sng: As a native Thai speaker, kindly translate the Thai language .po file fully and send it across so that it may be compiled and placed in the public repos. Welcome to Thai users into the FA fraternity and help popularize it in your country!
281 04/02/2023 05:58:01 am
Re: Thai language (9 replies, posted in Translations)
Tamil and Vietnamese language translations have been updated.
Thai language has been included but needs to be translated for the most part.
https://www.transifex.com/gnuacademy/teams/55037/ta_IN/
https://www.transifex.com/gnuacademy/teams/55037/vi_VN/
https://www.transifex.com/gnuacademy/teams/55037/th_TH/
Unofficial Extensions Repo for Languages in FA 2.4.x:
https://github.com/apmuthu/FA24extensions/tree/master/Languages
282 04/01/2023 05:56:47 pm
Re: Thai language (9 replies, posted in Translations)
What I provided was a Thai Chart of Accounts.
You will need to manually translate the file at
lang/new_language_template/LC_MESSAGES/empty.po
by placing the translation in the msgstr line
The attached file has some initial Google Translations to start you off with.
You will then need to compile it to an .mo file and use in your lang/th_TH/LC_MESSAGES/th_TH.mo
283 03/28/2023 05:51:38 pm
Re: How to link dimension to user's setup (2 replies, posted in Dimensions)
Wiki-ed it.
284 03/28/2023 05:37:43 pm
Re: Thai language (9 replies, posted in Translations)
http://apmuthu.com/fautils/make_coa.php
will generate any FA Chart of Accounts.
Place the sql file from the attachment into your FA/sql folder and you are good to go.
285 03/28/2023 05:21:09 pm
Re: how to increase login user text length (3 replies, posted in Setup)
In FA 2.4.15+, the file access/login.php line 103 is:
text_row(_("User name"), "user_name_entry_field", $value, 20, 30);
There is no restriction of 5 characters for username.
286 03/21/2023 07:44:57 am
Re: Add ability to manage documents associated with items (4 replies, posted in Wish List)
Instead of new fields, a nextcloud path can be stored in the sysprefs table and the sharelink can be computed from a derived format of the invoice (or any other asset) ID. If nextcloud provides for some random string then it's ID value can be leveraged as otherwise a reverse link would have to be stored in some FA table's field anew.
287 03/20/2023 11:48:47 am
Re: Add ability to manage documents associated with items (4 replies, posted in Wish List)
Better to manage with a separate Open Source Application for Document Management so that the backup of FA can remain small.
1. OpenDocMan - https://github.com/opendocman/opendocman - https://www.opendocman.com/free-download/
2 PaperMerge - https://papermerge.com/ - https://github.com/papermerge/papermerge-core
3. Alfresco - https://www.alfresco.com/ecm-software/alfresco-community-editions - https://github.com/Alfresco
4. OpenKM - https://www.openkm.com/en/open-source-document-management-system.html - https://github.com/openkm/document-management-system
5. Krystal DMS - https://www.krystaldms.in/products/community/ - https://www.github.com/primeleaf/krystaldms-community-edition
6. LogicalDOC - https://www.logicaldoc.us/en-us/download-logicaldoc-community - https://sourceforge.net/projects/logicaldoc/
7. Kimios - https://www.kimios.com/ - https://github.com/kimios/kimios
8. Mayan EDMS - https://www.mayan-edms.com/ - https://gitlab.com/mayan-edms/mayan-edms
9. SeedDMS - https://www.seeddms.org/ - https://sourceforge.net/projects/seeddms
10. OpenProduc - http://jhierrot.github.io/openprodoc/ - https://github.com/JHierrot/openprodoc
Attached is the notes of my failed experiment on installing Mayan EDMS on Debian 11 (bullseye) LXC VM where the redis server could not be started but workarounds for all else till then are listed.
288 03/18/2023 02:37:12 pm
Re: Add massive Terms and Conditions/import PDF (8 replies, posted in Reporting)
The ?? construct is for later versions of PHP alone and will fail in PHP 5.x.
Verify that $res[0] is set to 9 before the if check.
No code change is required at all for PHP 5.x.
Kindly state your PHP version.
289 03/18/2023 02:21:35 pm
Re: Add massive Terms and Conditions/import PDF (8 replies, posted in Reporting)
fpdi v1.2.1 is used in FA 2.4.x.
The warning may be safely ignored. The said line is:
if ($res[0] == PDF_TYPE_OBJECT)
It can better be modified as:
if ((gettype($res[0] == 'boolean' || gettype($res[0]) == 'integer' ) && $res[0] == PDF_TYPE_OBJECT)
Which version of PHP are you using?
The said constant is defined in reporting/includes/fpdi/pdf_parser lines 38, 39:
if (!defined ('PDF_TYPE_OBJECT'))
define ('PDF_TYPE_OBJECT', 9);
It is probably expecting an 'integer' and not a 'boolean'.
Alternatively, the said line can be modified as:
$res[0] = $res[0]+0;
if ($res[0] == PDF_TYPE_OBJECT)
290 03/15/2023 04:06:01 pm
Re: 403 Forbidden Access to this resource on the server - Version 2.4.11 (3 replies, posted in Report Bugs here)
Either your web host's php version has changed or you need to fix the includes/session.inc file.
291 03/15/2023 04:03:29 pm
Re: Add massive Terms and Conditions/import PDF (8 replies, posted in Reporting)
http://frontaccounting.com/punbb/viewtopic.php?id=4511
292 03/10/2023 03:36:07 pm
Re: TCPDF error: Unable to create output file (3 replies, posted in Installation)
This could be better resolved with file and folder ownership fixes.
Debian/Ubuntu by default uses ownership of www-data
Keeping it as 775 permissions is best.
chmod -R 775 ../company/
chown -R www-data:www-data ../company/
293 03/05/2023 12:13:25 pm
Re: Supplier Payment db calls void_cust_allocations (1 replies, posted in Report Bugs here)
Committed. Thanks.
294 03/05/2023 12:10:07 pm
Re: Vietnamese lang package? (3 replies, posted in Translations)
@saosangmo: You are already a Vietnamese Language translator for FA in Transifex which is free for Open Source projects. Your 57 translations have been marked as "reviewed".
295 03/02/2023 04:09:55 pm
Re: Release 2.4.15 (3 replies, posted in Announcements)
Post Release Fixes attached.
Github Master (Bleeding Edge) Download Link
These fixes can be applied to (overwrite) the release version to be fully functional.
296 03/02/2023 03:41:53 pm
Re: Release 2.4.15 (3 replies, posted in Announcements)
Release date 2023-02-24 as of GitHub commit https://github.com/FrontAccountingERP/FA/commit/8f661801b2490ac38a65b94d07cda71491dcd8b9
SF Download Link
MD5: 435d036ff18ee109d7b243b5fa89bd84
Filesize: 1,881,330 bytes
297 03/02/2023 03:27:47 pm
Re: Approval System. (9 replies, posted in FA Modifications)
@joe: can implement in the core easily:
1. Create 1 new table to store all output (json) from various modules to store entries from lower level officers.
2. Submit button for each form submitted by low level officers can go into above table (maybe some changes in js in core forms or on_submit button logic)
3. Recursive hierarchy of roles and forms can be in another table.
298 03/02/2023 03:19:07 pm
Re: User Access for spesific COA (4 replies, posted in Wish List)
The COA is used to create a new company from the Default Company. Where does the end user get to choose the COA when logged into their company? The Admin of the company can set roles and permissions limited to those in FA only.
299 03/02/2023 03:09:29 pm
Re: Release 2.4.15 (3 replies, posted in Announcements)
No new translation strings.
Removed 2 unused translation strings.
300 02/10/2023 11:17:20 am
Re: A New Archive Category has been established. (5 replies, posted in Announcements)
Beware of Old version topics with current dated postings.