[tryton-debian-vcs] tryton-modules-account-asset branch debian updated. debian/4.4.0-2-2-g8f6cd68
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Aug 17 12:22:20 UTC 2017
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-asset.git;a=commitdiff;h=debian/4.4.0-2-2-g8f6cd68
commit 8f6cd68632f7345513c63b9b061ad22f6d29c220
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Aug 17 12:30:52 2017 +0200
Releasing debian version 4.4.1-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 2c11645..7645dae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-account-asset (4.4.1-1) unstable; urgency=medium
+
+ * Merging upstream version 4.4.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Thu, 17 Aug 2017 12:30:52 +0200
+
tryton-modules-account-asset (4.4.0-2) unstable; urgency=medium
* Change the maintainer address to tryton-debian at lists.alioth.debian.org
commit c31a041c78614601685d58a98f2a09af2ce38696
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Aug 17 12:30:52 2017 +0200
Merging upstream version 4.4.1.
diff --git a/CHANGELOG b/CHANGELOG
index a910ef5..231a8d2 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.4.1 - 2017-08-08
+* Bug fixes (see mercurial logs for details)
+
Version 4.4.0 - 2017-05-01
* Bug fixes (see mercurial logs for details)
* Change depreciation_duration into Integer on the template
diff --git a/PKG-INFO b/PKG-INFO
index 698ef3c..5172340 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_asset
-Version: 4.4.0
+Version: 4.4.1
Summary: Tryton module for assets management
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/product.py b/product.py
index f6b538f..f006ffa 100644
--- a/product.py
+++ b/product.py
@@ -106,13 +106,13 @@ class Template:
],
states={
'readonly': ~Eval('active', True),
- 'required': ~Eval('account_category') & Eval('depreciable'),
+ 'required': ~Eval('accounts_category') & Eval('depreciable'),
'invisible': (~Eval('depreciable')
| (Eval('type', '') != 'assets')
| ~Eval('context', {}).get('company')
- | Eval('account_category')),
+ | Eval('accounts_category')),
},
- depends=['active', 'depreciable', 'type', 'account_category']))
+ depends=['active', 'depreciable', 'type', 'accounts_category']))
account_depreciation_used = MissingFunction(
fields.Many2One('account.account', 'Account Depreciation Used'),
'missing_account', 'get_account')
@@ -124,13 +124,13 @@ class Template:
],
states={
'readonly': ~Eval('active', True),
- 'required': ~Eval('account_category') & Eval('depreciable'),
+ 'required': ~Eval('accounts_category') & Eval('depreciable'),
'invisible': (~Eval('depreciable')
| (Eval('type', '') != 'assets')
| ~Eval('context', {}).get('company')
- | Eval('account_category')),
+ | Eval('accounts_category')),
},
- depends=['active', 'depreciable', 'type', 'account_category']))
+ depends=['active', 'depreciable', 'type', 'accounts_category']))
account_asset_used = MissingFunction(
fields.Many2One('account.account', 'Account Asset Used'),
'missing_account', 'get_account')
diff --git a/setup.cfg b/setup.cfg
index 861a9f5..8bfd5a1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,4 @@
[egg_info]
tag_build =
tag_date = 0
-tag_svn_revision = 0
diff --git a/tryton.cfg b/tryton.cfg
index 2c12c00..f2243c4 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.4.0
+version=4.4.1
depends:
ir
res
diff --git a/trytond_account_asset.egg-info/PKG-INFO b/trytond_account_asset.egg-info/PKG-INFO
index 0fb9800..7525cdc 100644
--- a/trytond_account_asset.egg-info/PKG-INFO
+++ b/trytond_account_asset.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-asset
-Version: 4.4.0
+Version: 4.4.1
Summary: Tryton module for assets management
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-account-asset
More information about the tryton-debian-vcs
mailing list