You might want to update your codebase with recent fixes.
5,101 08/21/2014 09:33:59 pm
Re: New to the forum - Introduction (1 replies, posted in Jobs wanted/offered, non-free offers)
5,102 08/21/2014 09:23:23 pm
Re: how i add or delete some item from menu ? (2 replies, posted in Setup)
Lines 15 to 21 of frontaccounting.php:
include_once($path_to_root . '/applications/customers.php');
include_once($path_to_root . '/applications/suppliers.php');
include_once($path_to_root . '/applications/inventory.php');
include_once($path_to_root . '/applications/manufacturing.php');
include_once($path_to_root . '/applications/dimensions.php');
include_once($path_to_root . '/applications/generalledger.php');
include_once($path_to_root . '/applications/setup.php');
Comment out which ever tab you do not want. The first one (applications/customers.php is sales).
Way down in the same file comment out the applications ($this->add_application) you don not want:
function init()
{
$this->menu = new menu(_("Main Menu"));
$this->menu->add_item(_("Main Menu"), "index.php");
$this->menu->add_item(_("Logout"), "/account/access/logout.php");
$this->applications = array();
$this->add_application(new customers_app());
$this->add_application(new suppliers_app());
$this->add_application(new inventory_app());
$this->add_application(new manufacturing_app());
$this->add_application(new dimensions_app());
$this->add_application(new general_ledger_app());
hook_invoke_all('install_tabs', $this);
$this->add_application(new setup_app());
}
In applications/customers.php comment out which ever add_module or add_lapp_function or add_rapp_function you do not want. The rapp is Right side located function and lapp is left side located function.
5,103 08/21/2014 09:20:18 pm
Re: Serial and Batch Tracking (1 replies, posted in Items and Inventory)
What you need is a custom MIS that takes in data from various sources and provides you a dashboard for decision making.
PM me for business analytics.
5,104 08/21/2014 09:16:03 pm
Re: Paid Development Required (2 replies, posted in Jobs wanted/offered, non-free offers)
Assume all goods are duty paid - those actually not duty paid would be having a duty payable account entry.
5,105 08/21/2014 09:13:57 pm
Re: 404 error for pdf reports after upgrade (14 replies, posted in Installation)
You might be missing the font files....
5,106 08/21/2014 09:06:43 pm
Re: need help (1 replies, posted in Jobs wanted/offered, non-free offers)
PM me if you still haven't fixed it.
5,107 08/21/2014 08:38:39 pm
Re: Forum server breakdown during the last day. (4 replies, posted in Announcements)
Has this affected the non synch of the Mercurial changes int the Official Git repo? The latter is still stale.
5,108 08/21/2014 08:27:26 pm
Re: can't login for first time (6 replies, posted in Installation)
you may be able to set these php.ini settings by placing one in the webroot of the shared box and it will work if PHP is used in cgi mode without even restarting the webserver.
5,109 08/21/2014 08:25:50 pm
Re: Invoice reporting (4 replies, posted in Reporting)
It could be a folder path / permissions issue or a lack of fonts used.
5,110 08/21/2014 08:22:03 pm
Re: FA query should be more flexible with any opensource code file @ admin (5 replies, posted in Report Bugs here)
FA takes data from several tables and modifies it based on session variables that come from config file and other sources. Table Sorter is very useful for single query / single array based results. In the case of FA, there are several levels of master / detail layouts that may not be suitable for using Table Sorter though some pages may benefit from it. FA too uses a similar class inclusion to achieve it's layout although they may be encapsulated in functions / methods.
If you make a better mousetrap do place it here for review. Information sent to the contributions mailbox will be reviewed only by Janusz/Joe.
5,111 08/21/2014 08:09:34 pm
Re: Prestashop 1.6 Modules Frontaccounting Connect (1 replies, posted in Modules Add-on's)
Forum Member elax offers Prestashop and other connectors at AntERP
5,112 08/21/2014 08:00:14 pm
Re: Need report 'header and footer' like this design for invoice (1 replies, posted in Reporting)
What is different other than the words - Promise date (Deliver By)?
Please check the wiki for adding extra lines to the header and footer.
You may want to add the currency name to the amount in words as well like
IN WORD : TAKA ONE THOUSAND TWO HUNDRED FIFTY ONLY
http://brothers-electronics.com
5,113 08/21/2014 07:52:38 pm
Re: New FrontAccounting Theme for testing - Kvvaradha (kvcodes.com) (1 replies, posted in Modules Add-on's)
Still a lot of rough edges, th emenus do not work as desired by closing off the unused ones and the button based column headings need to be made to fit into one line.
5,114 08/21/2014 07:51:33 pm
Re: TIPS. How to Update existing translations after new releases ... (3 replies, posted in Translations)
The .po file needs to be compiled into a .mo file which needs to be uploaded.
5,115 08/21/2014 07:47:59 pm
Re: Redesign invoice format (6 replies, posted in Jobs wanted/offered, non-free offers)
An expert may not be willing to work for the $30/-.
Provide the format here and let the community see if it is interesting enough to incorporate it into the core itself.
5,116 08/21/2014 07:46:23 pm
Re: FA for Real Estate Property Management (4 replies, posted in Setup)
Use FA for the accounting part only. CRM / leads management use vTigerCRM or other software and link them together.
5,117 08/21/2014 07:45:18 pm
Re: Entering Post Dated Cheques (2 replies, posted in Accounts Receivable)
Post dated cheque - a cheque dated in the future - if it is within the current active fiscal year then will / should it be possible?
5,118 08/21/2014 07:43:56 pm
Re: How can I setup a company that sells energy bars? (7 replies, posted in Manufactoring)
Do you want FA for Company A or Company B or both and are the owners different?
5,119 08/21/2014 07:33:29 pm
Re: Can't Use file_row function to set customer profile Pic? (1 replies, posted in Modules Add-on's)
Which browser and version are you using?
Which version of FA are you using?
What platform are you using?
Have you used the latest snapshot from the Mercurial repo?
5,120 08/21/2014 07:29:16 pm
Re: Is there anyway to convert into the latest version (4 replies, posted in Setup)
Across some versions especially across the last few ones, only certain files have changed and any new settings in the config file have been provided with sane defaults for backward compatibility (check the config.php.default for changes). There may practically be no changes in the last few sql files as well and in such cases, it would be easier to just overwrite with changed files. The latest too has been provided in the release announcement post.
5,121 08/21/2014 07:24:13 pm
Re: Clone a company minus the transactions? (4 replies, posted in Installation)
It is possible you may have missed out some data that may refer to the original company number in it's foreign keys....
Also any newly added accounts in the masters as well as users and their ACLs may be missing too besides exchange rates.
Export the account and inventory masters and import them into a newly created company and set the preferences but all this only after you have installed and activated existing non-default extensions if any.
5,122 08/21/2014 07:19:36 pm
Re: Alternative row color issue (1 replies, posted in Reporting)
nowrap / stretch may change font size to fit it in one line.
background of entire row may have to be addressed in the underlying pdf library otherwise.
5,123 08/21/2014 07:06:29 pm
Re: Inventory import (1 replies, posted in Items and Inventory)
Add 1 item.
Export it
study the exported file format.
Prepare the rest of the items in that format.
Now import the rest.
5,124 08/21/2014 07:04:35 pm
Re: Error in inventory valuation report (45 replies, posted in Report Bugs here)
Does this commit fix the issue?
5,125 08/21/2014 07:02:35 pm
Re: Cash (2 replies, posted in Banking and General Ledger)
That is the Cash / Petty Cash Account.