Stockor is a ERP system that contains all the tools you'll need to run a small to medium sized business on the internet.
The core gem records business activity for a company to include:
- Invoicing
- Sales Orders
- Purchase Orders
- SKUs
- Multi-Location Inventory management
- Customers
- Vendors
- General Ledger chart of accounts
Read more at stockor.org
Add this line to your application's Gemfile:
gem 'skr-core'
And then execute:
$ bundle
Or install it yourself as:
$ gem install skr-core
require 'skr/core'
entry = GlManualEntry.create({ notes: 'Pay Rent' })
transaction = GlTransaction.new({ source: entry, :amount=> 1400.00 })
transaction.credit.account = GlAccount.find_by_number( '6600' )
transaction.debit.account = GlAccount.find_by_number( '1000' )
transaction.save
The standard instructions are always good:
- Fork it ( http://github.com/argosity/skr-core/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Really though, if you've got a feature you've added we're glad to work with you. Get us the code however you're able to and we can figure it out.