<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — purchase invoice tax]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=7213&amp;type=atom" />
	<updated>2017-12-23T11:28:04Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=7213</id>
		<entry>
			<title type="html"><![CDATA[Re: purchase invoice tax]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30222#p30222" />
			<content type="html"><![CDATA[<p>Whilst the Purchase Order Tax is temporary, the Tax on the Purchase Invoice is permanent. The <em>Inventory Purchase Report</em> - <strong>rep306.php</strong> can be extended to show the tax on each item. The effective sql used there is:<br /></p><div class="codebox"><pre><code>SELECT item.category_id
     , category.description AS cat_description
     , item.stock_id
     , item.description
     , item.inactive
     , move.loc_code
     , supplier.supplier_id
     , supplier.supp_name AS supplier_name
     , move.tran_date
     , move.qty AS qty
     , move.price
FROM 1_stock_moves move
     LEFT JOIN 0_supp_trans credit ON credit.trans_no=move.trans_no AND credit.type=move.type
     LEFT JOIN 0_grn_batch grn ON grn.id=move.trans_no AND 25=move.type
     LEFT JOIN 0_suppliers supplier ON IFNULL(grn.supplier_id, credit.supplier_id)=supplier.supplier_id
     INNER JOIN 0_stock_master item ON item.stock_id=move.stock_id
     INNER JOIN 0_stock_category category ON item.category_id=category.category_id
WHERE (move.type=25 OR move.type=21)
  AND (item.mb_flag=&#039;B&#039; OR item.mb_flag=&#039;M&#039;);

-- ST_SUPPRECEIVE = 25
-- ST_SUPPCREDIT = 21</code></pre></div><p>The <strong>0_supp_trans.ov_gst</strong> is expected to contain the tax.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2017-12-23T11:28:04Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30222#p30222</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: purchase invoice tax]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30217#p30217" />
			<content type="html"><![CDATA[<p>This is only temporary tax info on PO. This info could change when the invoice arrive.</p><p>I don&#039;t think such a report is interesting. You get the tax report for the info later.</p><p>Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2017-12-23T08:05:35Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30217#p30217</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: purchase invoice tax]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30216#p30216" />
			<content type="html"><![CDATA[<p>Tax is available for invoicing. I meant about Tax being listed in a report.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2017-12-23T07:56:00Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30216#p30216</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: purchase invoice tax]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30214#p30214" />
			<content type="html"><![CDATA[<p>I found it <br />you are right Joe now i can see invoice purchase tax in report. there was error from me i found it in supplier it was selected tax exempt i change it to tax it appear. thanks joe and thanks apmuthu</p>]]></content>
			<author>
				<name><![CDATA[realjedd]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=42019</uri>
			</author>
			<updated>2017-12-23T07:36:37Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30214#p30214</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: purchase invoice tax]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30213#p30213" />
			<content type="html"><![CDATA[<p>i generate the purchase invoice but i do not see it in tax report just i see sale tax. can you please tell me How?</p>]]></content>
			<author>
				<name><![CDATA[realjedd]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=42019</uri>
			</author>
			<updated>2017-12-23T07:23:04Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30213#p30213</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: purchase invoice tax]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30210#p30210" />
			<content type="html"><![CDATA[<p>FA is certainly not handicapped. Tax is entered when the purchase invoice is entered.</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2017-12-23T06:51:33Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30210#p30210</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: purchase invoice tax]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30207#p30207" />
			<content type="html"><![CDATA[<p>Only rep209 - Print Purchase Orders - shows Tax on Purchases.<br />A Print Purchases Listing is needed - both summary and detail.</p><p>The <strong>function get_po()</strong> defined in <strong>reporting/rep209.php</strong>&nbsp; uses an sql that has the field <strong>tax_included</strong> twice with no aliases to differentiate them on fetching them into an array - which one will supercede for it?<br />The table <em>purchase_orders</em> and the table <em>suppliers</em> both have the field <strong>tax_included</strong>.</p><p>The currently effective sql before filtration and additional columns in <strong>get_po()</strong> is:<br /></p><div class="codebox"><pre><code>SELECT po.*
     , supplier.supp_name
     , supplier.supp_account_no
--     , supplier.tax_included
     , supplier.gst_no AS tax_id
     , supplier.curr_code
     , supplier.payment_terms
     , loc.location_name
     , supplier.address
     , supplier.contact
     , supplier.tax_group_id
FROM 1_purch_orders po 
     INNER JOIN 1_suppliers supplier ON (po.supplier_id = supplier.supplier_id)
     INNER JOIN 1_locations loc ON (loc.loc_code = po.into_stock_location);</code></pre></div><p>@joe: FA without Purchase Tax reporting is really handicapped.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2017-12-23T04:41:16Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30207#p30207</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[purchase invoice tax]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=30201#p30201" />
			<content type="html"><![CDATA[<p>Hi Friends<br />&nbsp; i ca not see purchase invoices tax in tax report <br />how i can make it appear?</p>]]></content>
			<author>
				<name><![CDATA[realjedd]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=42019</uri>
			</author>
			<updated>2017-12-22T21:25:48Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=30201#p30201</id>
		</entry>
</feed>
