<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=10245</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=10245&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in I want the Include VAT and Exclude VAT lines to not appear in quote.]]></description>
		<lastBuildDate>Tue, 11 Apr 2023 12:44:59 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42278#p42278</link>
			<description><![CDATA[<p>Let me clarify my problem again.&nbsp; So if anyone has a solution please let me know.&nbsp; That is:<br />A customer whom we elect to be exempt from tax.&nbsp; So in the sales quotation, delivery note and prepaid invoice, the sum amount tax included is also written under the excluded total.&nbsp; The customer is confused.&nbsp; Does anyone have a solution for this.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Tue, 11 Apr 2023 12:44:59 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42278#p42278</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42277#p42277</link>
			<description><![CDATA[<p>I am grateful to you.&nbsp; I am sorry to say.&nbsp; As per the method you mentioned, I tried to do it.&nbsp; But could not do it.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Tue, 11 Apr 2023 12:39:54 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42277#p42277</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42274#p42274</link>
			<description><![CDATA[<p>You need to find the tax_group_id for the exempt customer. This can be done by browsing the database (with phpmyadmin for example) and displaying the content of (x_cust_branch) of the exempt customer. There you will find the tax_group_id that you will need to use in the above code. As I said mine is 2. Yours could be the same or different, </p><p>Note: You can also find the group_id from x_tax_groups table in the database.</p><br /><p>Good luck.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Mon, 10 Apr 2023 15:31:03 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42274#p42274</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42273#p42273</link>
			<description><![CDATA[<p>Thank you very much for understanding my problem and helping me to solve it.<br />Yes is You are correct. There was a difference of 2 numbers. I added the same code as you suggested. But this did not change the sale order.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Mon, 10 Apr 2023 13:31:30 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42273#p42273</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42272#p42272</link>
			<description><![CDATA[<p>Its not the same code. tax_included == 0&nbsp; is not the same as Tax Exempt.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Mon, 10 Apr 2023 12:10:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42272#p42272</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42271#p42271</link>
			<description><![CDATA[<p>I have studied well. The same code is already there on line number 165 in rep111.php.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Mon, 10 Apr 2023 10:16:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42271#p42271</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42260#p42260</link>
			<description><![CDATA[<p>@msuhail197</p><p>I am not a php programmer at all. I can barely make sense of the code. Below is my only assessment of what could be done. Please dont take it for granted as it could all be wrong. One thing of caution here is <br />&#039;tax_group_id&#039; for exempt customers is unique to every installation. in my case its 2. In your case it could be different.</p><p>Insert after line 165 in rep111.php</p><div class="codebox"><pre><code>if ($myrow[&#039;tax_group_id&#039;] == 2) {
        $rep-&gt;TextCol(3, 6, _(&quot;TOTAL ORDER&quot;), - 2);
        $rep-&gt;TextCol(6, 7,    $DisplayTotal, -2);
        $rep-&gt;NewLine();
        continue;
        } </code></pre></div><p>Please test on a test environment and advise result.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Sat, 08 Apr 2023 19:58:11 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42260#p42260</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42258#p42258</link>
			<description><![CDATA[<div class="quotebox"><cite>rafat wrote:</cite><blockquote><p>@msuhail197</p><p>This needs modifications to rep111 which is beyond my scope. Hope someone can help with this. I agree the narrative is confusing and there is no need for it if the customer is exempt.</p></blockquote></div><p>Thank you very much for your time and reply.<br />Founded the file &quot;rep111&quot;. Please explain now only where and what to change in its code?</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Sat, 08 Apr 2023 09:57:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42258#p42258</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42251#p42251</link>
			<description><![CDATA[<p>@msuhail197</p><p>This needs modifications to rep111 which is beyond my scope. Hope someone can help with this. I agree the narrative is confusing and there is no need for it if the customer is exempt.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Thu, 06 Apr 2023 18:56:32 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42251#p42251</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42250#p42250</link>
			<description><![CDATA[<div class="quotebox"><cite>rafat wrote:</cite><blockquote><p>Better if you have an example. If truly your customer is Tax Exempt in the system then these should not appear on the quote. <br />Try Setup-&gt;Company Setup-&gt;Put alternative Tax Include on Docs&nbsp; &nbsp; (unticked) <br />It might help you.</p></blockquote></div><p>I am grateful to you. You responded to me and intended to help me resolve my problem.<br />This is a sales quotation. Which is without tax. But still showing the same amount with and without VAT. Which causes confusion to the customer.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Thu, 06 Apr 2023 16:46:12 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42250#p42250</guid>
		</item>
		<item>
			<title><![CDATA[Re: I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42215#p42215</link>
			<description><![CDATA[<p>Better if you have an example. If truly your customer is Tax Exempt in the system then these should not appear on the quote. <br />Try Setup-&gt;Company Setup-&gt;Put alternative Tax Include on Docs&nbsp; &nbsp; (unticked) <br />It might help you.</p>]]></description>
			<author><![CDATA[null@example.com (rafat)]]></author>
			<pubDate>Tue, 28 Mar 2023 06:25:44 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42215#p42215</guid>
		</item>
		<item>
			<title><![CDATA[I want the Include VAT and Exclude VAT lines to not appear in quote]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=42214#p42214</link>
			<description><![CDATA[<p>When I print the customer quotation the &quot;Include VAT and Exclude VAT&quot; lines is appear in the Tax Exempt Customer&#039;s quotation. and total and&nbsp; including VAT and excluding VAT, all three lines have the same amount which is against the accounting principle. And the customer gets confused and objects.<br />I want the Include VAT and Exclude VAT lines to not appear in the Tax Exempt Customer&#039;s quotation.<br />How to solve this problem? Please guide me.</p>]]></description>
			<author><![CDATA[null@example.com (msuhail197)]]></author>
			<pubDate>Mon, 27 Mar 2023 23:18:20 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=42214#p42214</guid>
		</item>
	</channel>
</rss>
