<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Add input data check for Gl Setup]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=7832</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=7832&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Add input data check for Gl Setup.]]></description>
		<lastBuildDate>Tue, 20 Nov 2018 09:54:08 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Add input data check for Gl Setup]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33339#p33339</link>
			<description><![CDATA[<p>I will have a look.</p><p>Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Tue, 20 Nov 2018 09:54:08 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33339#p33339</guid>
		</item>
		<item>
			<title><![CDATA[Re: Add input data check for Gl Setup]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33336#p33336</link>
			<description><![CDATA[<p>Should we add this modification to the next release also ?<br /><a href="https://frontaccounting.com/punbb/viewtopic.php?id=7764">https://frontaccounting.com/punbb/viewtopic.php?id=7764</a></p>]]></description>
			<author><![CDATA[null@example.com (notrinos)]]></author>
			<pubDate>Tue, 20 Nov 2018 07:05:14 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33336#p33336</guid>
		</item>
		<item>
			<title><![CDATA[Re: Add input data check for Gl Setup]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33328#p33328</link>
			<description><![CDATA[<p>We are planning a minor 2.4.5 release soon.</p><p>We just have to examine the Mantis Bug Tracker.</p><p>Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Mon, 19 Nov 2018 05:45:39 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33328#p33328</guid>
		</item>
		<item>
			<title><![CDATA[Re: Add input data check for Gl Setup]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33327#p33327</link>
			<description><![CDATA[<p>A generic function encapsulating the error displayed and the checks may be in order. This may need to be done in a multitude of forms bloating the codebase otherwise.</p><p>@joe: There have been more than 50 commits since the last version release over 6 months ago - time for a another one with all translation strings as well?</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Mon, 19 Nov 2018 03:25:31 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33327#p33327</guid>
		</item>
		<item>
			<title><![CDATA[Re: Add input data check for Gl Setup]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33326#p33326</link>
			<description><![CDATA[<p>This has now been fixed and committed to stable repo. Thanks @notrinos.</p><p>The fixed file can be downloaded <a href="https://sourceforge.net/p/frontaccounting/git/ci/master/tree/admin/gl_setup.php">here</a>.</p><p>Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Sun, 18 Nov 2018 22:01:14 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33326#p33326</guid>
		</item>
		<item>
			<title><![CDATA[Re: Add input data check for Gl Setup]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33325#p33325</link>
			<description><![CDATA[<p>Ok, willdo.</p><p>Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Sun, 18 Nov 2018 15:12:03 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33325#p33325</guid>
		</item>
		<item>
			<title><![CDATA[Add input data check for Gl Setup]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=33324#p33324</link>
			<description><![CDATA[<p>Should add these checks for function can_process() gl_setup.php<br /></p><div class="codebox"><pre><code>if (!check_num(&#039;past_due_days&#039;, 0, 100))
    {
        display_error(_(&quot;The past due days interval allowance must be between 0 and 100.&quot;));
        set_focus(&#039;past_due_days&#039;);
        return false;
    }

    if (!check_num(&#039;default_quote_valid_days&#039;, 0))
    {
        display_error(_(&quot;Quote Valid Days is not valid number.&quot;));
        set_focus(&#039;default_quote_valid_days&#039;);
        return false;
    }

    if (!check_num(&#039;default_delivery_required&#039;, 0))
    {
        display_error(_(&quot;Delivery Required By is not valid number.&quot;));
        set_focus(&#039;default_delivery_required&#039;);
        return false;
    }

    if (!check_num(&#039;default_receival_required&#039;, 0))
    {
        display_error(_(&quot;Receival Required By is not valid number.&quot;));
        set_focus(&#039;default_receival_required&#039;);
        return false;
    }

    if (!check_num(&#039;default_workorder_required&#039;, 0))
    {
        display_error(_(&quot;Work Order Required By After is not valid number.&quot;));
        set_focus(&#039;default_workorder_required&#039;);
        return false;
    }</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (notrinos)]]></author>
			<pubDate>Sun, 18 Nov 2018 12:48:31 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=33324#p33324</guid>
		</item>
	</channel>
</rss>
