add receive screen, quantities for model, redistribution

This commit is contained in:
wvengen 2013-11-25 13:48:54 +01:00
parent ed9a6cca39
commit bd1b932775
17 changed files with 365 additions and 49 deletions

View file

@ -0,0 +1,6 @@
class AddQuantitiesToOrderArticle < ActiveRecord::Migration
def change
add_column :order_articles, :units_billed, :integer
add_column :order_articles, :units_received, :integer
end
end