<?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: Double Entry Accounting in Rails</title>
	<atom:link href="http://www.cuppadev.co.uk/dev/double-entry-accounting-in-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cuppadev.co.uk/dev/double-entry-accounting-in-rails/</link>
	<description>Cuppalicious coding!</description>
	<lastBuildDate>Thu, 12 Aug 2010 13:37:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Artificial</title>
		<link>http://www.cuppadev.co.uk/dev/double-entry-accounting-in-rails/comment-page-1/#comment-1132</link>
		<dc:creator>Artificial</dc:creator>
		<pubDate>Sat, 15 Nov 2008 10:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://crm.cuppadev.co.uk/?p=133#comment-1132</guid>
		<description>the approach i liked the best was the one mentioned in the article. It made the most sense, and wasn’t needlessly complicated. So i decided to implement it</description>
		<content:encoded><![CDATA[<p>the approach i liked the best was the one mentioned in the article. It made the most sense, and wasn’t needlessly complicated. So i decided to implement it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ratio analysis</title>
		<link>http://www.cuppadev.co.uk/dev/double-entry-accounting-in-rails/comment-page-1/#comment-949</link>
		<dc:creator>ratio analysis</dc:creator>
		<pubDate>Sat, 15 Nov 2008 01:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://crm.cuppadev.co.uk/?p=133#comment-949</guid>
		<description>the approach i liked the best was the one mentioned in the article. It made the most sense, and wasn’t needlessly complicated. So i decided to implement it</description>
		<content:encoded><![CDATA[<p>the approach i liked the best was the one mentioned in the article. It made the most sense, and wasn’t needlessly complicated. So i decided to implement it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jamesu</title>
		<link>http://www.cuppadev.co.uk/dev/double-entry-accounting-in-rails/comment-page-1/#comment-942</link>
		<dc:creator>jamesu</dc:creator>
		<pubDate>Fri, 17 Oct 2008 17:32:11 +0000</pubDate>
		<guid isPermaLink="false">http://crm.cuppadev.co.uk/?p=133#comment-942</guid>
		<description>Haha</description>
		<content:encoded><![CDATA[<p>Haha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steveluscher</title>
		<link>http://www.cuppadev.co.uk/dev/double-entry-accounting-in-rails/comment-page-1/#comment-941</link>
		<dc:creator>steveluscher</dc:creator>
		<pubDate>Fri, 17 Oct 2008 17:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://crm.cuppadev.co.uk/?p=133#comment-941</guid>
		<description>I&#039;m rather looking forward to the post &quot;Double Entry Accounting with Invoicing in Rails.&quot;</description>
		<content:encoded><![CDATA[<p>I&#39;m rather looking forward to the post &#8220;Double Entry Accounting with Invoicing in Rails.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Urquhart</title>
		<link>http://www.cuppadev.co.uk/dev/double-entry-accounting-in-rails/comment-page-1/#comment-138</link>
		<dc:creator>James Urquhart</dc:creator>
		<pubDate>Thu, 26 Jun 2008 21:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://crm.cuppadev.co.uk/?p=133#comment-138</guid>
		<description>John,

A Journal binds together several Posting&#039;s. Typically you&#039;d have one per full account transaction - e.g. DEBIT Bank 100, CREDIT Revenue 100 could be linked to a single journal of the type &quot;Deposit&quot;. In theory it makes it easy to track complex transactions which consist of transfers to/from multiple accounts.

The linked article does indeed make Journals a bit confusing by referring to them by letters (a,b,c,d). Instead you should just refer to them by key number (1,2,3,4) and the whole thing becomes much more clearer.

My above example could be recorded in the POSTINGS table as follows (assuming Bank == 100 and Revenue == 50):

Id,Account Id,Journal Id,Asset Type,Amount
1,100,1,£,100
2,50,1,£,-100

100 + -100 == 0, thus satisfying the requirements in the article.

Hope that helps. :)


</description>
		<content:encoded><![CDATA[<p>John,</p>
<p>A Journal binds together several Posting&#8217;s. Typically you&#8217;d have one per full account transaction &#8211; e.g. DEBIT Bank 100, CREDIT Revenue 100 could be linked to a single journal of the type &#8220;Deposit&#8221;. In theory it makes it easy to track complex transactions which consist of transfers to/from multiple accounts.</p>
<p>The linked article does indeed make Journals a bit confusing by referring to them by letters (a,b,c,d). Instead you should just refer to them by key number (1,2,3,4) and the whole thing becomes much more clearer.</p>
<p>My above example could be recorded in the POSTINGS table as follows (assuming Bank == 100 and Revenue == 50):</p>
<p>Id,Account Id,Journal Id,Asset Type,Amount<br />
1,100,1,£,100<br />
2,50,1,£,-100</p>
<p>100 + -100 == 0, thus satisfying the requirements in the article.</p>
<p>Hope that helps. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://www.cuppadev.co.uk/dev/double-entry-accounting-in-rails/comment-page-1/#comment-137</link>
		<dc:creator>john</dc:creator>
		<pubDate>Wed, 18 Jun 2008 05:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://crm.cuppadev.co.uk/?p=133#comment-137</guid>
		<description>What I don&#039;t understand is the journal table.  It looks like a simple lookup table.  Why is so much ephasis placed on it in the article you reference (first one.)  It says:

I.e. all POSTING entries associated with the JOURNAL entry must be successfully completed or none must be completed. The numerical sum of all POSTING entries associated with a JOURNAL entry must also equal zero

What&#039;s that mean?  If you look at the example table entries is just has a, b, c, d for the type.

Thanks for the article.
</description>
		<content:encoded><![CDATA[<p>What I don&#8217;t understand is the journal table.  It looks like a simple lookup table.  Why is so much ephasis placed on it in the article you reference (first one.)  It says:</p>
<p>I.e. all POSTING entries associated with the JOURNAL entry must be successfully completed or none must be completed. The numerical sum of all POSTING entries associated with a JOURNAL entry must also equal zero</p>
<p>What&#8217;s that mean?  If you look at the example table entries is just has a, b, c, d for the type.</p>
<p>Thanks for the article.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
