Check out the FA Wiki Support Page.
626 07/30/2020 07:45:55 pm
Re: Front Accounting Developer in Singapore (1 replies, posted in Jobs wanted/offered, non-free offers)
627 07/30/2020 07:43:42 pm
Re: Bank Account Payment Entry / gl_payment_view.php (1 replies, posted in Banking and General Ledger)
The screen display is kept simple. The reports already have the graphics - logo option. Report Footers mods are in the Wiki.
628 07/26/2020 02:02:07 pm
Re: Multiple Units of Measure in Inventory (6 replies, posted in Items and Inventory)
Make units for each packing size as a product for sales while retaining a single product for purchase with it's own unit - possible use of Assembly too.
629 07/26/2020 01:59:57 pm
Re: Modularizing the Dashboard (82 replies, posted in FA Modifications)
For those who wish to experiment with chartist.js, the links are:
https://codeload.github.com/gionkunz/chartist-js/zip/develop
https://gionkunz.github.io/chartist-js/
A nice tutorial on where to include javascript and what it does:
https://www.tutorialspoint.com/javascript/javascript_placement.htm
630 07/26/2020 01:46:57 pm
Re: Include comments /memo (from database) in Customer / Supplier Reports (3 replies, posted in Reporting)
@joe: can the SQL to get customer / supplier details be modified to retrieve the comments field too?
631 07/26/2020 01:40:58 pm
Re: Supplier Invoice Page possible? (10 replies, posted in Accounts Payable)
Have you tried Debit / Credit Notes?
632 07/26/2020 01:39:26 pm
Re: Bank Payment Entry Behaviour (6 replies, posted in Banking and General Ledger)
Checkout a few extensions from the unofficial extensions repo.
Other Posts:
https://frontaccounting.com/punbb/viewtopic.php?id=8264
https://frontaccounting.com/punbb/viewtopic.php?id=5460
https://frontaccounting.com/punbb/viewtopic.php?id=5169
633 07/26/2020 01:34:46 pm
Re: Issues in RestAPI integration (2 replies, posted in Report Bugs here)
Which API did you use?
Try the one from the @braathwaate repo or from the unofficial extensions repo.
634 07/24/2020 01:35:50 am
Re: Release 2.4.8 (8 replies, posted in Announcements)
All FA 2.4.8 users can now update to the current post release fixes (in the 4th post in this thread) that addresses a security vulnerability through using the install new language facility as also PHP 7.4 fixes.
635 07/23/2020 05:03:30 pm
Re: Item Description on Item & Inventory (2 replies, posted in Items and Inventory)
Wonder why the i.inactive is part of the SELECT column list when it is always 0 (ie., active) as per the WHERE clause.
636 07/23/2020 04:51:19 pm
Re: Bank Payment Entry Behaviour (6 replies, posted in Banking and General Ledger)
Field Level access permissions is not natively implemented in FA. An extension can be designed as per user requirements till such time, maybe in FA 2.5.
637 07/23/2020 04:48:13 pm
Re: Negative Inventory Adjustments not working anymore (2.4.8) (5 replies, posted in Items and Inventory)
@joe: is this a real issue?
638 07/14/2020 06:00:36 pm
Re: How do I restrict user not to raise invoice for all customers (5 replies, posted in Accounts Receivable)
@joe: can this be done in the core with a sys_prefs flag for now?
639 07/14/2020 05:59:27 pm
Re: translation is not working in User interface (6 replies, posted in Translations)
Wiki-ed.
640 07/12/2020 02:59:00 pm
Re: How can i create a new language (1 replies, posted in Translations)
Read the Wiki.
641 07/12/2020 02:56:34 pm
Re: How do I restrict user not to raise invoice for all customers (5 replies, posted in Accounts Receivable)
You will need a custom extension done for this as it is not available in the core.
642 07/12/2020 02:54:56 pm
Re: Insert rows between lines (5 replies, posted in Accounts Receivable)
Changing the primary keys of the respective tables and re-ordering them is possible but must be done carefully or through a separate script / extension.
643 07/12/2020 02:38:03 pm
Re: Receive Purchase Order Items: stopped working since 2.4.7! (6 replies, posted in Items and Inventory)
Please make sure you have tested with the Git Master which has the post release fixes too. The file includes/ui/allocation_cart.inc was updated on these dates:
2020-03-18 (after FA 2.4.8 was released)
2020-01-11
2019-12-26 (after FA 2.4.7 was released)
2017-11-10 (before AF 2.4.6 was released)
FA 2.4.8 was released on 2020-02-05
FA 2.4.7 was released on 2019-06-25
FA 2.4.6 was released on 2018-12-18
644 07/10/2020 02:45:35 pm
Re: Role Permission For search Items Popup (3 replies, posted in Items and Inventory)
@joe: is this desirable for certain restricted tables or can it be taken into the core? Will possibly need to change the permissions in the chart sqls as well.
645 07/10/2020 02:43:48 pm
Re: Mailing doesn't work if the header contains "&" (9 replies, posted in Report Bugs here)
Make sure you have a valid domain in your /etc/hosts (Windows: C:\Windows\System32\drivers\etc\hosts) for 127.0.0.1 along with localhost (space separated or on a new line with the said IP)
Then the valid domain in your php.ini and the changes to your php script should work fine provided your DNS SPF entry is okay for the IP you will be dishing out.
646 07/10/2020 02:32:38 pm
Re: PHP 7.4 bug (20 replies, posted in Report Bugs here)
@itronics commit should fix it.
647 07/04/2020 10:03:14 am
Re: Inventory Valuation Report showing 0 (zero) on Unit Cost (16 replies, posted in Items and Inventory)
Although the specific rep301.php has not changed in the meanwhile, some functions it directly / indirectly uses may have been changed post release in other files. No harm in putting in the post release changed files - it does not change the db in any manner and any missing sys_prefs variables entries will get auto populated. Then see if the situation changes.
648 07/04/2020 05:20:24 am
Re: PHP 7.4 bug (20 replies, posted in Report Bugs here)
Please try the attached fix on both PHP 7.4 and PHP5.x as well.
@joe: please verify and take in the fix into the core ensuring backwards compatibility.
649 07/04/2020 05:03:58 am
Re: PHP 7.4 bug (20 replies, posted in Report Bugs here)
An example of curly brace correction is available in another project's commit.
A migration script to automatically make these changes is here.
This is an issue since 2008 when both square and curly brackets were used interchangeably for arrays and string elements though it was the intention to sue them for separate purposes as explained at:
https://wiki.php.net/rfc/deprecate_curly_braces_array_access
Though currently in PHP 7.4, only the square braces can be used to initialise arrays and also assign to them values, the curly braces can generally be used everywhere else where the square bracket is used.
Other threads elsewhere that refer to this problem are at:
https://github.com/squizlabs/PHP_CodeSniffer/issues/2558
https://stackoverflow.com/questions/59158548/array-and-string-offset-access-syntax-with-curly-braces-is-deprecated
650 07/04/2020 04:49:17 am
Re: Salesman / Artisan Commission Report (3 replies, posted in Reporting)
Try tags for the specific Artisan instead of treating them as salespersons so as not to confuse with counter salesmen. The Artisans could be a profit centre, maybe even a Dimension instead too.
@joe: any SOP for this in FA?