<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — Hiding Zero's of Voided Transactions?]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=1852&amp;type=atom" />
	<updated>2011-02-12T19:50:02Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=1852</id>
		<entry>
			<title type="html"><![CDATA[Re: Hiding Zero's of Voided Transactions?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8324#p8324" />
			<content type="html"><![CDATA[<p>All amounts in voided transactions in FA are set to zero, so they are not very useful for auditing purposes. Due to specifics of computer aided accounting (with its easiness of transparent data changes) the old requirement to keep voided transactions in place is outdated. Most modern applications use some kind of transaction buffering, which allow modifications/deleting of any transaction until the related accounting period is closed.&nbsp; This idea of transaction buffering/closing will also be implemented in next (2.4)&nbsp; FA release. For now FA treats all entered transactions as buffered until fiscal year is closed.</p><p>Janusz</p>]]></content>
			<author>
				<name><![CDATA[itronics]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=89</uri>
			</author>
			<updated>2011-02-12T19:50:02Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8324#p8324</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Hiding Zero's of Voided Transactions?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8322#p8322" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>joe wrote:</cite><blockquote><p>An alternative would be to set a global variable in config.sys where you could set a variabel to either 0 or 1. Can we maybe get some input regarding this from the community <img src="https://frontaccounting.com/punbb/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>/Joe</p></blockquote></div><p>Just a thing to note: zero transactions and voided transactions are valid transactions, and are required to be listed from auditing perspective in places like Aus, and UK at least.</p><p>Zero transactions are often used at end of month to signify no activity, and voided transactions are of interest to forensic accountants! So, if there is a proposal to remove them from reports, it should remain a user/admin option. Overall, I wouldn&#039;t advocate it, but I can see how people might like the option with their systems.</p>]]></content>
			<author>
				<name><![CDATA[p2409]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=267</uri>
			</author>
			<updated>2011-02-12T17:15:53Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8322#p8322</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Hiding Zero's of Voided Transactions?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8149#p8149" />
			<content type="html"><![CDATA[<p>Hi Joe,</p><p><strong><span style="color: #FF0000">-----&gt; config.php&nbsp; </span></strong></p><p><strong>add :</strong></p><p>&nbsp; &nbsp; // Show Zero&#039;s from Voided Transactions : 1 = Show it ; 0 = Hide it&nbsp; ===&gt; Default : Hide it = 0<br />&nbsp; &nbsp; &nbsp;$Show_Zeros_of_Voided_Transactions=&#039;0&#039;;&nbsp; &nbsp;</p><p><strong><span style="color: #FF0000">------&gt; gl_db_trans.inc&nbsp; </span></strong></p><p><strong>change to :</strong><br />function get_gl_transactions($from_date, $to_date, $trans_no=0,<br />&nbsp; &nbsp; $account=null, $dimension=0, $dimension2=0, $filter_type=null,<br />&nbsp; &nbsp; $amount_min=null, $amount_max=null,$Show_Zeros_of_Voided_Transactions=&#039;0&#039;)</p><p><strong>add just before the line :</strong>&nbsp; &nbsp; if ($trans_no &gt; 0)<br /><strong>the statement :</strong><br />if ( $Show_Zeros_of_Voided_Transactions == &#039;0&#039;) &nbsp; &nbsp; $sql .=&nbsp; &nbsp;&quot; AND &quot;.TB_PREF.&quot;gl_trans.amount &lt;&gt; &#039;0&#039; &quot;;</p><p><strong><span style="color: #FF0000">------&gt; gl_account_inquiry.php</span></strong></p><p><strong>in function show_results()</strong></p><p><strong>change to :</strong><br />global $path_to_root, $table_style, $systypes_array,$Show_Zeros_of_Voided_Transactions;</p><p><strong>change to :</strong><br />&nbsp; &nbsp; $result = get_gl_transactions($_POST[&#039;TransFromDate&#039;], $_POST[&#039;TransToDate&#039;], -1,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp; &nbsp; &nbsp; $_POST[&quot;account&quot;], $_POST[&#039;Dimension&#039;], $_POST[&#039;Dimension2&#039;], null,<br />&nbsp; &nbsp; &nbsp; &nbsp; input_num(&#039;amount_min&#039;), input_num(&#039;amount_max&#039;),$Show_Zeros_of_Voided_Transactions); </p><p><strong><span style="color: #FF0000">-------&gt; Rep702.php </span></strong></p><p><strong>in function print_list_of_journal_entries()</strong></p><p><strong>change to:</strong><br />&nbsp; &nbsp; global $path_to_root, $systypes_array, $Show_Zeros_of_Voided_Transactions; </p><p><strong>change to:</strong><br />&nbsp; &nbsp; $trans = get_gl_transactions($from, $to, -1, null, 0, 0, $systype,null,null,$Show_Zeros_of_Voided_Transactions);&nbsp; </p><p><strong><span style="color: #FF0000">--------&gt; Rep704.php</span></strong></p><p><strong>in function print_GL_transactions()</strong></p><p><strong>change to:</strong><br />&nbsp; &nbsp; global $path_to_root, $systypes_array, $Show_Zeros_of_Voided_Transactions;&nbsp; </p><p><strong>change to:</strong><br />&nbsp; &nbsp; $trans = get_gl_transactions($from, $to, -1, $account[&#039;account_code&#039;], $dimension, $dimension2,null,null,null,$Show_Zeros_of_Voided_Transactions);</p><br /><p><span class="bbu"><strong><span style="color: #FF0000">RE : Report Generator,</span></strong></span></p><p>I really don&#039;t know any, but I doubt it is perhaps easier if we sub-devised the Rep-xxx associated with FA to different&nbsp; sub-modules :</p><p>- Title (1, 2,...) : generalized</p><p>- Core (1,2,...) : special for each report</p><p>- Tail (1,2,...)&nbsp; &nbsp;: generalized</p><p>it is a semi automatic approach.</p><p><strong>Regards,<br />Khaled</strong></p>]]></content>
			<author>
				<name><![CDATA[Kalido]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=434</uri>
			</author>
			<updated>2011-01-25T17:52:48Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8149#p8149</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Hiding Zero's of Voided Transactions?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8145#p8145" />
			<content type="html"><![CDATA[<p>Thanks Khaled. In my former post I called the file config.sys. It should be config.php of cource.</p><p>Khaled, do you have any ideas about a simple report generator. We have been looking around without any luck. The one we have as a module is not good enough. Are you keen on trying?</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2011-01-25T08:55:27Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8145#p8145</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Hiding Zero's of Voided Transactions?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8144#p8144" />
			<content type="html"><![CDATA[<p>I will do the modification as you suggest. And I will post it to the community soon.</p><p>From other side, I m very happy that you adopted the Characters Accounts approach.</p><p>I think now,perhaps it is about time for an effort to some kind of a Simple Reports Generator.</p><p>/khaled</p>]]></content>
			<author>
				<name><![CDATA[Kalido]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=434</uri>
			</author>
			<updated>2011-01-25T05:57:04Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8144#p8144</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Hiding Zero's of Voided Transactions?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8136#p8136" />
			<content type="html"><![CDATA[<p>An alternative would be to set a global variable in config.sys where you could set a variabel to either 0 or 1. Can we maybe get some input regarding this from the community <img src="https://frontaccounting.com/punbb/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2011-01-24T21:41:31Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8136#p8136</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Hiding Zero's of Voided Transactions?]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8134#p8134" />
			<content type="html"><![CDATA[<p>Hi,</p><p>to hide Voided Transactions Records who appears as Zero&#039;s in :</p><p>GL Account Inquiry ( ...../gl/inquiry/gl_account_inquiry.php? ) Or in the Account Statement Reports,</p><p>I added a variable : $Include_Zero_Amounts = &#039;No&#039;;<br />in&nbsp; &nbsp;the function&nbsp; &quot;&nbsp; get_gl_transactions&nbsp; &quot; ///&nbsp; &quot; gl_db_trans.php&nbsp; &quot;&nbsp; to control the associated query.</p><p>Is there another alternative I may use&nbsp; ?</p><p>Thanks,<br />Khaled</p>]]></content>
			<author>
				<name><![CDATA[Kalido]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=434</uri>
			</author>
			<updated>2011-01-24T19:00:15Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8134#p8134</id>
		</entry>
</feed>
