<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — A Bug in Item Sales Summary Report]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=6542&amp;type=atom" />
	<updated>2016-12-04T16:03:30Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=6542</id>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26955#p26955" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2016-12-04T16:03:30Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26955#p26955</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26931#p26931" />
			<content type="html"><![CDATA[<p>Its Perfect Now.<br />Thanks @Joe and @apmuthu<br />Regards.</p>]]></content>
			<author>
				<name><![CDATA[boxygen]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=20175</uri>
			</author>
			<updated>2016-12-03T17:36:46Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26931#p26931</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26930#p26930" />
			<content type="html"><![CDATA[<p>Oh yes, and please report back if this is ok. Then I will commit the change.</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2016-12-03T15:45:07Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26930#p26930</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26928#p26928" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2016-12-03T15:12:33Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26928#p26928</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26927#p26927" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[boxygen]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=20175</uri>
			</author>
			<updated>2016-12-03T14:18:37Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26927#p26927</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26901#p26901" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2016-11-29T08:29:04Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26901#p26901</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26896#p26896" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2016-11-28T22:47:44Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26896#p26896</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26891#p26891" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2016-11-28T16:35:56Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26891#p26891</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26886#p26886" />
			<content type="html"><![CDATA[<p>*Hello</p>]]></content>
			<author>
				<name><![CDATA[boxygen]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=20175</uri>
			</author>
			<updated>2016-11-28T09:04:26Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26886#p26886</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26885#p26885" />
			<content type="html"><![CDATA[<p>Hell @joe could you check it further?</p>]]></content>
			<author>
				<name><![CDATA[boxygen]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=20175</uri>
			</author>
			<updated>2016-11-28T09:03:13Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26885#p26885</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26789#p26789" />
			<content type="html"><![CDATA[<p>No, I choose the Item returned to inventory location.</p>]]></content>
			<author>
				<name><![CDATA[boxygen]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=20175</uri>
			</author>
			<updated>2016-11-01T16:41:55Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26789#p26789</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26788#p26788" />
			<content type="html"><![CDATA[<p>When crediting did you choose Write off the items? Or?</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2016-11-01T10:00:34Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26788#p26788</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[A Bug in Item Sales Summary Report]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=26787#p26787" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[boxygen]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=20175</uri>
			</author>
			<updated>2016-11-01T07:10:01Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=26787#p26787</id>
		</entry>
</feed>
