Added production patch to avoid cost check

This commit is contained in:
Guillem Barba 2014-01-30 10:05:51 +01:00
parent 48f153555a
commit aab6632ab4
2 changed files with 17 additions and 0 deletions

16
issue136_416.diff Normal file
View File

@ -0,0 +1,16 @@
Index: production.py
===================================================================
--- ./modules/production/production.py
+++ ./modules/production/production.py
@@ -441,6 +441,9 @@
production.check_cost()
def check_cost(self):
+ # avoid this check because it could be little differences because of
+ # rounding problems
+ return
if self.state != 'done':
return
cost_price = Decimal(0)

1
series
View File

@ -1,3 +1,4 @@
issue136_416.diff
issue971002_217001.diff
#issue2341002_1_10001.diff
issue2311002_40001.diff