<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — Different Color Codes for Overdue Orders]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=4724&amp;type=atom" />
	<updated>2014-02-07T05:23:26Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=4724</id>
		<entry>
			<title type="html"><![CDATA[Re: Different Color Codes for Overdue Orders]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=19217#p19217" />
			<content type="html"><![CDATA[<p>thanks Farhaj , if i get time will try to make it as per function ext.</p>]]></content>
			<author>
				<name><![CDATA[tester1]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=18290</uri>
			</author>
			<updated>2014-02-07T05:23:26Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=19217#p19217</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Different Color Codes for Overdue Orders]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=19216#p19216" />
			<content type="html"><![CDATA[<p>hmm Good.</p>]]></content>
			<author>
				<name><![CDATA[Farhaj]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=14010</uri>
			</author>
			<updated>2014-02-07T05:15:48Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=19216#p19216</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Different Color Codes for Overdue Orders]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=19207#p19207" />
			<content type="html"><![CDATA[<p>BTW which farhaj2 : 3 person listed</p>]]></content>
			<author>
				<name><![CDATA[tester1]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=18290</uri>
			</author>
			<updated>2014-02-06T08:01:21Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=19207#p19207</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Different Color Codes for Overdue Orders]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=19206#p19206" />
			<content type="html"><![CDATA[<p>Hi Farhaj,</p><p>Thanks for reply , but luck i found the solution :</p><p>What i did is :</p><p>Under includes/ui/db_pager_view.inc</p><div class="codebox"><pre><code>foreach($pager-&gt;data as $line_no =&gt; $row) {    

        $marker = $pager-&gt;marker;
        if ($marker &amp;&amp; $marker($row)) 
                    
                if($row[&quot;statusid&quot;] == A){
                start_row(&quot;class=&#039;overduebgA&#039;&quot;);    
                }elseif($row[&quot;statusid&quot;] == B){
                start_row(&quot;class=&#039;overduebgB&#039;&quot;);         
                }elseif($row[&quot;statusid&quot;] == C){
            start_row(&quot;class=&#039;overduebgC&#039;&quot;);
                }elseif($row[&quot;statusid&quot;] == D){
            start_row(&quot;class=&#039;overduebgD&#039;&quot;);
                }elseif($row[&quot;statusid&quot;] == E){
            start_row(&quot;class=&#039;overduebgE&#039;&quot;);
                }else {
                  start_row(&quot;class=&#039;$pager-&gt;marker_class&#039;&quot;);
                }</code></pre></div><p>Note : <strong> row[statusid] </strong>&nbsp; &nbsp;because its my Personal Page : ,</p><p>Also i let you know that i have made many such page which may or may not help FA .. will try to share all such page once i am done with my work .</p>]]></content>
			<author>
				<name><![CDATA[tester1]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=18290</uri>
			</author>
			<updated>2014-02-06T07:27:29Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=19206#p19206</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Different Color Codes for Overdue Orders]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=19205#p19205" />
			<content type="html"><![CDATA[<p>send me code function file, i will change it. <br />email me=farhajuddin@hotmail.com<br />skype=farhaj2</p>]]></content>
			<author>
				<name><![CDATA[Farhaj]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=14010</uri>
			</author>
			<updated>2014-02-06T07:05:05Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=19205#p19205</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Different Color Codes for Overdue Orders]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=19204#p19204" />
			<content type="html"><![CDATA[<p>Hi ,</p><p>Under&nbsp; </p><div class="quotebox"><blockquote><p>manufacturing/search_work_orders.php</p></blockquote></div><p> , Can we have multiple Color Ordering for Overdue Orders , By type or by Location as PER&nbsp; required Date&nbsp; </p><p>I have seen its PHP file :</p><p>$table-&gt;set_marker(&#039;check_overdue&#039;, _(&quot;Marked orders are overdue.&quot;));</p><p>Where check_overdue is a function , i have try writing <strong>if ..elseif .. if&nbsp; &nbsp;condition </strong> in it but its taking Only ONE ROW ( that&nbsp; FIRST IF condition as over marked color .</p><p>Kindly let me know what can be solution for it.</p>]]></content>
			<author>
				<name><![CDATA[tester1]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=18290</uri>
			</author>
			<updated>2014-02-06T05:04:41Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=19204#p19204</id>
		</entry>
</feed>
