[tryton-debian-vcs] tryton-modules-sale branch upstream-3.0 updated. upstream/3.0.4-1-g1b71467
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sat Apr 9 18:55:06 UTC 2016
The following commit has been merged in the upstream-3.0 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-sale.git;a=commitdiff;h=upstream/3.0.4-1-g1b71467
commit 1b71467f1579776c84ee32c92741ade58037fd9a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Apr 9 19:45:12 2016 +0200
Adding upstream version 3.0.5.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index bf9392b..36c7771 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.0.5 - 2016-04-06
+* Bug fixes (see mercurial logs for details)
+
Version 3.0.4 - 2015-12-22
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index 3a28212..48f96af 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2015 Cédric Krier.
+Copyright (C) 2008-2016 Cédric Krier.
Copyright (C) 2008-2013 Bertrand Chenal.
-Copyright (C) 2008-2015 B2CK SPRL.
+Copyright (C) 2008-2016 B2CK SPRL.
Copyright (C) 2004-2008 Tiny SPRL.
This program is free software: you can redistribute it and/or modify
diff --git a/PKG-INFO b/PKG-INFO
index 5ab438e..8a2fe43 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_sale
-Version: 3.0.4
+Version: 3.0.5
Summary: Tryton module for sale
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/sale.py b/sale.py
index bf8e93a..5c97516 100644
--- a/sale.py
+++ b/sale.py
@@ -1082,7 +1082,7 @@ class SaleLine(ModelSQL, ModelView):
def get_move_done(self, name):
Uom = Pool().get('product.uom')
done = True
- if not self.product:
+ if self.type != 'line' or not self.product:
return True
if self.product.type == 'service':
return True
diff --git a/tryton.cfg b/tryton.cfg
index f035df5..753e99b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.0.4
+version=3.0.5
depends:
account
account_invoice
diff --git a/trytond_sale.egg-info/PKG-INFO b/trytond_sale.egg-info/PKG-INFO
index d6937c1..0ed9f5a 100644
--- a/trytond_sale.egg-info/PKG-INFO
+++ b/trytond_sale.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-sale
-Version: 3.0.4
+Version: 3.0.5
Summary: Tryton module for sale
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_sale.egg-info/requires.txt b/trytond_sale.egg-info/requires.txt
index bc38aef..c3acc18 100644
--- a/trytond_sale.egg-info/requires.txt
+++ b/trytond_sale.egg-info/requires.txt
@@ -7,4 +7,4 @@ trytond_currency >= 3.0, < 3.1
trytond_party >= 3.0, < 3.1
trytond_product >= 3.0, < 3.1
trytond_stock >= 3.0, < 3.1
-trytond >= 3.0, < 3.1
\ No newline at end of file
+trytond >= 3.0, < 3.1
--
tryton-modules-sale
More information about the tryton-debian-vcs
mailing list