Try with PHP 7, 7.1 and 7.2 and see it broke then. Try switching the exchange rate provider. Some broke earlier.

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

(1 replies, posted in Wish List)

Void and re-create?

@joe: ?

As opening balance or a set of Asset depreciation entries or as a single consolidated asset depreciation entry.

@joe: can hammer out a new report for this in the core.

What browser and version are you using?

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.

@joe: ?

Updated  FrontHRM module in FA24extensions repo to upstream as of 2020-11-03.

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

(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.

What is a Civil balance?

Permission issues? (UAC disable)

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

(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.

Foreign Item Codes are used to map supplier item codes to FA Item codes so that the sales and purchase sides are mapped.

443

(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.

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);

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

(154 replies, posted in Modules Add-on's)

Will Quick Entries do the job?

This is generally called Bin Location that is expected to be added to v2.5

@joe, @itronics: ??

@joe: Does this warrant a commit? Is the hidden price field safe as is? The patch is attached for current repo.

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.