Skip to content

Instantly share code, notes, and snippets.

@davinmsu
Created April 1, 2014 00:19
Show Gist options
  • Save davinmsu/9905233 to your computer and use it in GitHub Desktop.
Save davinmsu/9905233 to your computer and use it in GitHub Desktop.
def create_documents
order = self.order
customer_doc = order.documents.create!
contractor_doc = self.documents.create!
customer_doc.tranzactions.create! account_id: order.user.accounts.transit.id, amount: (order.price * -1)
contractor_doc.tranzactions.create! account_id: self.user.accounts.transit.id, amount: (order.price * +1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment