The current implementation of the"X" in the checkbox column header is not designed to work as expected by you - in fact it does not have js attached to it.

Reference implementations are available at:
http://stackoverflow.com/questions/1928 … in-a-table
and
http://stackoverflow.com/questions/3862 … ox-in-html

3,577

(11 replies, posted in Reporting)

If you wish to seek professional help, post your needs (referring this post) in the jobs section of the forum. You may also contact the support partners listed in the Wiki.

The CSS files are in the theme folders and generally needs to be altered only if the entire contents of any filed is not visible.

The form field width is set in the from template codes along with the field size.

If you are using FireFox / Chrome browsers, use the FireBug extension and locate the code behind the places you wish to change and then search for the html snippets in FA codebase and alter as desired.

If you wish to seek professional help, post your needs (referring this post) in the jobs section of the forum. You may also contact the support partners listed in the Wiki.

For those interested in providing support, hints are in this post.

3,580

(2 replies, posted in Reporting)

For item 1 refer file frontaccounting.php in your webroot and comment out the lines below:
Line 18:

// include_once($path_to_root . '/applications/manufacturing.php');

and Line 80:

// $this->add_application(new manufacturing_app());

For item 2, edit the appropriate smarty template for the forms and edit the repXXX.php files for the PDFs/Excels

For item 3, make all your items 0 rated tax and see that your suppliers and customers are also in the default 0 rated tax. Then edit the necessary repXXX.php files for removing the ax lines.

There are lots of developers in the jobs section of the forum you may contact for your modifications. There are also a list of Support partners available in the Wiki.

Look at all the places where the Account Number is used and alter it's field size in the MySQL table. Make sure that all form fields that use it are properly sized for length of input string and for css display width in the theme used.

3,582

(3 replies, posted in FA Modifications)

PHPMailer was not included as it would increase size of FA download. You can create a wiki page on it's integration.

3,583

(5 replies, posted in Reporting)

You probably have a large number of php variables. Increase the default 1000 to something bigger and raise the timeouts as well.
See this post and this post.

3,584

(4 replies, posted in Misc. Charts of Accounts)

This default is best set in the php.ini to avoid such warnings.

Any sales will refer to either a physical item or a service and hence there must be atleast 1 item before an invoice can be made. Also, youneed to create a direct cash customer for those you do not wish to track and use that i your anoymous direct invoice. Although the menu item is "Direct Invoice", as FA is a full ERP, all steps in making the invoice entry are followed: Sales Order, Delivery, Invoicing - but they are done transparently.

Consolidate them into a single tax, like 5% and 2% can be (1.05*1.02 - 1)*100 %.

3,587

(11 replies, posted in Reporting)

Yes, in the rep101.php and rep102.php files you will need to look at how the variables are addressed for parameter order and adjust accordingly and put in the location parameter in the where filter in the sql in it or in the loop that parses the array result.

3,588

(3 replies, posted in Accounts Payable)

Start with the active fiscal year being previous year. Enter the closing balances in a single Journal Voucher on the last date of the fiscal year. Now create the current fiscal year and make it the active fiscal year, closing the previous fiscal year. All opening balances will arrive correctly.

What is the home currency?

3,590

(3 replies, posted in Accounts Payable)

Closing the previous year will carry forward the balances into the next year automatically.

Kindly state the Mantis Bug Number and full link for ease of access.

In FA 2.3 there is only 1 field each to keep track of current stock and average rate now. Hence, getting a past rate is impossible unless you backtrack recursively....

3,593

(3 replies, posted in Items and Inventory)

Checkout Manufacturing.

3,594

(3 replies, posted in Items and Inventory)

Revert it back as Cost of Goods Sold and treat it as cost of goods issued on demand when accounted for even if the main line of business is a service one.

Once the item is bought in local currency equivalent at certain forex rate, it becomes valued in local currency in the opening balance. Any replenishment value in current forex rate will need to be manually assessed at time of fresh purchase / new sale if intended.

3,596

(11 replies, posted in Reporting)

Have a look a the following lines 32-53 of reporting/reports_main.php:

$reports->addReportClass(_('Customer'), RC_CUSTOMER);
    $reports->addReport(RC_CUSTOMER, 101, _('Customer &Balances'),
        array( _('Start Date') => 'DATEBEGIN',
            _('End Date') => 'DATEENDM',
           _('Customer') => 'CUSTOMERS_NO_FILTER',
           _('Show Balance') => 'YES_NO',
           _('Currency Filter') => 'CURRENCY',
           _('Suppress Zeros') => 'YES_NO',
           _('Comments') => 'TEXTBOX',
           _('Orientation') => 'ORIENTATION',
           _('Destination') => 'DESTINATION'));
    $reports->addReport(RC_CUSTOMER, 102, _('&Aged Customer Analysis'),
        array( _('End Date') => 'DATE',
           _('Customer') => 'CUSTOMERS_NO_FILTER',
           _('Currency Filter') => 'CURRENCY',
           _('Show Also Allocated') => 'YES_NO',
           _('Summary Only') => 'YES_NO',
           _('Suppress Zeros') => 'YES_NO',
           _('Graphics') => 'GRAPHIC',
           _('Comments') => 'TEXTBOX',
           _('Orientation') => 'ORIENTATION',
           _('Destination') => 'DESTINATION'));

In each of the $reports->addReport() statements, you can add in:

           _('Stock Location') => 'LOCATIONS',

Note that the PARAMS[] subscript numbers will change in the receiving script - rep101.php and rep102.php.

Kindly state the offending line you removed.

Increasing font size is done with:

$rep->fontSize += 2;

3,598

(11 replies, posted in Reporting)

In FA 2.3 currently there is no such provision except to filter them in the appropriate reporting/repXXX.php files. rep101.php and rep102.php are the affected files. Check out their sql source functions. As each customer is served by a specific location, taking reports on a specific customer should get you what you want. All form request fields are in reporting/reports_main.php file.

Since the home currency alone works, check if you make the second currency the home currency and see if that works. We can then isolate the issue of the second currency alone being different in the font set used.

3,600

(11 replies, posted in Reporting)

Since each Warehouse has it's (own) customers, printing for all locations/warehouses for any customer should work fine unless he same customer is server at more than one Warehouse/location.
Attempting to create a separate CustomerID for the same customer for each location will mitigate such multiple warehouse servings.

Tags / Dimensions could also be useful here.