<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Report modules has an error needs to be fixed.]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=7910</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=7910&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Report modules has an error needs to be fixed..]]></description>
		<lastBuildDate>Tue, 01 Jan 2019 04:30:19 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Report modules has an error needs to be fixed.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33801#p33801</link>
			<description><![CDATA[<p>Happy New year to all the active community members and main contributors . </p><p>@joe , @apmuthu,&nbsp; Happy New year buddies</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Tue, 01 Jan 2019 04:30:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33801#p33801</guid>
		</item>
		<item>
			<title><![CDATA[Re: Report modules has an error needs to be fixed.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33798#p33798</link>
			<description><![CDATA[<p>If the $dim is acquired within the code, must it be declared global?<br />As $dim is declared global, is it necessary to acquire it again (I have disabled re-acquiring it in my commit).</p><p>The official repo has not yet been refreshed.</p><p>Retaining the same version and build numbers of the official extensions as of now, <a href="https://github.com/apmuthu/FA24extensions/commit/ca52e67c95978cc519aa3d56fd13aada65b3427b">my unofficial repo has been updated</a>.</p><p>That&#039;s probably the final commit in FA related repos for now in this year. Happy New Year ahead to all FA Members and their families.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 31 Dec 2018 03:20:44 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33798#p33798</guid>
		</item>
		<item>
			<title><![CDATA[Re: Report modules has an error needs to be fixed.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33797#p33797</link>
			<description><![CDATA[<p>Hello @kvvaradha</p><p>This has been fixed And I have sent it to Janusz and asked him to upload it to the extension repo.</p><p>Thank you for finding this issue. And a Happy New Year to you and the rest of the members.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Sun, 30 Dec 2018 23:32:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33797#p33797</guid>
		</item>
		<item>
			<title><![CDATA[Re: Report modules has an error needs to be fixed.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33796#p33796</link>
			<description><![CDATA[<p>also check the <strong> Cash flow Statement</strong>. Same issue, update that too,</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Sun, 30 Dec 2018 18:28:43 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33796#p33796</guid>
		</item>
		<item>
			<title><![CDATA[Re: Report modules has an error needs to be fixed.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33795#p33795</link>
			<description><![CDATA[<p>Ok, this is an extension report, but I will have a look at it.</p><p>Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Sun, 30 Dec 2018 18:15:01 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33795#p33795</guid>
		</item>
		<item>
			<title><![CDATA[Report modules has an error needs to be fixed.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33794#p33794</link>
			<description><![CDATA[<p>When i check <strong>Annual Balance Breakdown - Detailed</strong> and <strong>Annual Expense Breakdown - Detailed</strong> with dimension two enabled.Both through PARAM_4 undefined error. Than i checked the reports_custom.php for both.&nbsp; and i found that the dimension things are missing there. </p><p>here is it. </p><p>Annual Balance Breakdown - Detailed<br /></p><div class="codebox"><pre><code>global $reports, $dim;

$dim = get_company_pref(&#039;use_dimension&#039;);

if($dim == 2 ) {
    $reports-&gt;addReport(RC_GL,&quot;_annual_balance_breakdown&quot;,_(&#039;Annual &amp;Balance Breakdown - Detailed&#039;),
       array(  _(&#039;Report Period&#039;) =&gt; &#039;DATEENDM&#039;,
                       _(&#039;Dimension&#039;) =&gt; &#039;DIMENSIONS1&#039;,
                       _(&#039;Dimension 2&#039;) =&gt; &#039;DIMENSIONS2&#039;,
                       _(&#039;Comments&#039;) =&gt; &#039;TEXTBOX&#039;,
                       _(&#039;Destination&#039;) =&gt; &#039;DESTINATION&#039;));
} elseif($dim == 1) {
$reports-&gt;addReport(RC_GL,&quot;_annual_balance_breakdown&quot;,_(&#039;Annual &amp;Balance Breakdown - Detailed&#039;),
       array(  _(&#039;Report Period&#039;) =&gt; &#039;DATEENDM&#039;,
                       _(&#039;Dimension&#039;) =&gt; &#039;DIMENSIONS1&#039;,
                       _(&#039;Comments&#039;) =&gt; &#039;TEXTBOX&#039;,
                       _(&#039;Destination&#039;) =&gt; &#039;DESTINATION&#039;));
} else {
    $reports-&gt;addReport(RC_GL,&quot;_annual_balance_breakdown&quot;,_(&#039;Annual &amp;Balance Breakdown - Detailed&#039;),
       array(  _(&#039;Report Period&#039;) =&gt; &#039;DATEENDM&#039;,                      
                       _(&#039;Comments&#039;) =&gt; &#039;TEXTBOX&#039;,
                       _(&#039;Destination&#039;) =&gt; &#039;DESTINATION&#039;));
}</code></pre></div><br /><br /><p>Annual Expense Breakdown - Detailed<br /></p><div class="codebox"><pre><code>global $reports, $dim;

$dim = get_company_pref(&#039;use_dimension&#039;);

if($dim == 2 ) {
    $reports-&gt;addReport(RC_GL,&quot;_annual_expense_breakdown&quot;,_(&#039;Annual &amp;Expense Breakdown - Detailed&#039;),
       array(  _(&#039;Report Period&#039;) =&gt; &#039;DATEENDM&#039;,
                       _(&#039;Dimension&#039;) =&gt; &#039;DIMENSIONS1&#039;,
                       _(&#039;Dimension 2&#039;) =&gt; &#039;DIMENSIONS2&#039;,
                       _(&#039;Comments&#039;) =&gt; &#039;TEXTBOX&#039;,
                       _(&#039;Destination&#039;) =&gt; &#039;DESTINATION&#039;));    
} elseif($dim == 1) {
    $reports-&gt;addReport(RC_GL,&quot;_annual_expense_breakdown&quot;,_(&#039;Annual &amp;Expense Breakdown - Detailed&#039;),
       array(  _(&#039;Report Period&#039;) =&gt; &#039;DATEENDM&#039;,
                       _(&#039;Dimension&#039;) =&gt; &#039;DIMENSIONS1&#039;,
                       _(&#039;Comments&#039;) =&gt; &#039;TEXTBOX&#039;,
                       _(&#039;Destination&#039;) =&gt; &#039;DESTINATION&#039;));
} else {
    $reports-&gt;addReport(RC_GL,&quot;_annual_expense_breakdown&quot;,_(&#039;Annual &amp;Expense Breakdown - Detailed&#039;),
       array(  _(&#039;Report Period&#039;) =&gt; &#039;DATEENDM&#039;,                      
                       _(&#039;Comments&#039;) =&gt; &#039;TEXTBOX&#039;,
                       _(&#039;Destination&#039;) =&gt; &#039;DESTINATION&#039;));
}</code></pre></div><p>@joe - check this and update it on repository</p>]]></description>
			<author><![CDATA[null@example.com (kvvaradha)]]></author>
			<pubDate>Sun, 30 Dec 2018 17:28:59 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33794#p33794</guid>
		</item>
	</channel>
</rss>
