Try with PHP 7, 7.1 and 7.2 and see it broke then. Try switching the exchange rate provider. Some broke earlier.
426 03/08/2021 07:26:28 am
Re: Cannot download repo index file. error 2.4.6 (10 replies, posted in Report Bugs here)
427 03/06/2021 08:23:23 am
Re: Hide Menu options if not authorized (for Report) (6 replies, posted in Wish List)
This workaround is for those who want it and is documented in the wiki.
Sometimes, bosses do not want their staff to see what reports the management is capable of viewing!
428 03/05/2021 04:44:34 pm
Re: Re-open Closed Work order (1 replies, posted in Wish List)
Void and re-create?
429 03/05/2021 04:43:59 pm
Re: Hide Menu options if not authorized (for Report) (6 replies, posted in Wish List)
@joe: ?
430 03/05/2021 04:38:57 pm
Re: How to Create an opening balance in Fixed Assets? (4 replies, posted in Fixed Assets)
As opening balance or a set of Asset depreciation entries or as a single consolidated asset depreciation entry.
431 03/05/2021 04:34:22 pm
Re: Customer Statement by Customer branches (6 replies, posted in Reporting)
@joe: can hammer out a new report for this in the core.
432 03/05/2021 04:31:12 pm
Re: Cannot download repo index file. error 2.4.6 (10 replies, posted in Report Bugs here)
What browser and version are you using?
433 03/01/2021 07:23:51 am
Re: Customer Statement by Customer branches (6 replies, posted in Reporting)
Each Customer can have more than 1 branch. This report is by Customer only. You will have to create a new one for Customer Branch Balances based on this one except that you will need the necessary data and label elements along with an additional field in the GROUP BY clause.
Where in the attachment would you want the Branch Name? The report may have to accommodate it in a preceding line in italics or be in a section of it's own.
434 02/26/2021 07:07:04 pm
Re: Uncaught TypeError: found[k].className.match is not a function (8 replies, posted in Report Bugs here)
@joe: ?
435 02/20/2021 04:58:31 pm
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Updated FrontHRM module in FA24extensions repo to upstream as of 2020-11-03.
436 02/20/2021 04:10:43 pm
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Are you using the latest code from the GitHub repo for both FA and FrontHrm?
FrontHRM uses 19 tables listed here. Study the Entity Relationship Diagram (ERD) to check if what you want is possible within the default tables.
437 02/17/2021 07:12:38 pm
Re: PRINT POUT (1 replies, posted in Reporting)
Are you able to see each company's name in their reports correctly?
What do you mean by same design?
Standard design will have the company name according to what is set in Setup => Company Setup => Company Name form.
438 02/17/2021 07:06:49 pm
Re: Civil and fiscal balances (1 replies, posted in Banking and General Ledger)
What is a Civil balance?
439 02/17/2021 06:56:52 pm
Re: Installation Challenges on Window 10 (1 replies, posted in Installation)
Permission issues? (UAC disable)
440 02/08/2021 01:55:07 pm
Re: How to change old items to use bar-code instead of Item Code. (8 replies, posted in Setup)
The following Wiki pages have the DB's ERDs:
https://frontaccounting.com/fawiki/index.php?n=Devel.ERDiagram23
https://frontaccounting.com/fawiki/index.php?n=Devel.ERDiagram24
BarCode dev info:
https://frontaccounting.com/fawiki/index.php?n=Devel.BarCodeUsage
441 02/06/2021 11:20:11 am
Re: Import Transactions (154 replies, posted in Modules Add-on's)
Quick Entries are to avoid importing transactions for rarely occurring transactions with a standard set of entries. They can be analysed as an anatomy of the transaction in the backup sql differences before and after a transaction and mimicked as calculated and suitably formed SQL constructs for direct application on the database.
Quick Entries is an integral part of FA and not an external module.
442 02/06/2021 11:07:46 am
Re: Separate barcode per piece for similar items (4 replies, posted in Items and Inventory)
Foreign Item Codes are used to map supplier item codes to FA Item codes so that the sales and purchase sides are mapped.
443 02/06/2021 11:01:44 am
Re: Not showing Theme Images (2 replies, posted in Installation)
Right-click your image places and choose image location and see your web path matches your install path.
Your link in the PM - http://eic.group/account shows up only in latest versions of browsers in latest OSes on it and that too as a 2019 Jeddah based Engineering company's brochure. Hence is could be a DNS path issue as well.
444 01/31/2021 10:02:21 am
Re: Bug 5326 needs reversion for PHP < 5.5 (3 replies, posted in Report Bugs here)
Fixed and committed in my fixes repo by replacing line 325 in includes/archive.inc:
$temp = unpack("Z100name/Z8mode/Z8uid/Z8gid/Z12size/Z12mtime/Z8checksum/Z1type/Z100symlink/Z6magic/Z2temp/Z32temp/Z32temp/Z8temp/Z8temp/Z155prefix/Z12temp", $block);
with
if (version_compare(PHP_VERSION, '5.5.0') >= 0)
$temp = unpack("Z100name/Z8mode/Z8uid/Z8gid/Z12size/Z12mtime/Z8checksum/Z1type/Z100symlink/Z6magic/Z2temp/Z32temp/Z32temp/Z8temp/Z8temp/Z155prefix/Z12temp", $block);
else
$temp = unpack("a100name/a8mode/a8uid/a8gid/a12size/a12mtime/a8checksum/a1type/a100symlink/a6magic/a2temp/a32temp/a32temp/a8temp/a8temp/a155prefix/a12temp", $block);
445 01/31/2021 09:38:29 am
Topic: Bug 5326 needs reversion for PHP < 5.5 (3 replies, posted in Report Bugs here)
The recent commit by @itronics addressing modules installation PHP function unpack() using "Z" instead of existing "a" prefix is valid only for PHP 5.5 and above as per the manual:
https://www.php.net/manual/en/function.unpack.php
This commit will break all installs using any PHP < v5.5.
In fact, only an empty folder is created in the modules/_cache folder when an install is attempted.
Hence it is advised to make a check for PHP version before such a choice is made.
@joe, @Janusz - kindly do the needful.
446 01/31/2021 08:47:41 am
Re: Import Transactions (154 replies, posted in Modules Add-on's)
Will Quick Entries do the job?
447 01/29/2021 10:11:02 am
Re: A field for the Item location reference in the store (1 replies, posted in Wish List)
This is generally called Bin Location that is expected to be added to v2.5
448 01/10/2021 04:56:42 am
Re: Bug in Customer Payments Recording (9 replies, posted in Report Bugs here)
@joe, @itronics: ??
449 01/10/2021 04:51:26 am
Re: Restricting sales Invoice price edition for unauthorized users (3 replies, posted in Accounts Receivable)
@joe: Does this warrant a commit? Is the hidden price field safe as is? The patch is attached for current repo.
450 01/09/2021 03:42:42 pm
Re: need someone to upgrade scripts (3 replies, posted in Jobs wanted/offered, non-free offers)
You will need to first upgrade to v2.3.26 and see if all are working as desired. Then abstract out the custom changes as well. Only then can you look at moving to FA v2.4.9+. Furthermore, verify that the PHP/MySQL and (Apache) Server specs are sufficient for the upgrade.