<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Error editing (updating) Account Groups in 2.3 CVS]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=1222</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=1222&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Error editing (updating) Account Groups in 2.3 CVS.]]></description>
		<lastBuildDate>Tue, 30 Mar 2010 21:23:17 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5502#p5502</link>
			<description><![CDATA[<p>Here is a query which seems to handle up to 6 levels, as long as COA doesn&#039;t become really silly:</p><p>SELECT c8.id, c8.name, c8.class_id, c8.parent, c8.inactive FROM (<br />&nbsp; SELECT<br />&nbsp; &nbsp; IF(c7.parent1 = &#039;-1&#039;, c7.id, IF(c7.parent2 = &#039;-1&#039;, c7.level5, IF(c7.parent3 = &#039;-1&#039;, c7.level4, IF(c7.parent4 = &#039;-1&#039;, c7.level3, IF(c7.parent5 = &#039;-1&#039;, c7.level2, c7.level1))))) AS group1,<br />&nbsp; &nbsp; IF(c7.parent2 = &#039;-1&#039;, c7.id, IF(c7.parent3 = &#039;-1&#039;, c7.level5, IF(c7.parent4 = &#039;-1&#039;, c7.level4, IF(c7.parent5 = &#039;-1&#039;, c7.level3, c7.level2)))) AS group2,<br />&nbsp; &nbsp; IF(c7.parent3 = &#039;-1&#039;, c7.id, IF(c7.parent4 = &#039;-1&#039;, c7.level5, IF(c7.parent5 = &#039;-1&#039;, c7.level4, c7.level3))) AS group3,<br />&nbsp; &nbsp; IF(c7.parent4 = &#039;-1&#039;, c7.id, IF(c7.parent5 = &#039;-1&#039;, c7.level5, c7.level4)) AS group4,<br />&nbsp; &nbsp; IF(c7.parent5 = &#039;-1&#039;, c7.id, c7.level5) AS group5,<br />&nbsp; &nbsp; c7.* FROM (<br />&nbsp; &nbsp; &nbsp; SELECT<br />&nbsp; &nbsp; &nbsp; &nbsp; IF(parent1 = &#039;-1&#039;, 1, IF(parent2 = &#039;-1&#039;, 2, IF(parent3 = &#039;-1&#039;, 3, IF(parent4 = &#039;-1&#039;, 4, IF(parent5 = &#039;-1&#039;, 5, 6))))) AS grp_level,<br />&nbsp; &nbsp; &nbsp; &nbsp; IF(c6.parent5 = &#039;-1&#039;, c6.level2, c6.parent5) AS level1,<br />&nbsp; &nbsp; &nbsp; &nbsp; c6.* FROM (<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SELECT<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c5.parent4 = &#039;-1&#039;, &#039;-1&#039;, (SELECT IF(parent = &#039;&#039;, &#039;-1&#039;, parent) FROM 0_chart_types cx4 WHERE cx4.id = c5.parent4)) AS parent5,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c5.parent4 = &#039;-1&#039;, c5.level3, c5.parent4) AS level2,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c5.* FROM (<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SELECT<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c4.parent3 = &#039;-1&#039;, &#039;-1&#039;, (SELECT IF(parent = &#039;&#039;, &#039;-1&#039;, parent) FROM 0_chart_types cx3 WHERE cx3.id = c4.parent3)) AS parent4,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c4.parent3 = &#039;-1&#039;, c4.level4, c4.parent3) AS level3,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c4.* FROM (<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SELECT<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c3.parent2 = &#039;-1&#039;, &#039;-1&#039;, (SELECT IF(parent = &#039;&#039;, &#039;-1&#039;, parent) FROM 0_chart_types cx2 WHERE cx2.id = c3.parent2)) AS parent3,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c3.parent2 = &#039;-1&#039;, c3.level5, c3.parent2) AS level4,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c3.* FROM (<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SELECT<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c2.parent1 = &#039;-1&#039;, &#039;-1&#039;, (SELECT IF(parent = &#039;&#039;, &#039;-1&#039;, parent) FROM 0_chart_types cx1 WHERE cx1.id = c2.parent1)) AS parent2,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c2.parent1 = &#039;-1&#039;, c2.id, c2.parent1) AS level5,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c2.* FROM (<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SELECT<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c1.parent = &#039;&#039; OR c1.parent = &#039;-1&#039;, &#039;-1&#039;, c1.parent) AS parent1,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c1.* FROM (<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SELECT * FROM 0_chart_types c) AS c1) AS c2) AS c3) AS c4) AS c5) AS c6) AS c7) AS c8<br />ORDER BY CAST(group1 AS UNSIGNED), CAST(group2 AS UNSIGNED), CAST(group3 AS UNSIGNED), CAST(group4 AS UNSIGNED), CAST(group5 AS UNSIGNED), CAST(id AS UNSIGNED), grp_level</p>]]></description>
			<author><![CDATA[null@example.com (LUTi)]]></author>
			<pubDate>Tue, 30 Mar 2010 21:23:17 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5502#p5502</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5498#p5498</link>
			<description><![CDATA[<p>About 2 - I believe the current solution (situation) is not consistent.</p><p>If levels are not automatic and defined by number of digits (so 0-9 is 1st level, 00-99 is 2nd level and so on), we cannot accept to order as we do now. 13 cannot be between 1 and 2, I hope this is clear. Why ordering as I&#039;ve suggested is not good? Why groups or subgroups within one level (and under the same parent...) couldn&#039;t (or, shouldn&#039;t) be grouped according to normal (human understandable) counting (numbering)?</p><p>By the way, I&#039;ve noticed my query is not 100% OK, I have to work on it a bit more. But generally, I think within a (sub)group of &quot;equally weighted&quot; (the same level and parent) entries, sorting has to be done as we count. Or, limit the number of entries within such group to 10 entries (1 digit), to avoid confusion.</p>]]></description>
			<author><![CDATA[null@example.com (LUTi)]]></author>
			<pubDate>Tue, 30 Mar 2010 10:29:59 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5498#p5498</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5497#p5497</link>
			<description><![CDATA[<p>1. Recursivity is not available in all version of MySQL (3.23). We may, however, skip 3.23 in 2.3 if this is not used anymore according to our polls.<br />2. It is not adviseable to handle the grouping as strings and numeric as per se.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Tue, 30 Mar 2010 10:10:57 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5497#p5497</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5496#p5496</link>
			<description><![CDATA[<p>Yes, reports are &quot;theoretically&quot; arranged by class_id. Theoretically because today reports are much different, at least in Slovenia (a sort of GIFI system, where many accounts are merged together in certain category, not as in COA or in classic BS or PL reports...). So, I consider class_id only as a tool to decide how to record a transaction (debit / credit). In any case, in account management screens I like things to be listed as prescribed by the COA. In any case, I&#039;ve found the file and changed 1 line, and I hope we are both (all) happy... ;-)</p><p>About my issue (so that 13 is not less than 2), it can be solved.</p><p>Try the following query:</p><p>SELECT c5.id, c5.name, c5.class_id, c5.parent, c5.inactive FROM (<br />&nbsp; SELECT IF(c4.parent3 = &#039;&#039; OR c4.parent3 = &#039;-1&#039;, c4.id3, c4.parent3) AS id4,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c4.parent3 = &#039;&#039; OR c4.parent3 = &#039;-1&#039;, &#039;-1&#039;, (SELECT parent FROM 0_chart_types cx4 WHERE cx4.id = c4.parent3)) AS parent4,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c4.* FROM (<br />&nbsp; &nbsp; SELECT IF(c3.parent2 = &#039;&#039; OR c3.parent2 = &#039;-1&#039;, c3.id2, c3.parent2) AS id3,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c3.parent2 = &#039;&#039; OR c3.parent2 = &#039;-1&#039;, &#039;-1&#039;, (SELECT parent FROM 0_chart_types cx3 WHERE cx3.id = c3.parent2)) AS parent3,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c3.* FROM (<br />&nbsp; &nbsp; &nbsp; SELECT IF(c2.parent1 = &#039;&#039; OR c2.parent1 = &#039;-1&#039;, c2.id1, c2.parent1) AS id2,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c2.parent1 = &#039;&#039; OR c2.parent1 = &#039;-1&#039;, &#039;-1&#039;, (SELECT parent FROM 0_chart_types cx2 WHERE cx2.id = c2.parent1)) AS parent2,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c2.* FROM (<br />&nbsp; &nbsp; &nbsp; &nbsp; SELECT IF(c1.parent = &#039;&#039; OR c1.parent = &#039;-1&#039;, c1.id, c1.parent) AS id1,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; IF(c1.parent = &#039;&#039; OR c1.parent = &#039;-1&#039;, &#039;-1&#039;, (SELECT parent FROM 0_chart_types cx1 WHERE cx1.id = c1.parent)) AS parent1,<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c1.* FROM (<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SELECT * FROM 0_chart_types c) AS c1) AS c2) AS c3) AS c4<br /> ) AS c5 ORDER BY<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CAST(id4 AS UNSIGNED), CAST(id3 AS UNSIGNED), CAST(id2 AS UNSIGNED), CAST(id1 AS UNSIGNED), id, parent;</p><p>I think so many recursive levels should be enough to sort 5 levels of account groups properly.</p><p>I&#039;ve tested that query with account group table, it seems to be OK (a table in account group add/edit form is created well; haven&#039;t tested the situation where $all, $class_id or $parent would be false though...). Where is the query which creates the dropdown list for the &quot;Subgroup Of:&quot; field (I&#039;d like to fix that one too...)?</p><p>You have to add your class_id to the sort, of course... ;-)</p>]]></description>
			<author><![CDATA[null@example.com (LUTi)]]></author>
			<pubDate>Tue, 30 Mar 2010 09:13:20 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5496#p5496</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5495#p5495</link>
			<description><![CDATA[<p>All the group ids and subgroup ids are strings, so 13 is between 1 and 2. So you will have to rearrange your ids to fit into your hierarchy.<br />It is quite obvious why we sort by class_id first. The balance sheets and PL statements are created by using this class_id.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Tue, 30 Mar 2010 08:02:14 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5495#p5495</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5494#p5494</link>
			<description><![CDATA[<p>joe,</p><p>I understand this is the way it works...</p><p>I just don&#039;t uderstand how should 13 be between 1 and 2, if it is on the same level. 13 is higher than 2, or? ;-)</p><p>I think that within the same level IDs should be compared as numbers, not strings (where 13 comes before 2, as 1 is lower than 2...). Sublevels are something else, as it is common practice in accounting to add digits on the right side...</p><p>And, I don&#039;t understand your suggestion to rearrange group_id - to achieve what? I can do whatever I want with IDs, they will still be ordered by class ID first (what I don&#039;t like). If you think this is how it should be (without changing it, or give us an option to disable / change that), I will have to patch my code (probably just one SQL to be edited or so - haven&#039;t take a look yet). Altough I hate to do that (unless really necessary), it should make us all happy...</p>]]></description>
			<author><![CDATA[null@example.com (LUTi)]]></author>
			<pubDate>Tue, 30 Mar 2010 06:30:21 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5494#p5494</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5483#p5483</link>
			<description><![CDATA[<p>The groups are sorted by class_id, group id. And inside the group_id it is sorted per subgroup. When running the reports it is doing the right way.</p><p>This is the way it works. You can rearrange the group_id. The update routine will adjust the subgroups and accounts groups in the accounts table accordingly.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Mon, 29 Mar 2010 10:20:05 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5483#p5483</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5480#p5480</link>
			<description><![CDATA[<p>joe,</p><p>thank you. This is resolved now, dropdown list is properly ordered.</p><p>I&#039;ve found another weirdness. After adding a group:<br />ID: 13<br />Name: TEST 3<br />Subgroup Of: None<br />Class Type: Assets</p><p>I&#039;ve found it listed between groups 1 (&quot;Current Assets&quot;) and 2 (&quot;Inventory Assets&quot;). Shouldn&#039;t it be listed after 3 (&quot;Capital Assets&quot;), since it is not a subgroup of 1?</p><p>Otherwise, we could simply say sublevels are automatic (10 is a subgroup of 1, 100 is a subgroup if 10 etc.). But, if we accept more than 10 (ID 0 - 9) level 1 groups (as now 10, 11 and 12 are...), they should be ordered as if they are integers, or? Otherwise, the ordering is quite confusing (like in good old DOS and older Win$ versions, with dir command).</p><p>Also my another question seems to be overlooked, altough not so unimportant as it may look. Imagine I change (from the situation as in my previous post) the group 001 to class type &quot;Liabilities&quot; now. It will fall down to the position after group 3 (&quot;Capital Assets&quot;), being the first one among &quot;Liabilities&quot; groups (altough being a subgroup of 01, listed in another / totally different position). If there are many account groups (doesn&#039;t fit in just one screen), this can be not only quite annoying, but also confusing (one may think some groups or subgroups doesn&#039;t exist, would try to create them, get an error...). I think all groups should be listed by the ID order, no matter what class type they are. If I want all assets to be listed first, liabilities after etc., I can change IDs and I have such an order. Why to insist on so strange ordering (without at least giving us an option to disable it / to order by ID only)?</p>]]></description>
			<author><![CDATA[null@example.com (LUTi)]]></author>
			<pubDate>Mon, 29 Mar 2010 08:35:15 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5480#p5480</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5444#p5444</link>
			<description><![CDATA[<p>You should also download the following file from CVS unstable</p><br /><br /><p>Otherwhise some of the reports will not print.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Fri, 26 Mar 2010 16:35:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5444#p5444</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5443#p5443</link>
			<description><![CDATA[<p>This has now been fixed in CVS unstable. Affected file /includes/ui/ui_lists.inc.</p><p>You can download it here:</p><br /><br /><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Fri, 26 Mar 2010 15:19:11 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5443#p5443</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5442#p5442</link>
			<description><![CDATA[<p>Yes, I understand.<br />The Account Group table above is ordered correctly, but the combobox list is sorted in a strange way. It should have been sorted just as the Account Group table.<br />Janusz will have a second look at the function gl_account_types_list.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Fri, 26 Mar 2010 15:07:39 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5442#p5442</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5441#p5441</link>
			<description><![CDATA[<p>Hi Joe,</p><p>it is default empty installation. I&#039;ve set CVS version just to test this feature, as it is very important to me (otherwise, I am evaluating 2.2.7 version).</p><p>So, the only difference is (copied from backup):</p><p>### Data of table `0_chart_types` ###<br />INSERT INTO `0_chart_types` VALUES (&#039;1&#039;, &#039;Current Assets&#039;, &#039;1&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;2&#039;, &#039;Inventory Assets&#039;, &#039;1&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;3&#039;, &#039;Capital Assets&#039;, &#039;1&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;4&#039;, &#039;Current Liabilities&#039;, &#039;2&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;5&#039;, &#039;Long Term Liabilities&#039;, &#039;2&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;6&#039;, &#039;Share Capital&#039;, &#039;2&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;7&#039;, &#039;Retained Earnings&#039;, &#039;2&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;8&#039;, &#039;Sales Revenue&#039;, &#039;3&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;9&#039;, &#039;Other Revenue&#039;, &#039;3&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;10&#039;, &#039;Cost of Goods Sold&#039;, &#039;4&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;11&#039;, &#039;Payroll Expenses&#039;, &#039;4&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;12&#039;, &#039;General &amp;amp; Administrative expenses&#039;, &#039;4&#039;, &#039;-1&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;0&#039;, &#039;level 1 - TEST&#039;, &#039;1&#039;, &#039;&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;00&#039;, &#039;level 2 - TEST1&#039;, &#039;1&#039;, &#039;0&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;000&#039;, &#039;level 3 - TEST1-1&#039;, &#039;1&#039;, &#039;00&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;01&#039;, &#039;level 2 - TEST2&#039;, &#039;1&#039;, &#039;0&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;010&#039;, &#039;level 3 - TEST2-1&#039;, &#039;1&#039;, &#039;01&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;001&#039;, &#039;level 3 - TEST1-2&#039;, &#039;1&#039;, &#039;00&#039;, &#039;0&#039;);<br />INSERT INTO `0_chart_types` VALUES (&#039;011&#039;, &#039;level 3 - TEST2-2&#039;, &#039;1&#039;, &#039;01&#039;, &#039;0&#039;);</p><p>Up to Administrative expenses (12) it is a default, the rest is everything I&#039;ve added. If there is a need, I can send you a complete backup and screenshot, but it was easier to simply copy/paste an extract from a backup (just made for this purpose) here...</p>]]></description>
			<author><![CDATA[null@example.com (LUTi)]]></author>
			<pubDate>Fri, 26 Mar 2010 13:53:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5441#p5441</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5430#p5430</link>
			<description><![CDATA[<p>You could send me a backup (sql script) from your test client. You can use the email address on the &#039;Contact Us&#039; page for sending attachments to us.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Fri, 26 Mar 2010 12:01:45 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5430#p5430</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5429#p5429</link>
			<description><![CDATA[<p>Yes, I&#039;ve checked - it is the same (and, I&#039;ve just updated the whole CVS tree again, no changes...).</p><p>Maybe the reason could be that you&#039;ve entered the data in the order (as it should be)? I can not imagine what would be different, but for sure on my system it is as described above (a pitty that I can not attach a screenshot...).</p><p>I am getting the unstable branch - this should be OK, or? I see some updates every day, and &quot;FrontAccounting 2.3 CVS (m7) - Theme: default - &quot; is reported (at the moment: &quot;Version 2.3 CVS (m7) Build 25.03.2010&quot;).</p>]]></description>
			<author><![CDATA[null@example.com (LUTi)]]></author>
			<pubDate>Fri, 26 Mar 2010 10:21:42 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5429#p5429</guid>
		</item>
		<item>
			<title><![CDATA[Re: Error editing (updating) Account Groups in 2.3 CVS]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=5424#p5424</link>
			<description><![CDATA[<p>There must be something wrong with your setup. It is sorted correctly in my environment.<br />Did you remember to download the latest /includes/ui/ui_lists.inc from the CVS unstable?<br />You can download it here:</p><br /><br /><p>This types_list has been updated.</p><br /><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Thu, 25 Mar 2010 15:20:53 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=5424#p5424</guid>
		</item>
	</channel>
</rss>
