<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Accounts and expense module for MyClientBase</title>
	<atom:link href="http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/feed/" rel="self" type="application/rss+xml" />
	<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/</link>
	<description>We help you to design the web!</description>
	<lastBuildDate>Sun, 05 Feb 2012 12:58:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: silverblood</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-458</link>
		<dc:creator>silverblood</dc:creator>
		<pubDate>Tue, 24 May 2011 00:54:30 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-458</guid>
		<description>We need more reports? Where is the beef?</description>
		<content:encoded><![CDATA[<p>We need more reports? Where is the beef?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-433</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sun, 03 Apr 2011 04:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-433</guid>
		<description>I&#039;m testing out MyClientBase and also this module, but I belive there are some incompatiblity with MyClientBase 0.9.3 and module version 1.3.  Getting a whole bunch of PHP errors.</description>
		<content:encoded><![CDATA[<p>I&#8217;m testing out MyClientBase and also this module, but I belive there are some incompatiblity with MyClientBase 0.9.3 and module version 1.3.  Getting a whole bunch of PHP errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Creswell</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-428</link>
		<dc:creator>Adam Creswell</dc:creator>
		<pubDate>Mon, 28 Mar 2011 14:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-428</guid>
		<description>I installed MCB about a week ago and thoroughly enjoy it.  After discovering your module, I was very impressed with how much more it allowed me to track.

One question, though:  I upgraded to the newest version of MCB this morning and ever since, am receiving a slew of PHP errors.  Any hope for an updated version?

Thanks, again for an awesome addition to a great interface.</description>
		<content:encoded><![CDATA[<p>I installed MCB about a week ago and thoroughly enjoy it.  After discovering your module, I was very impressed with how much more it allowed me to track.</p>
<p>One question, though:  I upgraded to the newest version of MCB this morning and ever since, am receiving a slew of PHP errors.  Any hope for an updated version?</p>
<p>Thanks, again for an awesome addition to a great interface.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alex</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-426</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Tue, 22 Mar 2011 20:22:47 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-426</guid>
		<description>Hi everybody

As descript by Hardeep Singh, just replace some fieldnames in the accounts.php file: system/myclientbase/modules_custom/accounts/models/mdl_accounts.php

Please replace the whole text by this (make a copy before and don&#039;t copy the number-sign):
######################################
table_name = &#039;mcb_expenses&#039;;

		/* Define the primary key of the table. */

		$this-&gt;primary_key = &#039;mcb_expenses.expense_id&#039;;

		/* Define SQL_CALC_FOUND_ROWS * as a minimum for pagination. */

		$this-&gt;select_fields = &quot;
		SQL_CALC_FOUND_ROWS mcb_expenses.*&quot;;

		$this-&gt;order_by = &#039;mcb_expenses.expense_date, mcb_expenses.expense_id DESC&#039;;

	}

	function validate() {
		$this-&gt;form_validation-&gt;set_rules(&#039;expense_date&#039;, $this-&gt;lang-&gt;line(&#039;expense_date&#039;), &#039;required&#039;);
		$this-&gt;form_validation-&gt;set_rules(&#039;amount&#039;, $this-&gt;lang-&gt;line(&#039;amount&#039;), &#039;required&#039;);
		$this-&gt;form_validation-&gt;set_rules(&#039;expense_for&#039;, $this-&gt;lang-&gt;line(&#039;expense_for&#039;), &#039;required&#039;);

		return parent::validate();

	}

	function save() {

		/* Prepare the default $db_array */

		$db_array = parent::db_array();

		if (isset($db_array[&#039;expense_date&#039;]) and $db_array[&#039;expense_date&#039;]) {

			$db_array[&#039;expense_date&#039;] = strtotime(standardize_date($db_array[&#039;expense_date&#039;]));
		}

		

		parent::save($db_array, uri_assoc(&#039;expense_id&#039;, 3));

	}

	function prep_validation($key) {

		/* First prepare the default validation */

		parent::prep_validation($key);

		if (!$_POST) {

			if ($this-&gt;due_date) {

				/* Convert to a human readable date if the unix timestamp exists. */

				$this-&gt;due_date = format_date($this-&gt;due_date);

			}

			if ($this-&gt;complete_date) {

				/* Convert to a human readable date if the unix timestamp exists. */

				$this-&gt;complete_date = format_date($this-&gt;complete_date);

			}

			if ($this-&gt;expense_date) {

				/* Convert to a human readable date if the unix timestamp exists. */

				$this-&gt;expense_date = format_date($this-&gt;expense_date);

			}

		}

	}

	function delete($params) {

		/* Run the standard delete function. */

		parent::delete($params);

		/*
		 * And delete records from mcb_expenses_invoices as well.
		 * This does NOT delete the actual invoices.
		*/
		

	}
	
	function report(){
		
	}

	function total_payment($from_date=&#039;&#039;,$to_date=&#039;&#039;){
		
		$this-&gt;db-&gt;select_sum(&#039;payment_amount&#039;);		
		if($from_date!=&#039;&#039;)	$this-&gt;db-&gt;where(&#039;payment_date &gt;=&#039;,$from_date);
		
		if($to_date!=&#039;&#039;)	$this-&gt;db-&gt;where(&#039;payment_date db-&gt;get(&#039;mcb_payments&#039;); 
		$row = $query-&gt;row(); 
		return $row-&gt;payment_amount;
	}
	
	
	
	function total_expense($from_date=&#039;&#039;,$to_date=&#039;&#039;){
	
		$this-&gt;db-&gt;select_sum(&#039;amount&#039;); 
		
		if($from_date!=&#039;&#039;)	$this-&gt;db-&gt;where(&#039;expense_date &gt;=&#039;,$from_date);		
		if($to_date!=&#039;&#039;)	$this-&gt;db-&gt;where(&#039;expense_date db-&gt;get(&#039;mcb_expenses&#039;); 
		$row = $query-&gt;row(); 
		return &#039;&#039;.$row-&gt;amount;
	}
	
	function total_expanse5($from_date,$to_date){

		$this-&gt;db-&gt;select_sum(&#039;amount&#039;); 
		if(($from_date!=FALSE)&amp;&amp;($to_date!=FALSE))
		{
		
			$this-&gt;db-&gt;where(&#039;expense_date &gt;=&#039;,strtotime(standardize_date($from_date)));
			$this-&gt;db-&gt;where(&#039;expense_date db-&gt;get(&#039;mcb_expenses&#039;); 
		$row = $query-&gt;row(); 
		return &#039;&#039;.$row-&gt;amount;
	}
	
	
	
	function total_pending(){
		$this-&gt;db-&gt;select_sum(&#039;invoice_balance_amount&#039;); 		
		$query = $this-&gt;db-&gt;get(&#039;invoice_balance&#039;); 
		$row = $query-&gt;row();
		return $row-&gt;invoice_balance_amount; 
	}
	
	function balance($from_date,$to_date){
		$amount = $this-&gt;total_payment($from_date,$to_date) - $this-&gt;total_expanse($from_date,$to_date);
		return $amount;
	}
	
	
	function custome_total_pending($from_date=&#039;&#039;,$to_date=&#039;&#039;){
		$amount_balance=0;
		$this-&gt;db-&gt;select(&#039;invoice_id&#039;); 	
		//if($from_date!=&#039;&#039;)	$this-&gt;db-&gt;where(&#039;invoice_date_entered  &gt;=&#039;,strtotime(standardize_date($from_date)));
		 if($to_date!=&#039;&#039;)	$this-&gt;db-&gt;where(&#039;invoice_date_entered  db-&gt;get(&#039;mcb_invoices&#039;); 		
		

		foreach ($query-&gt;result() as $row)
		{
			 
			$this-&gt;db-&gt;select(&#039;invoice_balance_amount&#039;); 
			$this-&gt;db-&gt;where(&#039;invoice_id&#039;,$row-&gt;invoice_id);	
			$query2 = $this-&gt;db-&gt;get(&#039;mcb_invoice_amounts&#039;); 
			$row2 = $query2-&gt;row();
			$amount_balance=$amount_balance+$row2-&gt;invoice_balance_amount ;	 			 
			 
		}
		
		return $amount_balance;
	}
	
	

}

?&gt;
################################

Hope it helps some of you with this great extension (thank you Hardeep)!!!

@hedge: please don&#039;t abuse this forum for such destructive sh.. MCB is a great free tool and nobody cares about your cynicism.

Hope it helps
Alex</description>
		<content:encoded><![CDATA[<p>Hi everybody</p>
<p>As descript by Hardeep Singh, just replace some fieldnames in the accounts.php file: system/myclientbase/modules_custom/accounts/models/mdl_accounts.php</p>
<p>Please replace the whole text by this (make a copy before and don&#8217;t copy the number-sign):<br />
######################################<br />
table_name = &#8216;mcb_expenses&#8217;;</p>
<p>		/* Define the primary key of the table. */</p>
<p>		$this-&gt;primary_key = &#8216;mcb_expenses.expense_id&#8217;;</p>
<p>		/* Define SQL_CALC_FOUND_ROWS * as a minimum for pagination. */</p>
<p>		$this-&gt;select_fields = &#8221;<br />
		SQL_CALC_FOUND_ROWS mcb_expenses.*&#8221;;</p>
<p>		$this-&gt;order_by = &#8216;mcb_expenses.expense_date, mcb_expenses.expense_id DESC&#8217;;</p>
<p>	}</p>
<p>	function validate() {<br />
		$this-&gt;form_validation-&gt;set_rules(&#8216;expense_date&#8217;, $this-&gt;lang-&gt;line(&#8216;expense_date&#8217;), &#8216;required&#8217;);<br />
		$this-&gt;form_validation-&gt;set_rules(&#8216;amount&#8217;, $this-&gt;lang-&gt;line(&#8216;amount&#8217;), &#8216;required&#8217;);<br />
		$this-&gt;form_validation-&gt;set_rules(&#8216;expense_for&#8217;, $this-&gt;lang-&gt;line(&#8216;expense_for&#8217;), &#8216;required&#8217;);</p>
<p>		return parent::validate();</p>
<p>	}</p>
<p>	function save() {</p>
<p>		/* Prepare the default $db_array */</p>
<p>		$db_array = parent::db_array();</p>
<p>		if (isset($db_array['expense_date']) and $db_array['expense_date']) {</p>
<p>			$db_array['expense_date'] = strtotime(standardize_date($db_array['expense_date']));<br />
		}</p>
<p>		parent::save($db_array, uri_assoc(&#8216;expense_id&#8217;, 3));</p>
<p>	}</p>
<p>	function prep_validation($key) {</p>
<p>		/* First prepare the default validation */</p>
<p>		parent::prep_validation($key);</p>
<p>		if (!$_POST) {</p>
<p>			if ($this-&gt;due_date) {</p>
<p>				/* Convert to a human readable date if the unix timestamp exists. */</p>
<p>				$this-&gt;due_date = format_date($this-&gt;due_date);</p>
<p>			}</p>
<p>			if ($this-&gt;complete_date) {</p>
<p>				/* Convert to a human readable date if the unix timestamp exists. */</p>
<p>				$this-&gt;complete_date = format_date($this-&gt;complete_date);</p>
<p>			}</p>
<p>			if ($this-&gt;expense_date) {</p>
<p>				/* Convert to a human readable date if the unix timestamp exists. */</p>
<p>				$this-&gt;expense_date = format_date($this-&gt;expense_date);</p>
<p>			}</p>
<p>		}</p>
<p>	}</p>
<p>	function delete($params) {</p>
<p>		/* Run the standard delete function. */</p>
<p>		parent::delete($params);</p>
<p>		/*<br />
		 * And delete records from mcb_expenses_invoices as well.<br />
		 * This does NOT delete the actual invoices.<br />
		*/</p>
<p>	}</p>
<p>	function report(){</p>
<p>	}</p>
<p>	function total_payment($from_date=&#8221;,$to_date=&#8221;){</p>
<p>		$this-&gt;db-&gt;select_sum(&#8216;payment_amount&#8217;);<br />
		if($from_date!=&#8221;)	$this-&gt;db-&gt;where(&#8216;payment_date &gt;=&#8217;,$from_date);</p>
<p>		if($to_date!=&#8221;)	$this-&gt;db-&gt;where(&#8216;payment_date db-&gt;get(&#8216;mcb_payments&#8217;);<br />
		$row = $query-&gt;row();<br />
		return $row-&gt;payment_amount;<br />
	}</p>
<p>	function total_expense($from_date=&#8221;,$to_date=&#8221;){</p>
<p>		$this-&gt;db-&gt;select_sum(&#8216;amount&#8217;); </p>
<p>		if($from_date!=&#8221;)	$this-&gt;db-&gt;where(&#8216;expense_date &gt;=&#8217;,$from_date);<br />
		if($to_date!=&#8221;)	$this-&gt;db-&gt;where(&#8216;expense_date db-&gt;get(&#8216;mcb_expenses&#8217;);<br />
		$row = $query-&gt;row();<br />
		return &#8221;.$row-&gt;amount;<br />
	}</p>
<p>	function total_expanse5($from_date,$to_date){</p>
<p>		$this-&gt;db-&gt;select_sum(&#8216;amount&#8217;);<br />
		if(($from_date!=FALSE)&amp;&amp;($to_date!=FALSE))<br />
		{</p>
<p>			$this-&gt;db-&gt;where(&#8216;expense_date &gt;=&#8217;,strtotime(standardize_date($from_date)));<br />
			$this-&gt;db-&gt;where(&#8216;expense_date db-&gt;get(&#8216;mcb_expenses&#8217;);<br />
		$row = $query-&gt;row();<br />
		return &#8221;.$row-&gt;amount;<br />
	}</p>
<p>	function total_pending(){<br />
		$this-&gt;db-&gt;select_sum(&#8216;invoice_balance_amount&#8217;);<br />
		$query = $this-&gt;db-&gt;get(&#8216;invoice_balance&#8217;);<br />
		$row = $query-&gt;row();<br />
		return $row-&gt;invoice_balance_amount;<br />
	}</p>
<p>	function balance($from_date,$to_date){<br />
		$amount = $this-&gt;total_payment($from_date,$to_date) &#8211; $this-&gt;total_expanse($from_date,$to_date);<br />
		return $amount;<br />
	}</p>
<p>	function custome_total_pending($from_date=&#8221;,$to_date=&#8221;){<br />
		$amount_balance=0;<br />
		$this-&gt;db-&gt;select(&#8216;invoice_id&#8217;);<br />
		//if($from_date!=&#8221;)	$this-&gt;db-&gt;where(&#8216;invoice_date_entered  &gt;=&#8217;,strtotime(standardize_date($from_date)));<br />
		 if($to_date!=&#8221;)	$this-&gt;db-&gt;where(&#8216;invoice_date_entered  db-&gt;get(&#8216;mcb_invoices&#8217;); 		</p>
<p>		foreach ($query-&gt;result() as $row)<br />
		{</p>
<p>			$this-&gt;db-&gt;select(&#8216;invoice_balance_amount&#8217;);<br />
			$this-&gt;db-&gt;where(&#8216;invoice_id&#8217;,$row-&gt;invoice_id);<br />
			$query2 = $this-&gt;db-&gt;get(&#8216;mcb_invoice_amounts&#8217;);<br />
			$row2 = $query2-&gt;row();<br />
			$amount_balance=$amount_balance+$row2-&gt;invoice_balance_amount ;	 			 </p>
<p>		}</p>
<p>		return $amount_balance;<br />
	}</p>
<p>}</p>
<p>?&gt;<br />
################################</p>
<p>Hope it helps some of you with this great extension (thank you Hardeep)!!!</p>
<p>@hedge: please don&#8217;t abuse this forum for such destructive sh.. MCB is a great free tool and nobody cares about your cynicism.</p>
<p>Hope it helps<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hedge</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-424</link>
		<dc:creator>hedge</dc:creator>
		<pubDate>Sat, 12 Mar 2011 17:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-424</guid>
		<description>MyClientBase is a total stuff-up.

It causes your database to crash
It causes shuffling your invoices around, distributing bits and pieces among clients
It gives you PHP error results all over your screen ... and
It gives you arrogant replies like &quot;that must have been an unpleasant experience to you and you client, huh?&quot; - 
form its &quot;looser&quot; creator &quot;Jesse&quot; ( a self-proclaimed Zweistein ... double as smart as Einstein)

You want to make sure to stuff up your business, too? Then use his bug-driven software! 
It&#039;s free!
;-)</description>
		<content:encoded><![CDATA[<p>MyClientBase is a total stuff-up.</p>
<p>It causes your database to crash<br />
It causes shuffling your invoices around, distributing bits and pieces among clients<br />
It gives you PHP error results all over your screen &#8230; and<br />
It gives you arrogant replies like &#8220;that must have been an unpleasant experience to you and you client, huh?&#8221; &#8211;<br />
form its &#8220;looser&#8221; creator &#8220;Jesse&#8221; ( a self-proclaimed Zweistein &#8230; double as smart as Einstein)</p>
<p>You want to make sure to stuff up your business, too? Then use his bug-driven software!<br />
It&#8217;s free!<br />
 <img src='http://help2design.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hardeep Singh</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-420</link>
		<dc:creator>Hardeep Singh</dc:creator>
		<pubDate>Mon, 07 Feb 2011 09:50:50 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-420</guid>
		<description>Hello,

It is due to change in database schema in the latest release of myclientbase that this module is not working. 

If you are technical, go in the modules&#039; model and change the column names. It will work as expected.

You would also have to fix the names &amp; links of the module as lang file doesn&#039;t have all the values.

--------------------------
To Creator,

This is lovely module to have. But as the name suggested, it should have both accounts &amp; expenses but it only has expenses. 

Please share the accounts code too (even if it is broken) I might be able to fix it.

Thanks

Hardeep</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>It is due to change in database schema in the latest release of myclientbase that this module is not working. </p>
<p>If you are technical, go in the modules&#8217; model and change the column names. It will work as expected.</p>
<p>You would also have to fix the names &amp; links of the module as lang file doesn&#8217;t have all the values.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
To Creator,</p>
<p>This is lovely module to have. But as the name suggested, it should have both accounts &amp; expenses but it only has expenses. </p>
<p>Please share the accounts code too (even if it is broken) I might be able to fix it.</p>
<p>Thanks</p>
<p>Hardeep</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-419</link>
		<dc:creator>Mitch</dc:creator>
		<pubDate>Fri, 04 Feb 2011 22:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-419</guid>
		<description>Hello and thanks for sharing your module.

Does it work with MCB 0.9 version? I got only database errors and distorted menu. Reports doesn&#039;t seem to come up at all.

Thanks</description>
		<content:encoded><![CDATA[<p>Hello and thanks for sharing your module.</p>
<p>Does it work with MCB 0.9 version? I got only database errors and distorted menu. Reports doesn&#8217;t seem to come up at all.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: haroon latif</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-410</link>
		<dc:creator>haroon latif</dc:creator>
		<pubDate>Fri, 03 Dec 2010 11:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-410</guid>
		<description>Hi,
    it is really useful plugin. I am hving bit of problem with report section.. I am using MCB 0.8.8. it is not showing report and I think so display is not right either. can you have a look and suggest some solution for this. it will be much appriciated. 

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
    it is really useful plugin. I am hving bit of problem with report section.. I am using MCB 0.8.8. it is not showing report and I think so display is not right either. can you have a look and suggest some solution for this. it will be much appriciated. </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaime</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-409</link>
		<dc:creator>Jaime</dc:creator>
		<pubDate>Sat, 27 Nov 2010 03:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-409</guid>
		<description>Hi,

i just installed mycb, and the expenses module.

i got this:
A PHP Error was encountered

Severity: Warning

Message: date() [function.date]: It is not safe to rely on the system&#039;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected &#039;America/Sao_Paulo&#039; for &#039;BRST/-2.0/DST&#039; instead

Filename: helpers/mcb_date_helper.php

Line Number: 9


well, congrats all envolved, seems to be a really nice initiative.

i have some question, like internationalization and future features (possibility of import .ofx files), , but i need dig a little to have a better feel, anyway seems really a nice.

Best regards,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>i just installed mycb, and the expenses module.</p>
<p>i got this:<br />
A PHP Error was encountered</p>
<p>Severity: Warning</p>
<p>Message: date() [function.date]: It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected &#8216;America/Sao_Paulo&#8217; for &#8216;BRST/-2.0/DST&#8217; instead</p>
<p>Filename: helpers/mcb_date_helper.php</p>
<p>Line Number: 9</p>
<p>well, congrats all envolved, seems to be a really nice initiative.</p>
<p>i have some question, like internationalization and future features (possibility of import .ofx files), , but i need dig a little to have a better feel, anyway seems really a nice.</p>
<p>Best regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaffar Mohamed</title>
		<link>http://help2design.com/downloads/accounts-and-expense-module-for-myclientbase/comment-page-1/#comment-379</link>
		<dc:creator>Jaffar Mohamed</dc:creator>
		<pubDate>Thu, 28 Oct 2010 19:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://help2design.com/?p=131#comment-379</guid>
		<description>Just installed on MCB Ver 0.8.7. When you pick a date range under the &quot;Reports View&quot; the &quot;Total Pending Payment&quot; is zero despite the fact that there are some pending payments. Is this a bug or there is something that i am missing?</description>
		<content:encoded><![CDATA[<p>Just installed on MCB Ver 0.8.7. When you pick a date range under the &#8220;Reports View&#8221; the &#8220;Total Pending Payment&#8221; is zero despite the fact that there are some pending payments. Is this a bug or there is something that i am missing?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

