[tryton-debian-vcs] tryton-modules-project branch upstream-1.8 created. 5661aa2bc0bf3bee3ad3302a32dab6b0bc5dfe16
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:06:39 UTC 2013
The following commit has been merged in the upstream-1.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-project.git;a=commitdiff;h=5661aa2bc0bf3bee3ad3302a32dab6b0bc5dfe16
commit 5661aa2bc0bf3bee3ad3302a32dab6b0bc5dfe16
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Oct 11 19:28:05 2011 +0200
Adding upstream version 1.8.2.
diff --git a/CHANGELOG b/CHANGELOG
index 7a14dea..6e24b18 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 1.8.2 - 2011-09-10
+* Bug fixes (see mercurial logs for details)
+
Version 1.8.1 - 2011-05-29
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index d1ddcca..28e67b5 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond_project
-Version: 1.8.1
+Version: 1.8.2
Summary: Project Module with:
- Project management
diff --git a/__tryton__.py b/__tryton__.py
index 6624ccc..dca295f 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -6,7 +6,7 @@
'name_es_CO': 'Proyectos',
'name_es_ES': 'Proyecto',
'name_fr_FR': 'Projet',
- 'version': '1.8.1',
+ 'version': '1.8.2',
'author': 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/trytond_project.egg-info/PKG-INFO b/trytond_project.egg-info/PKG-INFO
index ad32765..205b649 100644
--- a/trytond_project.egg-info/PKG-INFO
+++ b/trytond_project.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond-project
-Version: 1.8.1
+Version: 1.8.2
Summary: Project Module with:
- Project management
diff --git a/work.py b/work.py
index 0d6ba59..f900ffc 100644
--- a/work.py
+++ b/work.py
@@ -29,6 +29,14 @@ class TimesheetWork(ModelSQL, ModelView):
self.parent.context['type'] = Eval('type')
self._reset_columns()
+ def copy(self, ids, default=None):
+ if default is None:
+ default = {}
+ default = default.copy()
+ if 'timesheet_lines' not in default:
+ default['timesheet_lines'] = False
+ return super(TimesheetWork, self).copy(ids, default=default)
+
TimesheetWork()
commit 3552e5d6175f88f9cc629eab3800a966b1bfc644
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Aug 9 14:42:17 2011 +0200
Adding upstream version 1.8.1.
diff --git a/CHANGELOG b/CHANGELOG
index 505414f..7a14dea 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 1.8.1 - 2011-05-29
+* Bug fixes (see mercurial logs for details)
+
Version 1.8.0 - 2010-11-01
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index ab06914..2ff157b 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2010 Cédric Krier.
-Copyright (C) 2008-2010 B2CK SPRL.
-Copyright (C) 2009-2010 Bertrand Chenal.
+Copyright (C) 2008-2011 Cédric Krier.
+Copyright (C) 2008-2011 B2CK SPRL.
+Copyright (C) 2009-2011 Bertrand Chenal.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index d5e1603..d1ddcca 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond_project
-Version: 1.8.0
+Version: 1.8.1
Summary: Project Module with:
- Project management
diff --git a/__tryton__.py b/__tryton__.py
index d3a9cae..6624ccc 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -6,7 +6,7 @@
'name_es_CO': 'Proyectos',
'name_es_ES': 'Proyecto',
'name_fr_FR': 'Projet',
- 'version': '1.8.0',
+ 'version': '1.8.1',
'author': 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/trytond_project.egg-info/PKG-INFO b/trytond_project.egg-info/PKG-INFO
index ec09678..ad32765 100644
--- a/trytond_project.egg-info/PKG-INFO
+++ b/trytond_project.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond-project
-Version: 1.8.0
+Version: 1.8.1
Summary: Project Module with:
- Project management
diff --git a/trytond_project.egg-info/SOURCES.txt b/trytond_project.egg-info/SOURCES.txt
index fe00c05..e4bbfab 100644
--- a/trytond_project.egg-info/SOURCES.txt
+++ b/trytond_project.egg-info/SOURCES.txt
@@ -17,8 +17,6 @@ work.xml
./tests/__init__.py
./tests/test_project.py
doc/index.rst
-tests/__init__.py
-tests/test_project.py
trytond_project.egg-info/PKG-INFO
trytond_project.egg-info/SOURCES.txt
trytond_project.egg-info/dependency_links.txt
diff --git a/work.py b/work.py
index 24f0b34..0d6ba59 100644
--- a/work.py
+++ b/work.py
@@ -16,7 +16,7 @@ class TimesheetWork(ModelSQL, ModelView):
depends=['timesheet_available', 'active'],
states={
'invisible': Not(Bool(Eval('timesheet_available'))),
- 'readonly': Not(Bool(Eval('not active'))),
+ 'readonly': Not(Bool(Eval('active'))),
})
sequence = fields.Integer('Sequence')
--
tryton-modules-project
More information about the tryton-debian-vcs
mailing list