Merge latest changes in master of http://github.com/foodcoops/foodsoft
This commit is contained in:
commit
d0ccf07bc5
20 changed files with 139 additions and 125 deletions
|
|
@ -37,8 +37,8 @@ class GroupOrder < ActiveRecord::Base
|
|||
:quantity => (goa ? goa.quantity : 0),
|
||||
:others_quantity => order_article.quantity - (goa ? goa.quantity : 0),
|
||||
:used_quantity => (goa ? goa.result(:quantity) : 0),
|
||||
:tolerance => (goa ? goa.result(:tolerance) : 0),
|
||||
:others_tolerance => order_article.tolerance - (goa ? goa.result(:tolerance) : 0),
|
||||
:tolerance => (goa ? goa.tolerance : 0),
|
||||
:others_tolerance => order_article.tolerance - (goa ? goa.tolerance : 0),
|
||||
:used_tolerance => (goa ? goa.result(:tolerance) : 0),
|
||||
:total_price => (goa ? goa.total_price : 0),
|
||||
:missing_units => order_article.missing_units,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue