Try it in a different browser - Firefox?
Also see that you have Java scripting enabled.
Java runtimes would also be nice.
5,626 03/02/2013 05:58:24 pm
Re: Sale Pricing and Purchase Pricing Tabs Wont Open (9 replies, posted in Items and Inventory)
5,627 03/02/2013 05:55:09 pm
Re: Prices on Delivery Notes? (15 replies, posted in Setup)
Actually a signature switch can be set in all reports for
signature,
standard disclaimer or
no signature (default for backwards compatibility)
The signature can be set in the config file incurrent FA v2.3.x in a generic manner and in a per company instance as a new field in the company table in FA v2.4
5,628 03/02/2013 05:41:05 pm
Re: INVOICE to TAX INVOICE (4 replies, posted in Setup)
@pierre whilst your change works, it is the non standard way and will get overwritten on updates. The preferred way is to make a copy of the lang/new_language_template/LC_MESSAGES/empty.po file and edit lines 10438-10439 to be:
msgid "INVOICE"
msgstr "TAX INVOICE"
and compile it with gettext as lang/en_SA/LC_MESSAGES/en_SA.mo and make an entry in the list of available languages and see that the locale is properly implemented. Refer Wiki.
5,630 03/02/2013 05:01:26 pm
Re: How we can have (or define ) customers and suppliers with same unique (9 replies, posted in FA Modifications)
GL Account Groups have a parent child relationship that can be used optionally.
Read the Wiki on Account Classes and Groups and Parent Ledgers.
5,631 03/02/2013 04:57:38 pm
Topic: purchasing/includes/po_class.inc patch (2 replies, posted in Report Bugs here)
Line 58 in purchasing/includes/po_class.inc :
if ($qty != 0 && isset($qty))
should be:
if ( isset($qty) && $qty != 0)
5,632 03/02/2013 03:30:16 pm
Re: DIRECT GRN - Blank field for Qty and Price before tax (1 replies, posted in Items and Inventory)
The file purchasing/includes/po_class.inc has the class definition for the class po_line_details which refers to the default Quantity / Price - check the defaults in the table schema as well.
5,633 02/16/2013 07:04:42 am
Re: Release 2.3.15 (3 replies, posted in Announcements)
There are no DB changes or config variables additions / changes in v2.3.15 vis-a-vis v2.3.14.
Just copy over the attached diff files into the FA folder.
Language strings will need to be translated from the empty.po as usual.
OpenVZ Template for FA v2.3.15 on Debian Squeeze is available at GNUAcademy.
5,634 02/16/2013 01:59:48 am
Re: New Functionalities suggestions (24 replies, posted in FA Modifications)
FA core is okay as it is. Make extensions for peculiar (country specific / rare legal) needs. The programming paradigm - KISS - is well protected here and that is why most non-programmers have found it easy to fathom the code. Extending the COA is inadvisable - porting from other accounting systems / fa versions, inadvertant switch flag type fields, backward compatibility issues pervade.
[RANT]:
Non Accountants and Non Programmers must be able manage FA without having to bother with Government - businesses need simple acounting info / capability for day to day operations. Most countries have begun to question the need for Statutory Audit - Self Audit is being encouraged. In the aftermath of Enron / Arthur Anderson / and other major corporations / audit firms / banks fudging accounts, Governments too will soon have automatic billing systems in their countries from which their VATs will be auto-calculated instead of summary submissions each month/quarter/year! There seems to be little trusted data on countries printing / creating money and providing huge windfalls to select individuals of choice - insurance, subsidies, rights.
{NICE]
If you do not sell in currencies (debt denominator) issued by governments - you do not need to pay tax! Corollary - no one pays any taxes for using FA! No one's paying Joe/Janusz any monies for coding and preserving the FA source! Yet FA users will look after you (tax free) when you visit their countries.....People like them are the real assets worth preserving.
5,635 02/16/2013 01:37:50 am
Re: Embed Videos in Relevant tab pages? (5 replies, posted in FA Modifications)
If you wish to replace the regular help URL with your site which has the relevant urls, you might be able to use the help hotkey popup functionality of FA.
5,636 02/16/2013 01:11:43 am
Re: Editable Tax Field (9 replies, posted in FA Modifications)
Make one like Shipping at the bottom of the invoice or make a service item called, say, VAT Ajustments, with no tax and use it as a free form value.
Caveat: Must remember to do it each time one is needed.
5,637 02/15/2013 05:57:36 pm
Re: Formating Front Account Invoice (7 replies, posted in Accounts Receivable)
Lines 64-69 in sales/view/view_invoice.php (although it is in the same lines of view_dispatch.php as well) can be commented out to remove the Charge Branch box.
start_table(TABLESTYLE, "width=100%");
$th = array(_("Charge Branch"));
table_header($th);
label_row(null, $branch["br_name"] . "<br>" . nl2br($branch["br_address"]), "nowrap");
end_table();
Other elements can be found there likewise.
5,638 02/15/2013 05:41:47 pm
Re: Hot keys system for FrontAccounting (5 replies, posted in FA Modifications)
Wow! That's a nice way of managing translation of labels and moving into form fields at the same time! For this to work, we need to have an "id" for each label and it's correspondig form field to be suffixed with a common number something like:
<p>
<span id="formfieldlabel_001"><?php echo _"(&Name"); ?> :</span>
<input type="text" size="40" id="forminputfield_001" name="name_field">
</p>
Only then can a generic js included in each form be able to generically do the trick.
5,639 02/15/2013 08:45:36 am
Re: Customer Picture image in sales page (6 replies, posted in FA Modifications)
You will need to show it in a popup window when an invoice is being created or editied or viewed. So code a separate php page to show it and pass it a variables like debtor_id, company#, logged_in_user, logged_in_token, etc. - check if the said user is logged in and the token matches and then pop up the window.
5,640 02/15/2013 08:37:37 am
Re: Setting up customized short cut keys in FA Pages (6 replies, posted in FA Modifications)
In empty.po as well for relevent mods to be ported to other languages if used.
5,641 02/15/2013 08:35:59 am
Re: Formating Front Account Invoice (7 replies, posted in Accounts Receivable)
Since VAT is already included (your price settings), how can you further add VAT to give a total?
Set your prices to exclude VAT and you will have it inline.
Sales Invoice Number is right at the top.
Attached is a mockup of what you need - just make a new invoice format by editing the existing one.
5,642 02/15/2013 08:20:26 am
Re: Customer Picture image in sales page (6 replies, posted in FA Modifications)
Better still, create a new table called, say, customer_images and link it on a 1 : N relationship with the debtors_master table and have a timestamp field in the new table as the date of last update and use the latest photo in it to display in the invoice form. Possibly have and show a signature field as well to have their scanned signatures for verification.
debtor_id INT AUTOINCREMENT NOT NULL PRIMARY KEY
lupdate DATETIME
Picture BLOB
PictureType enum ('Photo', 'Signature')
IsDeleted TINYINT DEFAULT 0
This way, when there is an FA Upgrade, your table will not be affected.
5,643 02/15/2013 03:38:29 am
Re: Setting up customized short cut keys in FA Pages (6 replies, posted in FA Modifications)
The shortcut here is not to merely go to a URL but for a specific (Memo) field in a form to get focus. Will this "&" method do it?
5,644 02/15/2013 03:22:08 am
Re: New Custom Reports (6 replies, posted in Reporting)
Place the custom reports in the company/#/reporting folder to survive upgrades and be specific to the company!
5,645 02/15/2013 03:20:47 am
Re: How we can have (or define ) customers and suppliers with same unique (9 replies, posted in FA Modifications)
It is possible to create a Balance Sheet Bank Account which will be the parent of the Common Supplier cum Customer Accounts - Possibly a Merged Ledger Folio Report ight also satisfy such a need where a group of sundry debtors / sundry creditors can belong to a relationship group - possibly extending across companies!
5,646 02/15/2013 03:16:50 am
Re: Customer Picture image in sales page (6 replies, posted in FA Modifications)
Where are we storing Customer's pictures?
5,647 02/15/2013 03:14:23 am
Re: Hot keys system for FrontAccounting (5 replies, posted in FA Modifications)
Hot Key to move to a specific field in a form - how is that achieved?
5,648 02/14/2013 08:41:20 am
Re: Asset Extension Reports (12 replies, posted in Items and Inventory)
You will need to clear any browser cache left over.
I only looked into one report listing the assets. Can you list the assets correctly as a report? This extension uses functions and triggers and hence your MySQL database user must have the necessary privileges.
List each issue and what file / url shows up on the browser for each issue and what menu click sequence brought up the issue. This will help replicate and resolve the issue.
Since the extensions are not in a repo for public to refine it over time and are just packed up into pkgs with magic glue it is a little difficult for the community to contribute and appears designed to help only coders.
I am planning a git repo for the extensions from where users can manually upload extensions outside of the magic web interface - any takers? Maintaining a repo over time is time consuming and requires great commitment - the folks at FA are already doing the best they can under the circumstances and it will not be fair to burden them any more.
Whilst Charts of Accounts, Languages and Themes get updated fast, extensions take longer to get updated when they do.
5,649 02/13/2013 11:11:33 am
Re: How to send auto email after direct invoice (9 replies, posted in Reporting)
Each Report will have different variables. The pdf_report.inc file is used for all reports. You must use the variable from the repXXX.php file you want after checking that it is the report being generated before inserting into the $msg string.
Actually, in such instances, a html email or plain text email can be an option for the reports along with PDF/Excel.
5,650 02/13/2013 11:01:29 am
Re: Asset Extension Reports (12 replies, posted in Items and Inventory)
It appears that the SELECT field assets.id was erroneously made same as the GROUP BY field.
Edit Line 34 of modules/asset_register-2.3.3-9/reporting/rep_assets_list.php:
$sql = "SELECT ".TB_PREF."asset_types.asset_type_id,
to
$sql = "SELECT ".TB_PREF."assets.asset_id,