@joe: ?
476 03/05/2021 04:43:59 pm
Re: Hide Menu options if not authorized (for Report) (6 replies, posted in Wish List)
477 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.
478 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.
479 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?
480 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.
481 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: ?
482 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.
483 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.
484 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.
485 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?
486 02/17/2021 06:56:52 pm
Re: Installation Challenges on Window 10 (1 replies, posted in Installation)
Permission issues? (UAC disable)
487 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
488 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.
489 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.
490 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.
491 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);
492 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.
493 01/31/2021 08:47:41 am
Re: Import Transactions (154 replies, posted in Modules Add-on's)
Will Quick Entries do the job?
494 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
495 01/10/2021 04:56:42 am
Re: Bug in Customer Payments Recording (9 replies, posted in Report Bugs here)
@joe, @itronics: ??
496 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.
497 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.
498 01/09/2021 03:39:08 pm
Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes (54 replies, posted in Banking and General Ledger)
Every change in db schema will need to address all INSERT, DELETE and UPDATE MySQL statements thoughout the code.
499 01/09/2021 03:34:49 pm
Re: FA 2.4.9 Install error "errors.inc" (11 replies, posted in Installation)
If it is to be used only on your laptop, then download PHP 5.6 alone and edit the php.ini as needed and run the builtin webserver that PHP has.
500 12/30/2020 06:23:08 am
Re: There are no fixed assets that could be depreciated. (19 replies, posted in Fixed Assets)
Check if depreciation entries exist when the depreciable period is crossed.