[tryton-debian-vcs] tryton-modules-project branch upstream-3.6 updated. upstream/3.6.1-1-gb4b234d

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-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-project.git;a=commitdiff;h=upstream/3.6.1-1-gb4b234d

commit b4b234df2fc58a833026e4de6b758de06b142ebf
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon Oct 3 12:54:33 2016 +0200

    Adding upstream version 3.6.2.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index 8dd6a17..a081608 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.2 - 2016-10-02
+* Bug fixes (see mercurial logs for details)
+
 Version 3.6.1 - 2015-12-22
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index dde6c87..60f26e4 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2008-2015 Cédric Krier.
-Copyright (C) 2008-2015 B2CK SPRL.
+Copyright (C) 2008-2016 Cédric Krier.
+Copyright (C) 2008-2016 B2CK SPRL.
 Copyright (C) 2009-2013 Bertrand Chenal.
 
 This program is free software: you can redistribute it and/or modify
diff --git a/PKG-INFO b/PKG-INFO
index d574da0..26dae22 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_project
-Version: 3.6.1
+Version: 3.6.2
 Summary: Tryton module with projects
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/tryton.cfg b/tryton.cfg
index a0414aa..0c1343d 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.6.1
+version=3.6.2
 depends:
     company_work_time
     ir
diff --git a/trytond_project.egg-info/PKG-INFO b/trytond_project.egg-info/PKG-INFO
index a5b2578..cc56f95 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: 3.6.1
+Version: 3.6.2
 Summary: Tryton module with projects
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/trytond_project.egg-info/requires.txt b/trytond_project.egg-info/requires.txt
index ff48034..8fa4cb5 100644
--- a/trytond_project.egg-info/requires.txt
+++ b/trytond_project.egg-info/requires.txt
@@ -2,4 +2,4 @@ python-sql >= 0.4
 trytond_company_work_time >= 3.6, < 3.7
 trytond_party >= 3.6, < 3.7
 trytond_timesheet >= 3.6, < 3.7
-trytond >= 3.6, < 3.7
\ No newline at end of file
+trytond >= 3.6, < 3.7
diff --git a/work.py b/work.py
index 4461333..5800a7d 100644
--- a/work.py
+++ b/work.py
@@ -364,7 +364,9 @@ class Work(ModelSQL, ModelView):
 
         super(Work, cls).delete(project_works)
 
-        TimesheetWork.delete(timesheet_works)
+        if 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