<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — A Bug in Item Sales Summary Report]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=6542</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=6542&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in A Bug in Item Sales Summary Report.]]></description>
		<lastBuildDate>Sun, 04 Dec 2016 16:03:30 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26955#p26955</link>
			<description><![CDATA[<p>Thanks @joe: Stands committed in <a href="https://github.com/FrontAccountingERP/FA/commit/fff85845ae2899b1dbf4a39df94d3e6f27a4fa7e">FA 2.3</a> and <a href="https://github.com/FrontAccountingERP/FA/commit/5fb0585fed8931145e34038debf2323d434f3b51">FA 2.4</a>.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Sun, 04 Dec 2016 16:03:30 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26955#p26955</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26931#p26931</link>
			<description><![CDATA[<p>Its Perfect Now.<br />Thanks @Joe and @apmuthu<br />Regards.</p>]]></description>
			<author><![CDATA[null@example.com (boxygen)]]></author>
			<pubDate>Sat, 03 Dec 2016 17:36:46 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26931#p26931</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26930#p26930</link>
			<description><![CDATA[<p>Oh yes, and please report back if this is ok. Then I will commit the change.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Sat, 03 Dec 2016 15:45:07 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26930#p26930</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26928#p26928</link>
			<description><![CDATA[<p>Try to replace line 41 (in both FA 2.3 and 2.4):<br /></p><div class="codebox"><pre><code>SUM(line.quantity) as quantity</code></pre></div><p>with<br /></p><div class="codebox"><pre><code>SUM(IF(line.debtor_trans_type = &quot;.ST_CUSTCREDIT.&quot;, -line.quantity, line.quantity)) as quantity</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Sat, 03 Dec 2016 15:12:33 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26928#p26928</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26927#p26927</link>
			<description><![CDATA[<p>Thanks @Joe for your action.</p><p>However the bug is still there. Earlier it was not subtracting the credited quantity and now it is adding back. Means now the result in Item sales Summary report is like below</p><p>102 17inch VGA Monitor 8 (instead of 2)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />103 32MB VGA Card&nbsp; &nbsp; &nbsp; &nbsp;6&nbsp; &nbsp; &nbsp; &nbsp; <br />104 52x CD Drive&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10</p>]]></description>
			<author><![CDATA[null@example.com (boxygen)]]></author>
			<pubDate>Sat, 03 Dec 2016 14:18:37 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26927#p26927</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26901#p26901</link>
			<description><![CDATA[<p>Quickfix @joe. Thanks.</p><p>Line 53 in the new file:<br /></p><div class="codebox"><pre><code>        AND (line.debtor_trans_type = &quot;.ST_SALESINVOICE.&quot; OR line.debtor_trans_type = &quot;.ST_CUSTCREDIT.&quot;)&quot;;</code></pre></div><p>may also be<br /></p><div class="codebox"><pre><code>        AND (line.debtor_trans_type IN (&quot;.ST_SALESINVOICE.&quot;, &quot;.ST_CUSTCREDIT.&quot;))&quot;;</code></pre></div><p>This way, when more transaction types needs to be added, it would be easily readable.</p><p>Please commit it.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 29 Nov 2016 08:29:04 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26901#p26901</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26896#p26896</link>
			<description><![CDATA[<p>@boxygen</p><p>You are absolutely right. There was a bug in the Item Sales Summary Report.</p><p>Please try the attached file and tell me if this is ok now. Rename it to rep309.php. Thanks for finding this.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Mon, 28 Nov 2016 22:47:44 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26896#p26896</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26891#p26891</link>
			<description><![CDATA[<p>@joe: <a href="https://www.networksolutions.com/whois/results-res.jsp?domain=boxygen.biz">Boxygen</a>&#039;s claim needs to be checked for reporting consistency.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 28 Nov 2016 16:35:56 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26891#p26891</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26886#p26886</link>
			<description><![CDATA[<p>*Hello</p>]]></description>
			<author><![CDATA[null@example.com (boxygen)]]></author>
			<pubDate>Mon, 28 Nov 2016 09:04:26 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26886#p26886</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26885#p26885</link>
			<description><![CDATA[<p>Hell @joe could you check it further?</p>]]></description>
			<author><![CDATA[null@example.com (boxygen)]]></author>
			<pubDate>Mon, 28 Nov 2016 09:03:13 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26885#p26885</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26789#p26789</link>
			<description><![CDATA[<p>No, I choose the Item returned to inventory location.</p>]]></description>
			<author><![CDATA[null@example.com (boxygen)]]></author>
			<pubDate>Tue, 01 Nov 2016 16:41:55 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26789#p26789</guid>
		</item>
		<item>
			<title><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26788#p26788</link>
			<description><![CDATA[<p>When crediting did you choose Write off the items? Or?</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Tue, 01 Nov 2016 10:00:34 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26788#p26788</guid>
		</item>
		<item>
			<title><![CDATA[A Bug in Item Sales Summary Report]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26787#p26787</link>
			<description><![CDATA[<p>In order to veiw this bug login at fa.boxygen.biz/fa2325</p><p>id: demouser<br />pass: 123456</p><p>Check the Item Sales Summary Report of September 2016. It will show something belo</p><p>102 17inch VGA Monitor 5&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />103 32MB VGA Card&nbsp; &nbsp; &nbsp; &nbsp;6&nbsp; &nbsp; &nbsp; &nbsp; <br />104 52x CD Drive&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10 </p><p>While If you check the Inventory Sales Report of September 2016. It will show something like below</p><p>102 17inch VGA Monitor 2&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />103 32MB VGA Card&nbsp; &nbsp; &nbsp; &nbsp;6&nbsp; &nbsp; &nbsp; &nbsp; <br />104 52x CD Drive&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 10</p><p>The 3 Quantity of VGA Monitor was Credited (Returned) but it is not reflecting in Item Sales Summary REport</p>]]></description>
			<author><![CDATA[null@example.com (boxygen)]]></author>
			<pubDate>Tue, 01 Nov 2016 07:10:01 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26787#p26787</guid>
		</item>
	</channel>
</rss>
