Provided backlink to this post in the Wiki.
5,477 09/04/2013 12:21:43 pm
Re: Release 2.3.17 (12 replies, posted in Announcements)
Thanks Janusz. The patch set has been updated as well.
5,478 09/04/2013 02:16:44 am
Re: Supplier Payment With Bank Charges (5 replies, posted in Report Bugs here)
Please check if this issue has been sorted out using the latest patch.
5,479 09/04/2013 02:08:01 am
Re: Accountant: how easy is it for me to install FA (9 replies, posted in Installation)
All Chart of Accounts have the same db schema (with possible collation difference but basically UTF-8). Country specific language used will be available in the Language Extensions. Country and business specific COAs will have to be customized but Country generic COAs are available from within the GUI (on linux, locale for the specific country may have to be installed / activated as well). The sql file for each COA is available in the webroot's sql folder where others may be uploaded manually as well.
Create your own COA starting from one of the existing ones like the default sql/en_US-new.sql.
FA is made to be as simple as possible with quick support from the community here in the forum and distilled in the Wiki - even so, it might be intimidating to the uninitiated whence commercial support is available as well.
5,480 09/04/2013 01:52:54 am
Re: Email Client name in Invoice sending displayed wrong (6 replies, posted in Report Bugs here)
Joe, kindly change this in code to show it when $contact['name2'] is not empty. Possibly with a config variable if needed.
5,481 09/04/2013 01:50:42 am
Re: Include a Purchase Repeating Invoices (2 replies, posted in FA Modifications)
Would Banking and General Ledger -> Quick Entries suffice?
5,482 09/04/2013 01:48:16 am
Re: Adding a new Tab for Reports (1 replies, posted in FA Modifications)
The same goes for a FA wiki menu entry in the sidebar.
5,483 09/04/2013 01:46:48 am
Re: Inventory Item Listing (3 replies, posted in Report Bugs here)
Joe, possibly a boolean parameter for allowing zero value price to be listed (Sales Price Listing Report - reporting/rep104.php) would be in order here. Another parameter to omit price would make for the inventory and service list.
5,484 09/04/2013 01:43:34 am
Re: COA - Account Code 2 (10 replies, posted in Misc. Charts of Accounts)
Install the en_IN language extension.
Install any Chart of Accounts (English Indian COA - New.) and modify it to suit your needs.
5,485 09/04/2013 01:40:46 am
Re: Import csv or xml or text file in Bnaking en General Ledger (7 replies, posted in Banking and General Ledger)
Refer documentation for the extension.
5,486 09/04/2013 01:36:01 am
Re: Enter "Create new item" button on Direct invoice (12 replies, posted in FA Modifications)
Has this been done now?
5,488 09/04/2013 01:27:51 am
Re: inventory gl inquiry does not match balance (2 replies, posted in Items and Inventory)
Line 118 of gl/includes/db/gl_db_trans.inc
and
line 93 of gl/includes/db/gl_db_bank_trans.inc
have the said phrase: AND ISNULL(v.date_)
Any corrections needed?
5,489 09/04/2013 01:22:20 am
Re: FA shows 'Not Acceptable' when I try to log in (4 replies, posted in Installation)
Can be a simple database collation issue to a missing Apache config directive.....
5,490 09/04/2013 01:17:45 am
Re: Release 2.3.17 (12 replies, posted in Announcements)
Since there were some glitches in the published FA v2.3.17, taking care of the new variables in the config.default.php, with no db changes needed, a FA v2.3.16 can be upgraded to the latest FA v2.3.17 with Git fixes till date updating the changed files alone.
5,491 09/04/2013 12:38:18 am
Re: [RESOLVED] Error on Bank Account Transfers (6 replies, posted in Report Bugs here)
Further changes done.
5,492 09/04/2013 12:20:20 am
Re: Sales invoice and other Related Reports (7 replies, posted in Reporting)
Clear browser cache and try again.
5,493 09/04/2013 12:16:33 am
Re: [SOLVED] Problem with language after make a RESTORE! (3 replies, posted in Report Bugs here)
These can possibly be set up serverwide in the /etc/mysql/my.cnf file. It could also be a collation difference between the old mysql server and the new one for the character fields.
5,494 09/04/2013 12:08:37 am
Re: Dutch translation 2.3.13-1 (5 replies, posted in Translations)
Available here.
5,495 09/04/2013 12:05:23 am
Re: Items do not show up correctly on sales invoice (3 replies, posted in Items and Inventory)
Thanks. Wiki-ed it.
5,496 09/03/2013 11:49:03 pm
Re: Delivery Note report - How to add in the line for Signature purpose (4 replies, posted in Reporting)
Wiki-ed it.
5,497 09/03/2013 11:39:13 pm
Re: Help wanted for an Accounting Solution Provider Start up Company (2 replies, posted in Jobs wanted/offered, non-free offers)
For commercial support contact any FA partner.
5,498 09/03/2013 11:33:44 pm
Re: check overdue delivery date (5 replies, posted in Report Bugs here)
The file is sales/inquiry/sales_orders_view.php and the line 106:
&& date1_greater_date2(Today(), sql2date($row['ord_date']))
should be:
&& date1_greater_date2(Today(), sql2date($row['delivery_date']))
Any reason why this has not been corrected in the Git Repo now?
5,499 09/03/2013 11:23:09 pm
Re: Print Traditional Chinese (7 replies, posted in Reporting)
To clarify for end users, the change has to be made in reporting/includes/class.pdf.inc by replacing lines 156-162:
switch ($this->l['a_meta_language'])
{
case "ar_EG" : $fontname = "ae_tholoth"; break;
case "zh_CN" : $fontname = "gbsn00lp"; break;
case "zh_TW" : $fontname = "chinese_traditional_cid0"; break;
default : $fontname = "dejavu"; break;
}
to
switch ($this->l['a_meta_language'])
{
case "ar_EG" : $fontname = "ae_tholoth"; break;
case "zh_CN" : $fontname = "gbsn00lp"; break;
case "zh_TW" : $fontname = "chinese_traditional_cid0"; break;
default : $fontname = "chinese_traditional_cid0"; break;
}
Is this what you did?