Check the error logs and revert.
Since it works in 2.3.24, check out some intermediate versions of 2.3.24+ and see when it breaks.
3,551 04/04/2016 07:32:18 pm
Re: Print (PDF) is not working anywhere in 2.3.25 (13 replies, posted in Report Bugs here)
3,552 04/04/2016 07:28:39 pm
Re: A Customer providing a service. (2 replies, posted in Accounts Receivable)
Alternatively, a credit of maximum usage can be agreed upon and provided as a loan to the customer and advance received back into the customer's account.
A credit limit too can be used.
3,553 04/04/2016 07:26:20 pm
Re: POS integration with FA (1 replies, posted in Wish List)
A cursory look at the code shows that the schema is in install.php. It uses the mysql constructs and can be updated to use the mysqli functions.
3,554 04/04/2016 07:20:39 pm
Re: F.A Get Hangs/Freeze (10 replies, posted in Report Bugs here)
Check the history of file changes for the said file in github.com and see if an upgrade to the latest FA v2.3.25+ is of any use.
3,555 03/26/2016 02:19:53 pm
Re: F.A Get Hangs/Freeze (10 replies, posted in Report Bugs here)
Take a backup and zip it up and upload somewhere (possibly password protected) and pm me the link. Also state what your version of FA is.
3,556 03/22/2016 04:53:53 am
Re: F.A Get Hangs/Freeze (10 replies, posted in Report Bugs here)
Choose default theme - no dashboards. Dashboard themes do too much querying for each front page display.
3,557 03/20/2016 03:18:47 am
Re: F.A Get Hangs/Freeze (10 replies, posted in Report Bugs here)
Rebuild the index / table.
3,558 03/16/2016 04:41:36 pm
Re: Items and Inventory (1 replies, posted in Items and Inventory)
Try treating Commission as a pseudo tax using a separate Commission Account that receives it (or pays it out if negative).
Otherwise, make an extension for it.
3,559 03/16/2016 04:38:29 pm
Re: calculate tax when specific amount is reached (1 replies, posted in Accounts Receivable)
FA does not have taxes based on Invoice Value. You will need to write your own extension for it. Cumulative taxes (Tax on Tax) is however available in FA.
3,560 03/16/2016 04:35:33 pm
Re: Vat and Tax Setup (5 replies, posted in Setup)
Difference compared to FA 2.3 would be useful if illustrated.
Attached is your page in PDF.
3,561 03/16/2016 04:29:01 pm
Re: Items received to be Invoiced (1 replies, posted in Accounts Payable)
Post the invoices as on today and make a note in the memo that it pertains to goods received in 2015.
3,562 03/16/2016 04:27:03 pm
Re: Negative zero values in Balance sheet (4 replies, posted in Report Bugs here)
Check the MySQL and platform versions. Also do a query to take the difference of the field value from a zero constant. It is possible to assign 0 instead of 0.00 in the insert statement in the backup sql and re-import it.
3,563 02/21/2016 04:29:04 am
Re: Setup for non VAT registered company (3 replies, posted in Setup)
Move to a country that does not charge (so much) VAT
The CoAs will not be updated in the v2.3 repo anymore judging by what I have seen hitherto in the last couple of years. The various CoAs have not been formatted in a standard way and hence is not amenable to easy comparison - that probably was not the intention but less diligence amongst the many contributors and little or no vetting while incorporating into the repo and/or not updated when the primary sqls changed would be the real reasons.
Whether you setup separate tax accounts or just use the filtered reporting in FA is a matter of choice.
The wiki and the forum posts abound with several examples. The search feature in the wiki is broken and unlikely to be fixed in the near future on priority.
Removing the VAT lines from the reports (repXXX.php) and placing them in the company's reporting folder will override the standard ones for that company.
3,564 02/21/2016 04:21:22 am
Re: Change name of a Report (10 replies, posted in Reporting)
Just re-compile the standard en_US.mo file. Only changed strings need be in the new .po file and compiled into the .mo file.
In the case of Australian or Indian English too the same applies with changed strings.
Extract the .po file from your current .mo file - only those stings that changed need/will be there. Then refer to the empty.po file and add in "the strings you wish to change" into the extracted .po file and recompile and use it.
In future, do not upgrade the language file at all from the GUI and instead only incorporate the changes in them into your version of the extracted .po file, compile and use the resultant .mo file.
In most instances language files have little or no changes and version bumps occur regularly - good business for "consultants".
3,565 02/19/2016 05:28:01 pm
Re: Change name of a Report (10 replies, posted in Reporting)
Hardcoding is the "Quick 'n Dirty" means.
You can make the string translatable using _("...") since the input argument will be used if not found in the .mo file (as absent in the original empty.po file). Changing it in the .po file and then using the newly compiled .mo file will make for less hassles when comparing code with the master repo and seamless in upgradation.
3,566 02/16/2016 03:35:26 am
Re: Change name of a Report (10 replies, posted in Reporting)
Do not edit the _('DELIVERY NOTE') as it is a translatable string that needs to be altered in the appropriate .po file which then needs to be compiled into a .mo file before being used.
If you are using only 1 language and/or prefer this string to be in English alone, hard code it using the following instead:
{
$rep->title = 'CUSTOMER INVOICE';
$rep->filename = "Delivery" . $myrow['reference'] . ".pdf";
}
3,567 02/16/2016 03:30:48 am
Re: How to Add Column in Direct Invoice and Invoice - Supplier (4 replies, posted in Accounts Payable)
Post the code changes you have done.
3,568 02/16/2016 03:29:32 am
Re: How to include checkbox in Table Pager (16 replies, posted in Banking and General Ledger)
As the db_pager_view.inc is a core file, modifying it may not be good. Checking the file that @joe suggested may be useful.
3,569 02/14/2016 06:26:16 pm
Re: Add_access_extensions() Function Call (3 replies, posted in Report Bugs here)
There are many places where the session.inc file is included but the add_access_extension() is not called.
Please use the "set_ext_domain()" function - see some extensions for examples like this. Even the logout.php file does not call the add_access_extension() function.
3,570 02/14/2016 06:07:17 pm
Re: FA Implementation In The Middle of Fiscal Year (2 replies, posted in Setup)
If you decide to retain the transactions for Jan-Mar in the old accounting system, then enter the march end closing balances as the April 1st opening balances by making a journal entry for the mid year Balance Sheet and P&L entries (entire Trial Balance) as of 31st March.
In the case of migrating to FA during start of a fiscal year, only the Balance Sheet closing balances of the previous fiscal need be carried forward.
3,571 02/14/2016 05:56:01 am
Re: How to include checkbox in Table Pager (16 replies, posted in Banking and General Ledger)
Avoid sessions and keep the js local at the client side. Just toggle the state of the "select all" checkbox and on it's change based on it's current value, either populate or clear all target checkboxes and make sure the value of the "select all" checkbox is a blank string when submitting the form and it is to be ignored in the form processor.
3,572 02/14/2016 05:48:37 am
Re: how can i add new Item Type (21 replies, posted in Items and Inventory)
Grown is Manufactured over multiple years just like if the manufacture started in one fiscal year and ended in the next one. In the interim period whilst it is being grown (manufactured) it will be considered "in process". Stock valuation can be based on "accrued value" much like if the exchange rate changed or in semi finished state.
Alternatively, the inputs for "growing" can be considered as stock consumed / applied / expenses or paid in advance to a dummy supplier. Just before sale of grown items, they can be purchased from the dummy supplier at 0 value or at pro-rata of advanced to dummy supplier and then sold at profit to end customer as usual.
3,573 02/11/2016 05:27:21 pm
Re: Remove manufacturing and dimension modules, (4 replies, posted in FA Modifications)
Comment out the following lines 18, 19, 80 & 81 in frontaccounting.php:
..
..
// include_once($path_to_root . '/applications/manufacturing.php');
// include_once($path_to_root . '/applications/dimensions.php');
..
..
// $this->add_application(new manufacturing_app());
// $this->add_application(new dimensions_app());
..
..
3,574 02/11/2016 05:00:22 pm
Re: need help to Change account code length (1 replies, posted in Jobs wanted/offered, non-free offers)
I think you need to change the size of the form field's maxlength value:
<input _last="" name="_code_id_edit" id="_code_id_edit" size="12" maxlength="10" value="" class="combo3" rel="code_id" autocomplete="off" title="" type="text">
$opts['max'] should be 20 instead of default 10 in your case in Lines 282 to 287 of includes/ui/ui_lists.inc:
$edit_entry = "<input $disabled type='text' name='$search_box' id='$search_box' size='".
$opts['size']."' maxlength='".$opts['max'].
"' value='$txt' class='$class' rel='$name' autocomplete='off' title='"
.$opts['box_hint']."'"
.(!fallback_mode() && !$by_id ? " style=display:none;":'')
.">\n";
3,575 02/10/2016 01:03:00 pm
Re: How to include checkbox in Table Pager (16 replies, posted in Banking and General Ledger)
When done, please submit patches here for peer review and possible inclusion in FA 2.4.