<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Displaying Discount amount on invoice]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=5957</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=5957&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Displaying Discount amount on invoice.]]></description>
		<lastBuildDate>Mon, 24 Oct 2016 13:00:33 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26639#p26639</link>
			<description><![CDATA[<p>@seahawk: The global variable <strong>$no_zero_lines_amount</strong> is used to display the zero amount line in reports 107, 109, 110, 111:<br /></p><div class="codebox"><pre><code>                if ($Net != 0.0 || !is_service($myrow2[&#039;mb_flag&#039;]) || !isset($no_zero_lines_amount) || $no_zero_lines_amount == 0)
                {
..
..</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 24 Oct 2016 13:00:33 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26639#p26639</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=26635#p26635</link>
			<description><![CDATA[<p>In the config file there is also an option on line 74:</p><p>/* Do not print zero lines amount of 0.00 in Sales Documents if service item. 1 = do not */<br />&nbsp; &nbsp; $no_zero_lines_amount = 1;</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Mon, 24 Oct 2016 08:55:33 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=26635#p26635</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24386#p24386</link>
			<description><![CDATA[<p>Thanks. Have done something similar but have setup a service item linked to the discount given account&nbsp; in the ledger.</p><p>I though there might a a tick mark or display zeros or something that might be easier, but you idea works great as well.</p><p>Regards</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Tue, 29 Sep 2015 12:32:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24386#p24386</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24385#p24385</link>
			<description><![CDATA[<p>@carmelr: Superb! Thanks.</p><p><a href="https://frontaccounting.com/fawiki/index.php?n=Help.Sales">Wiki</a>-ed it.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 29 Sep 2015 09:11:38 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24385#p24385</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24383#p24383</link>
			<description><![CDATA[<p>The way I do it is to enter the discount on another line and enter a negative amount.</p><p>See examples here:<br /><a href="http://cleversolutions.eu/img/Invoice-discount.png">http://cleversolutions.eu/img/Invoice-discount.png</a><br /><a href="http://cleversolutions.eu/img/Invoice-discount-print.png">http://cleversolutions.eu/img/Invoice-d … -print.png</a></p>]]></description>
			<author><![CDATA[null@example.com (carmelr)]]></author>
			<pubDate>Tue, 29 Sep 2015 08:40:54 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24383#p24383</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24381#p24381</link>
			<description><![CDATA[<p>Thanks for the effort.</p><p>Seems there is no easy way around this.</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Mon, 28 Sep 2015 18:35:05 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24381#p24381</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24379#p24379</link>
			<description><![CDATA[<p>Unfortunately, the values are stored in the tables in a disjoint manner. The full values of amount and tax are stored in <strong>#_debtor_trans_details</strong>. The &quot;net of discount&quot; values are stored in <strong>#_debtor_trans</strong> - the last line in the Print Invoice takes it&#039;s value for INVOICE TOTAL from here.</p><p>You will need a completely different SQL linking the tables appropriately to get what you want. Otherwise, it will need to find a place in the Comments field manually entered which is what I assume you are doing now.!</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 28 Sep 2015 16:59:11 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24379#p24379</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24378#p24378</link>
			<description><![CDATA[<div class="quotebox"><cite>apmuthu wrote:</cite><blockquote><p>rep107.php (Print Invoice) does not show the rate and discounts</p></blockquote></div><p>Thanks</p><p>Agree, but what should I change in the rep107 to show the item cost and the 100% discount on the invoice with 0 toal for the line item?</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Mon, 28 Sep 2015 16:30:44 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24378#p24378</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24377#p24377</link>
			<description><![CDATA[<p>Check the transactions (#_debtor_trans) table to see if it shows up there. </p><p>rep107.php (Print Invoice) does not show the rate and discounts<br />rep112.php (Print Receipts) shows the vales as 0 for left to allocate.<br />ViewGL Transactions shows the values contra-ed as being amounts before tax!<br />The View Sales Invoice page shows the amount after tax!</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 28 Sep 2015 16:08:10 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24377#p24377</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24374#p24374</link>
			<description><![CDATA[<p>I do that, but when you print the invoice (Pdf) file, on the report, it does not display the amount nor the discount</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Mon, 28 Sep 2015 15:52:45 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24374#p24374</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24372#p24372</link>
			<description><![CDATA[<p>Use the full original value of the ABC Service Item in the invoice with the cost you would normally charge but use 100% as discount.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 28 Sep 2015 14:44:54 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24372#p24372</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24371#p24371</link>
			<description><![CDATA[<p>Hi</p><p>I use a service item for Example ABC; total = 1 ; Price = 30; Discount = 10%; Result = 0</p><p>On the invoice only ABC is printed and the rest is blank. Nothing is shown in that line on the invoice. I need the line to show the above information.</p><p>regards</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Mon, 28 Sep 2015 13:32:00 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24371#p24371</guid>
		</item>
		<item>
			<title><![CDATA[Re: Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24368#p24368</link>
			<description><![CDATA[<p>Invoice a &quot;0&quot; cost service with it&#039;s name indicating &quot;Usual cost $...&quot; ?</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 28 Sep 2015 13:17:30 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24368#p24368</guid>
		</item>
		<item>
			<title><![CDATA[Displaying Discount amount on invoice]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=24363#p24363</link>
			<description><![CDATA[<p>Hi</p><p>Sometimes I want to show a service cost on the client invoice and give them a 100% discount, but I need the discount% to display as well as the amount of zero(0) on the invoice.</p><p>Have searched the forum but cannot find something</p><p>regards</p>]]></description>
			<author><![CDATA[null@example.com (seahawk)]]></author>
			<pubDate>Mon, 28 Sep 2015 10:20:50 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=24363#p24363</guid>
		</item>
	</channel>
</rss>
