Check your Apache conf file and your .htaccess file for mod_rewrite errors.

You might want to update your codebase with recent fixes.

5,078

(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,079

(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.

Assume all goods are duty paid - those actually not duty paid would be having a duty payable account entry.

You might be missing the font files....

5,082

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

PM me if you still haven't fixed it.

Has this affected the non synch of the Mercurial changes int the Official Git repo? The latter is still stale.

5,084

(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,085

(4 replies, posted in Reporting)

It could be a folder path / permissions issue or a lack of fonts used.

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.

Forum Member elax offers Prestashop and other connectors at AntERP

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

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.

The .po file needs to be compiled into a .mo file which needs to be uploaded.

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,092

(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,093

(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?

Do you want FA for Company A or Company B or both and are the owners different?

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?

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.

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,098

(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,099

(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.

Does this commit fix the issue?