Skip to content

Instantly share code, notes, and snippets.

@lxcodes
Created October 31, 2012 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lxcodes/3989396 to your computer and use it in GitHub Desktop.
Save lxcodes/3989396 to your computer and use it in GitHub Desktop.
{
"name":"Calendar",
"unit_price":15.00,
"expense_account_id":"5072d350d57debd2b900001d",
"income_account_id":"5072d350d57debd2b900000a",
"description":"This is a test calendar item that will be sold on the online store"
}
class Item
include Mongoid::Document
include Mongoid::Timestamps
field :name, type: String
field :active, type: Boolean, default: true
field :desc, type: String
field :unit_price, type: Money
has_one :expense_account, class_name: "Account"
has_one :income_account, class_name: "Account"
validates :expense_account, presence: true
validates :income_account, presence: true
end
class ItemsController < ApplicationController
skip_before_filter :verify_authenticity_token
before_filter :authorize
respond_to :json, :xml
def create
@item = @current_user.items.build(params[:item])
@item.unit_price = Money.parse(params[:item][:unit_price])
@item.save
end
end
@lxcodes
Copy link
Author

lxcodes commented Oct 31, 2012

In order to fix this -- I needed to reverse the relations between items and accounts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment