<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Some of the problems and recommendations to the FA]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=1930</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=1930&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Some of the problems and recommendations to the FA.]]></description>
		<lastBuildDate>Tue, 26 Apr 2011 13:40:18 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Some of the problems and recommendations to the FA]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=8880#p8880</link>
			<description><![CDATA[<p>Suggestion 4 sounds like a good one to me too: make a default branch customer at the same time as the main customer.&nbsp; Thanks tclim I might try that adjustment.</p><p>Re the reports: I have used Jasper reports against the MySQL database. It&#039;s not really an end-user tool though, and you need to have a reasonable understanding of the database structure. On the other hand, you can have absolutely exactly what you want. Given reports don&#039;t change all the time, perhaps you could pay someone to develop those you need. Adding a reporting framework IMHO is not a high priority.</p>]]></description>
			<author><![CDATA[null@example.com (p2409)]]></author>
			<pubDate>Tue, 26 Apr 2011 13:40:18 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=8880#p8880</guid>
		</item>
		<item>
			<title><![CDATA[Re: Some of the problems and recommendations to the FA]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=8716#p8716</link>
			<description><![CDATA[<p>Hi,</p><p>&nbsp; I agree with spott as I have the same issue with item no 4) Create new customer should also automatically create branch and branch contact. I need to create a custom function just to handle this issue. Below are some of the code extract from FA:</p><p>=========================================================================================================</p><p>begin_transaction();<br />&nbsp; &nbsp; <br />add_customer($_POST[&#039;CustName&#039;], $_POST[&#039;cust_ref&#039;], $_POST[&#039;address&#039;],<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[&#039;tax_id&#039;], $_POST[&#039;curr_code&#039;], $_POST[&#039;dimension_id&#039;], $_POST[&#039;dimension2_id&#039;],<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $_POST[&#039;credit_status&#039;], $_POST[&#039;payment_terms&#039;], input_num(&#039;discount&#039;) / 100, input_num(&#039;pymt_discount&#039;) / 100,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input_num(&#039;credit_limit&#039;), $_POST[&#039;sales_type&#039;], $_POST[&#039;notes&#039;]);</p><p>&nbsp; &nbsp; $selected_id = db_insert_id();</p><br /><p>add_branch($selected_id, $_POST[&#039;br_name&#039;], $_POST[&#039;br_ref&#039;],<br />&nbsp; &nbsp; $_POST[&#039;br_address&#039;], $_POST[&#039;salesman&#039;], $_POST[&#039;area&#039;], $_POST[&#039;tax_group_id&#039;], $_POST[&#039;sales_account&#039;],<br />&nbsp; &nbsp; $_POST[&#039;sales_discount_account&#039;], $_POST[&#039;receivables_account&#039;], $_POST[&#039;payment_discount_account&#039;],<br />&nbsp; &nbsp; $_POST[&#039;default_location&#039;], $_POST[&#039;br_post_address&#039;], 0, $_POST[&#039;group_no&#039;],<br />&nbsp; &nbsp; $_POST[&#039;default_ship_via&#039;], $_POST[&#039;notes&#039;]);<br />&nbsp; &nbsp; <br />&nbsp; &nbsp; $branch_id = db_insert_id();<br />&nbsp; &nbsp; <br />&nbsp; &nbsp; <br /> add_crm_person($_POST[&#039;contact_name&#039;], $_POST[&#039;contact_name&#039;], &#039;&#039;, $_POST[&#039;br_post_address&#039;], <br />&nbsp; &nbsp; $_POST[&#039;phone&#039;], $_POST[&#039;phone2&#039;], $_POST[&#039;fax&#039;], $_POST[&#039;email&#039;], <br />&nbsp; &nbsp; $_POST[&#039;rep_lang&#039;], &#039;&#039;);</p><p>add_crm_contact(&#039;cust_branch&#039;, &#039;general&#039;, $branch_id, db_insert_id());</p><p>commit_transaction();</p><p>=========================================================================================================</p><p>Hope it clear. Thanks</p>]]></description>
			<author><![CDATA[null@example.com (tclim)]]></author>
			<pubDate>Sat, 09 Apr 2011 04:53:17 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=8716#p8716</guid>
		</item>
		<item>
			<title><![CDATA[Re: Some of the problems and recommendations to the FA]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=8459#p8459</link>
			<description><![CDATA[<p>1. When you are ready please send translation files to us, then we will make them available via our central repository. Email address you will find on Contact Us page.</p><p>2. For reports language defined in contact data for given document is used, or the default language set on Install/Update page.</p><p>3. I don&#039;t know. When GL item&#039;s accounts are improperly configured (i.e. invero account is not of Asset class) the inventory value is not displayed in balance sheet.</p><p>4. Idea worth of consideration.</p><p>5. I can agree the reports are hard to customize. There is still lack of good report generator for FA, so report creation/changes are timeconsuming. But the reports available in /reporting folder&nbsp; are only default ones, so if you finally create customized report you can put it in company/x/reporting folder&nbsp; with the same name as original report, then this report will be used instead of the default one. You can also add also nonstandard reports using custom_report.php file available in rpeorting section of selected module (see nonstandard reports installed form our repository). Finally if you wish to have&nbsp; the customized report available form any company on FA installation you can put it as part of local module under modules/module_name/reporting/rep_xxx.php. In no case the customized/extra reports will be lost after FA upgrade.</p><p>Janusz</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Mon, 07 Mar 2011 20:55:06 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=8459#p8459</guid>
		</item>
		<item>
			<title><![CDATA[Some of the problems and recommendations to the FA]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=8458#p8458</link>
			<description><![CDATA[<p>Hi all</p><p>I have several problems with FA. I am using it, but I can&#039;t use it as full accounting program - yet.</p><p>1) We translated it to Estonian. We updating it as we finding some problems. https://translations.launchpad.net/frontaccounting/trunk/+lang/et Booth - core and installer are translated. So - how it possible to add these translations to core FA?</p><p>2) As I am using Estonian translation. My company and my profile default languages are also Estonian. Currency is Euro. But when I am printing out invoices to the costumers - all they are in English. I need to add new contact person and there I need to choose, that document language is Estonian - only then it prints out Estonian invoices. Why?</p><p>3) I have small inventory of goods - but it doesn&#039;t show in balance sheet. From stock reports - its shows me my stock value. But not in balance sheet. Where to find answer for that problem?</p><p>4)Customer Branches - this is recommendation. Right now I need to add customer and after that I need to add branch also. My recommendation to FA team - please add this option, that when You adding customer - it adds also default branch to this customer. Small company&#039;s doesn&#039;t have branches usually. </p><p>5) This is the hardest question and recommendation - how to modify the invoice layout? I looked weeks to forum, I know the files, what is needed to modify, but still - it is to hard. And what is wrong - all these modifications are related to FA core files. It means, that when You updating Your installation - You loosing also your modifications. So - please make template layout with better options - SQL Ledger uses Latex format - it was really easy. And also - please remake the template system so - that it belongs to the company. I have seen from other software solutions - so that it checks before in other directory - is there some template, and when not - after that it takes default one. I think that is the best way to FA also - template script first checks company/0/template/invoice.tpl file - when it is there - it uses that one. When not - then it uses default one. That was example right now.</p>]]></description>
			<author><![CDATA[null@example.com (spott)]]></author>
			<pubDate>Mon, 07 Mar 2011 08:27:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=8458#p8458</guid>
		</item>
	</channel>
</rss>
