2,701

(30 replies, posted in Fixed Assets)

Fixed Assets was an extension in FA 2.3 and is builtin to FA 2.4 natively. The wiki does not yet have a page on it.. Fixed Assets on the Wiki

To configure the Fixed Assets, enable the role for it (Fixed Assets Configuration), save the role and logout and login again.

The attached screenshots are self explanatory.

2,702

(12 replies, posted in Reporting)

This has already been committed in the Official repo and in the standard charts. It will hence be part of the next release.

2,703

(16 replies, posted in Accounts Receivable)

To avoid sql injection where we know the 2 POST variables are integers, just use:

        $deletecustomer = $_POST['deletecustomer']+0;
        $keepcustomer = $_POST['keepcustomer']+0;

2,704

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

Compare the files in the official repgen pkg as extracted to the modules folder with that in my GitHub repo and synch as needed.

There 2 places in repgen_createfunct.php (88, 104) and 1 place in repgen_del.php (58) where http can be changed to https - maybe it should be coded to auto choose.

2,705

(16 replies, posted in Accounts Receivable)

Study the schema / ERD for your version of FA and then replace all discardable customer ids with the preferred customer id.
The FA 2.3.x schema is available in the Wiki and FA v2.4.x isn't too different.

2,706

(13 replies, posted in Reporting)

Attached is the Company Setup page with the said option.

2,707

(12 replies, posted in Reporting)

Attached is the screenshot of the new Company Setup page.
Also incorporate in all the Charts as in my FA24Mods.

@joe: change line 23 in sql/alter2.4.php:

        $this->description = _('Upgrade from version 2.3 to 2.4RC1');

to

        $this->description = _('Upgrade from version 2.3 to 2.4.1');

Also line 158 in the same file needs to be conditionally acquired:

        $old_encoding = 'latin1'; // default client encoding

Looks like your db schema needs 900 secs time out instead of 300. Also check the attached schema differences between FA 2.3 and 2.4.

See the reflines table. The pattern field  in FA 2.4.2 which automatically does this.

2,710

(12 replies, posted in Reporting)

Would be nice to have it on a per company basis.
Will an entry in the sys_prefs table override this setting treating the global one as the default?

The Wiki has been updated.

2,711

(5 replies, posted in Announcements)

Greenshot does not yet do scrolling window capture (FastStone does). It, however, has a portable version and a non installer zip version too.

2,712

(5 replies, posted in Announcements)

Format your BBCode using the likes of WYSIWYG BBCode Editor.

FastStone Screen capture was free till v5.3 and makes for good screenshots although PrtScreen button and MS Paint do the job as well. Various portable ones are available too.

2,713

(5 replies, posted in Announcements)

As the FrontAccounting forum is community managed and driven, please use it diligently and with care. Whilst every effort is taken to ban advertising and undesirable SEO activities, it is incumbent on the user fraternity to report any

1. irrelevant posts,
2. duplicate postings and
3. postings in old threads with seemingly relevant matter often taken from other valid posts.

All of these and others not listed here introduce needless complexity and waste of human resources in moderating the board. Attempting to maintain a Hall of Shame would be an additional waste of resources.

When posting issues, please list

1. version numbers of Platform OS, Browser, PHP, MySQL, Webserver, plugins, upgrade path and locale among others as necessary
2. relevant Menu Navigation sequences,
3. screenshots appropriately annotated (host the images/documents anywhere - flickr, dropbox, etc) and linked into the posts,
4. use BBCode to format your posts

@karl1234: good work!

Committed.

FA 2.3.x not affected.

2,715

(8 replies, posted in Accounts Payable)

Try smaller numbers first and see when the error occurs. You should not exhaust the floating point precision of your variable.

This is a PHP issue:

$a = 31975454.54545400;
$b = 3197545.45454540;

echo $a+$b;

// Outputs: 35172999.999999

What is the value of precision in your php.ini file?
Increase it and see what happens.

Increasing it from 14 to 17 in PHP 5.3.3 on 32 bit XAMPP:

$a = 31975454.54545400;
$b = 3197545.45454540;

echo $a+$b;

// Outputs 35172999.999999397

This might do the job.

In the code, it can be dynamically set as well:

ini_set('precision', 17);

2,716

(13 replies, posted in FA Modifications)

Thanks @joe.
Committed

2,717

(3 replies, posted in Banking and General Ledger)

There is no 1100 in your image.
If you want an amount in words, then you will have to use the locale script to get it. The template is available in lang/new_language_template/locale.inc. Translate and use in your language folder.

If you want the hint "View this transaction" when you hover on the Trans# link, then add the attribute title="View this transaction" to the link's anchor <a ....> tag.

Kindly take professional assistance on the Job board from someone who understands your language.

2,718

(1 replies, posted in Jobs wanted/offered, non-free offers)

Set default printer in AndroidPOS device and print from the browser UI in the Android device itself. Some may also come with the web interface API.

Esc/POS Print Driver for PHP

2,719

(3 replies, posted in Banking and General Ledger)

It is already present.

There is certainly no decimals issue in using all hard currencies and the SA Rand.

Posting as Guest has been hopefully disabled by now.

The kit is formed in Assembly like a bunch of items sold together as a pack. It will have another Stock ID as well and hence placing them in stock should be no issue.

Items and Inventory => Sales Kits

@joe: Does this warrant a check? Assign the first post in this thread to user: @karl1234. (done)

It appears that your email id is not available and your credentials are wrong. Kindly contact the board admin (@joe) for account validation.

Sell the Necklace as a Kit of 2 items - a sort of package.

The window size of F2, F3, F4 search pages need to be expanded to adjust to the larger layout.
It is very slow to load.

The HTML page output and it's assets sizes are 109KB and 464KB respectively for your theme.
The standard default FA 2.4.2 theme equivalents are 15.9KB and 58.2 B respectively.

Tough convincing any serious accountant to accept such a bloat for visual eye candy.

It appears that third party extensions are not allowed an extension number in FA. The code is used in function local_extension() in admin/inst_module.php. The function handle_delete() in the same file refers to the version not being a hyphen for a standard uninstall.

2,724

(13 replies, posted in FA Modifications)

It will need an earlier separate traversal into another array.....
Or make it appear only in the Summary report.

2,725

(13 replies, posted in FA Modifications)

Before and After Screenshots attached.