<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Australian Tax Invoice extension]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=7449</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=7449&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Australian Tax Invoice extension.]]></description>
		<lastBuildDate>Thu, 10 May 2018 01:11:17 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31623#p31623</link>
			<description><![CDATA[<p>Can try to avoid making several changes in the core reports to include the pdf inc file if possible.<br />Attached is one instance of a function that may no longer be required or one that can be selectively incorporated with <strong>if(!function_exists(...</strong> at creation time and it&#039;s complement at usage time.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Thu, 10 May 2018 01:11:17 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31623#p31623</guid>
		</item>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31604#p31604</link>
			<description><![CDATA[<p>@apmuthu: Great. I will refactor my code accordingly. Thanks.</p>]]></description>
			<author><![CDATA[null@example.com (PaulShipley)]]></author>
			<pubDate>Wed, 09 May 2018 00:03:19 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31604#p31604</guid>
		</item>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31598#p31598</link>
			<description><![CDATA[<p>@joe: Thanks for the <a href="https://github.com/FrontAccountingERP/FA/commit/51424b406ea62e399fed7f88e55028e7b0731963">commit</a>.</p><p>@PaulShipley: The file <strong>sales/includes/db/cust_trans_details_db.inc</strong> can be removed from your extension as the one in the core would now suffice.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 08 May 2018 19:14:57 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31598#p31598</guid>
		</item>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31585#p31585</link>
			<description><![CDATA[<p>Fixed and committed to Repo.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Mon, 07 May 2018 07:06:05 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31585#p31585</guid>
		</item>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31565#p31565</link>
			<description><![CDATA[<p>@joe: Please add in an extra column in <strong>function get_customer_trans_details</strong> to obtain just the price without tax as it is needed for the likes of the Australian Tax Invoice and possibly elsewhere. This is in file <strong>sales/includes/db/cust_trans_details_db.inc</strong>. Hence the lines 19-21 in the said file:<br /></p><div class="codebox"><pre><code>    $sql = &quot;SELECT line.*,
        line.unit_price+line.unit_tax AS FullUnitPrice,
        line.description As StockDescription,</code></pre></div><p>should now be lines 19-22:<br /></p><div class="codebox"><pre><code>    $sql = &quot;SELECT line.*,
        line.unit_price+line.unit_tax AS FullUnitPrice,
        line.unit_price AS UnitPriceExTax,  
        line.description As StockDescription,</code></pre></div><p>@PaulShipley: The said function is used in rep107.php (sales invoice), rep110.php (deliveries) and rep113.php (credit notes).</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Sat, 05 May 2018 08:30:35 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31565#p31565</guid>
		</item>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31438#p31438</link>
			<description><![CDATA[<p>The ATO guidelines show two examples: one for invoices less than $1000 and the other for amounts of $1000 or more. In practice most businesses choose one or the other depending on if the bulk of their invoices are above or below the threshold. I have modeled my changes on example 2 (above $1000).</p><p>This layout requires separating price (ex tax), GST and total for each line item, which required some changes to the calculations. The line and column totals are unchanged.</p><p>Hope this clarifies these changes.</p>]]></description>
			<author><![CDATA[null@example.com (PaulShipley)]]></author>
			<pubDate>Tue, 17 Apr 2018 05:20:31 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31438#p31438</guid>
		</item>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31390#p31390</link>
			<description><![CDATA[<p>The GST / VAT are addressed in the locale translation files.<br />There are some computational changes you have introduced - in what way do these changes affect the output?</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Wed, 11 Apr 2018 18:39:39 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31390#p31390</guid>
		</item>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31389#p31389</link>
			<description><![CDATA[<p>Thanks. Let me know if there are any issues. I have tried to make as few changes as possible that meets the ATO requirements.</p><p>I&#039;m not sure if this could be made generic as each jurisdiction has it&#039;s own requirements. For example the ATO insists that all references are to &#039;GST&#039;, whereas the UK uses &#039;VAT&#039;. I suspect that there would have to be several versions (eg: Australia, UK, India, USA, etc.) Happy to discuss further ideas.</p>]]></description>
			<author><![CDATA[null@example.com (PaulShipley)]]></author>
			<pubDate>Wed, 11 Apr 2018 08:59:07 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31389#p31389</guid>
		</item>
		<item>
			<title><![CDATA[Re: Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31375#p31375</link>
			<description><![CDATA[<p>Will look into it. Need to check if the UPDATE / INSERT sqls are needed here or changes in the core file(s) are in order. Since many countries including India too follow the GST bandwagon (not that many in the trade are paying it / like to pay it / subsidise excessive and unwarranted govt spending on undesirables!) it may be in order to make it generic.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 10 Apr 2018 06:32:26 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31375#p31375</guid>
		</item>
		<item>
			<title><![CDATA[Australian Tax Invoice extension]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=31362#p31362</link>
			<description><![CDATA[<p>I have created an extension module to provide an Australian Tax Invoice.</p><p>The ATO (Australian Tax Office) is rather flexible about the layout of invoices but there are several mandatory elements that must be complied with to be legal. Their guidelines can be found here <a href="https://www.ato.gov.au/Business/GST/Issuing-tax-invoices/?anchor=Requirementsoftaxinvoices#Requirementsoftaxinvoices">https://www.ato.gov.au/Business/GST/Iss … axinvoices</a>.</p><p>I have used the Module facility to override the standard invoice (rep109) to make FA generate compliant invoices. A number of the other reports have also been modified to be consistent (but not a legal requirement). As this is using Modules, the changes can be switched on or off simply by enabling or disabling the extension.</p><p>Module can be downloaded from <a href="https://github.com/PaulShipley/rep_aus_invoice">https://github.com/PaulShipley/rep_aus_invoice</a></p><p>@apmuthu Can this be added to the official extensions?</p><p>Thanks.</p>]]></description>
			<author><![CDATA[null@example.com (PaulShipley)]]></author>
			<pubDate>Mon, 09 Apr 2018 07:48:56 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=31362#p31362</guid>
		</item>
	</channel>
</rss>
