Link not accessible

I hope you are using the module from my repo at:
https://github.com/apmuthu/FA24extensions/tree/master/Extensions/import_multijournalentries

The function add_bank_transaction() was a native function in FA but not available in both v2.3.26 and in any v2.4.x versions now.

Line 153 in config.default.inc:

    $UTF8_fontfile    = $_SESSION['language']->dir == 'ltr' ? "FreeSans.ttf" : "zarnormal.ttf"; // for Arabic Dashboard

should be replaced with:

    $UTF8_fontfile    = @$_SESSION['language']->dir == 'ltr' ? "FreeSans.ttf" : "zarnormal.ttf"; // for Arabic Dashboard

for now till a better solution presents itself.

The recent change to config.default.inc fails when starting up FA where $_SESSION['language'] is not yet defined then in line 153. That line config.default.inc:

    $UTF8_fontfile    = $_SESSION['language']->dir == 'ltr' ? "FreeSans.ttf" : "zarnormal.ttf"; // for Arabic Dashboard

should be replaced in the config.php with:

    $UTF8_fontfile    = "FreeSans.ttf";
    //$UTF8_fontfile    = "zarnormal.ttf"; // for Arabic Dashboard

or suppress the error with "@" prefix to the original line or make sure it "isset" before testing it with some default.

430

(10 replies, posted in Report Bugs here)

@joe: can this get into the core?

431

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

Changing the language files to replace all instances of customers with donors and then re-compiling them would be easiest. Otherwise, confusion would ensue where it is referred to as donors only in places where such changes have been made. Restricting such changes to just those files in the new module may be one such option provided that outputs of standard core functions in FA used in the new module are not touched and acceptable as is.

432

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

Which version of FA and platform versions are you on? Linux/Windows/Mac, PHP, MySQL versions.

433

(2 replies, posted in Accounts Payable)

Hedge / book the currencies in your home currency and prepare the purchase order accordingly with the quoted currencies in the memo field and book the costs in the local currency.

Alternatively, break up the purchase order into separate currency ones and live within standard FA.

Lines 38 and 40 in js/utils.js need this change.

435

(8 replies, posted in Report Bugs here)

@joe: can include this?

Properly indented and assimilated changes into:
https://github.com/apmuthu/FA24extensions/tree/master/Extensions/rep_cash_flow_statement

Wonder why translation for "Accounts" was removed in @kvvaradha's version.

437

(13 replies, posted in Setup)

The really updated and synched en_US-demo2.sql to existing en_US-demo.sql is available at

https://github.com/apmuthu/FA24extensions/blob/master/Charts/chart_en_US-demo2/en_US-demo2.sql

This has the field orders synched too.

One Journal entry should suffice.

@joe: has this been done?

@joe: is this necessary?

https://www.cs-cart.com/
https://github.com/cscart/

Uses PHP/MySQL - so FA integration is possible

442

(4 replies, posted in Setup)

Expected time of arrival of any new version of FA is simply inderminate what with PHP versions changing rapidly too.

443

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

Integrate FA with vTigerCRM to achieve it.

Pass a voiding equivalent contra Journal Entry in the current fiscal.

Post scope of work and bounty offered to elicit better response.

Allow edit of fiscal year if no transactions are there in it.

447

(4 replies, posted in Announcements)

Post Release Fixes attached.

CHANGELOG

Github Master (Bleeding Edge) Download Link

These fixes can be applied to (overwrite) the release version to be fully functional.

448

(4 replies, posted in Announcements)

Attached is the set of changed files between FA 2.4.9 and FA 2.4.10.
This needs the fixes listed in the second post herein to work.

First 3 day download stats at SF
Previous release fileset changes in this post.
SF Main Download Page
FA 2.4.10 tar.gz download
MD5 Hash: e230171d44cc88b532d801d38b31c589
Filesize: 1,869,717 bytes

449

(4 replies, posted in Announcements)

This version now has 5 new translatable strings:

Invalid password or username. Please, try again.
Max day range in Documents must be a positive number.
Max day range in documents
days.
Invoice %d from %s

My CoA's have it customised for South Africa, India, etc which have odd dates for fiscal year start and end as well. Checkout my unofficial extensions repo on github.