<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Cash account cannot be $0?]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=4077</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=4077&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Cash account cannot be $0?.]]></description>
		<lastBuildDate>Thu, 16 May 2013 10:40:23 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16672#p16672</link>
			<description><![CDATA[<p>@twitty1437<br />Sure, as usually fix will be included in next release.<br />Janusz</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Thu, 16 May 2013 10:40:23 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16672#p16672</guid>
		</item>
		<item>
			<title><![CDATA[Re: Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16626#p16626</link>
			<description><![CDATA[<p>Still getting used to PHP and FA&#039;s setup...</p>]]></description>
			<author><![CDATA[null@example.com (BrianKuehn)]]></author>
			<pubDate>Fri, 10 May 2013 09:22:59 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16626#p16626</guid>
		</item>
		<item>
			<title><![CDATA[Re: Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16625#p16625</link>
			<description><![CDATA[<p>Changing the line works.</p><p>Thanks.</p><p>But the same thing needs to be changed for &quot;Payment entry&quot; as well&nbsp; so that paying the exact same amount as the Cash Account has is possible.</p><p>Will this be fix in the next release?</p>]]></description>
			<author><![CDATA[null@example.com (twitty1437)]]></author>
			<pubDate>Fri, 10 May 2013 09:16:16 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16625#p16625</guid>
		</item>
		<item>
			<title><![CDATA[Re: Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16621#p16621</link>
			<description><![CDATA[<p>@BrianKuehn<br />Using &lt;=&nbsp; would just raise the error when amount is equal to limit.</p><p>Seems this is rounding error, try change the line to:<br /></p><div class="codebox"><pre><code>if ($limit != null &amp;&amp; floatcmp($limit,$amnt_tr)&lt;0)</code></pre></div><p>Janusz</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Fri, 10 May 2013 06:45:30 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16621#p16621</guid>
		</item>
		<item>
			<title><![CDATA[Re: Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16618#p16618</link>
			<description><![CDATA[<p>Shouldn&#039;t $limit &lt;= $amnt_tr work? There shouldn&#039;t be a reason why a transfer can&#039;t be the same amount as the $limit</p><p>Plus it should be that you can&#039;t take out more than you have in your account (unless you have some type of credit maybe)</p><p>Brian</p>]]></description>
			<author><![CDATA[null@example.com (BrianKuehn)]]></author>
			<pubDate>Fri, 10 May 2013 05:12:48 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16618#p16618</guid>
		</item>
		<item>
			<title><![CDATA[Re: Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16615#p16615</link>
			<description><![CDATA[<p>It shouldn&#039;t be a rounding error because all the amount keyed in was in 2 decimal place.<br />And I have just changed the decimal place to 4, the amount i have is exactly 216.8500</p><p>If i transfer 1 cent less: 216.84, it&#039;s ok.</p><p>this is the code that i extracted from bank_transfer.php, not sure if it helps:</p><p>$limit = get_bank_account_limit($_POST[&#039;FromBankAccount&#039;], $_POST[&#039;DatePaid&#039;]);<br />&nbsp; &nbsp; if ($limit != null &amp;&amp; ($limit &lt; $amnt_tr))<br />&nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; display_error(sprintf(_(&quot;The total bank amount exceeds allowed limit (%s) for source account.&quot;), price_format($limit)));<br />&nbsp; &nbsp; &nbsp; &nbsp; set_focus(&#039;amount&#039;);<br />&nbsp; &nbsp; &nbsp; &nbsp; return false;<br />&nbsp; &nbsp; }</p>]]></description>
			<author><![CDATA[null@example.com (twitty1437)]]></author>
			<pubDate>Thu, 09 May 2013 23:50:00 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16615#p16615</guid>
		</item>
		<item>
			<title><![CDATA[Re: Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16614#p16614</link>
			<description><![CDATA[<p>It&#039;s probably a rounding error (so 216.85- 216.85 is not exactly equal to zero).<br />add $1 or 1cent&nbsp; in the cash account (in FA and physically ) it see if it solve the problem.</p><p>I know it&#039;s not ideal, but that&#039;s the only thing you can do at the moment.</p><p>/Elax</p>]]></description>
			<author><![CDATA[null@example.com (elax)]]></author>
			<pubDate>Thu, 09 May 2013 15:39:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16614#p16614</guid>
		</item>
		<item>
			<title><![CDATA[Re: Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16613#p16613</link>
			<description><![CDATA[<p>Someone please help??</p>]]></description>
			<author><![CDATA[null@example.com (twitty1437)]]></author>
			<pubDate>Thu, 09 May 2013 15:11:16 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16613#p16613</guid>
		</item>
		<item>
			<title><![CDATA[Cash account cannot be $0?]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16600#p16600</link>
			<description><![CDATA[<p>I have $216.85 in the cash account and i want to transfer all the amount into a saving account. I did it at &quot;Bank Account Transfers&quot;</p><p>I get the following error message: <br />The total bank amount exceeds allowed limit (216.85) for source account.</p><br /><p>What happened?</p><p>How can i do the transfer correctly?</p>]]></description>
			<author><![CDATA[null@example.com (twitty1437)]]></author>
			<pubDate>Wed, 08 May 2013 15:38:48 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16600#p16600</guid>
		</item>
	</channel>
</rss>
