[tryton-debian-vcs] tryton-modules-project branch upstream updated. upstream/4.0.1-1-g594a3a3
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Mon Oct 3 14:15:16 UTC 2016
The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-project.git;a=commitdiff;h=upstream/4.0.1-1-g594a3a3
commit 594a3a3796a87735263a923a7b2d598cdfee9e44
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon Oct 3 12:52:20 2016 +0200
Adding upstream version 4.0.2.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 4b9dbcc..6713b9c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.0.2 - 2016-10-02
+* Bug fixes (see mercurial logs for details)
+
Version 4.0.1 - 2016-05-11
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 17fca7e..0f45e77 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_project
-Version: 4.0.1
+Version: 4.0.2
Summary: Tryton module with projects
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton.cfg b/tryton.cfg
index 58e4809..1a98418 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.0.1
+version=4.0.2
depends:
company_work_time
ir
diff --git a/trytond_project.egg-info/PKG-INFO b/trytond_project.egg-info/PKG-INFO
index 69448a7..31c4be5 100644
--- a/trytond_project.egg-info/PKG-INFO
+++ b/trytond_project.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-project
-Version: 4.0.1
+Version: 4.0.2
Summary: Tryton module with projects
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/work.py b/work.py
index 49bd333..05ac8f0 100644
--- a/work.py
+++ b/work.py
@@ -395,7 +395,8 @@ class Work(ModelSQL, ModelView):
super(Work, cls).delete(project_works)
if timesheet_works:
- TimesheetWork.delete(timesheet_works)
+ with Transaction().set_context(_check_access=False):
+ TimesheetWork.delete(timesheet_works)
@classmethod
def search_global(cls, text):
--
tryton-modules-project
More information about the tryton-debian-vcs
mailing list