2009-01-06 11:49:19 +01:00
|
|
|
# stores the quantity, tolerance and timestamp of an GroupOrderArticle
|
|
|
|
# Considers every update of an article-order, so may rows for one group_order_article ar possible.
|
|
|
|
|
2019-01-13 07:05:54 +01:00
|
|
|
class GroupOrderArticleQuantity < ApplicationRecord
|
2009-01-06 11:49:19 +01:00
|
|
|
belongs_to :group_order_article
|
2016-02-17 17:18:29 +01:00
|
|
|
|
2009-01-06 11:49:19 +01:00
|
|
|
validates_presence_of :group_order_article_id
|
|
|
|
end
|