[tryton-debian-vcs] tryton-modules-account branch debian-jessie-2.8 updated. debian/2.8.6-1-2-g9797fbc
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Dec 4 21:39:18 UTC 2014
The following commit has been merged in the debian-jessie-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account.git;a=commitdiff;h=debian/2.8.6-1-2-g9797fbc
commit 9797fbc6c6dedbb805ae0701b962088410569b91
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 4 19:27:33 2014 +0100
Releasing debian version 2.8.8-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 4553f56..6f8b06a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-account (2.8.8-1) unstable; urgency=medium
+
+ * Merging upstream version 2.8.8.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Thu, 04 Dec 2014 19:27:33 +0100
+
tryton-modules-account (2.8.6-1) unstable; urgency=medium
* Merging upstream version 2.8.6.
commit e7deae2e0bbce8e2ce83c585daa1d4a3c8c13b64
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 4 19:27:33 2014 +0100
Merging upstream version 2.8.8.
diff --git a/CHANGELOG b/CHANGELOG
index ab2482a..1385c1e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+Version 2.8.8 - 2014-12-03
+* Bug fixes (see mercurial logs for details)
+
+Version 2.8.7 - 2014-11-06
+* Bug fixes (see mercurial logs for details)
+
Version 2.8.6 - 2014-08-03
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 6c69300..e891e30 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account
-Version: 2.8.6
+Version: 2.8.8
Summary: Tryton module for accounting
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/account.py b/account.py
index 78c2157..3991056 100644
--- a/account.py
+++ b/account.py
@@ -900,7 +900,7 @@ class Account(ModelSQL, ModelView):
current_type = self.type.id if self.type else None
template_type = (template2type.get(self.template.type.id)
if self.template.type else None)
- if current_type != template2type:
+ if current_type != template_type:
vals['type'] = template_type
if vals:
self.write([self], vals)
diff --git a/move.py b/move.py
index c6381c8..cc9dad3 100644
--- a/move.py
+++ b/move.py
@@ -200,7 +200,9 @@ class Move(ModelSQL, ModelView):
def check_date(self):
if (self.date < self.period.start_date
or self.date > self.period.end_date):
- self.raise_user_error('date_outside_period', (self.rec_name,))
+ self.raise_user_error('date_outside_period', {
+ 'move': self.rec_name,
+ })
@classmethod
def check_modify(cls, moves):
diff --git a/tryton.cfg b/tryton.cfg
index b12c0f9..f910c1d 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.8.6
+version=2.8.8
depends:
company
currency
diff --git a/trytond_account.egg-info/PKG-INFO b/trytond_account.egg-info/PKG-INFO
index 27e9f5e..6860a80 100644
--- a/trytond_account.egg-info/PKG-INFO
+++ b/trytond_account.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account
-Version: 2.8.6
+Version: 2.8.8
Summary: Tryton module for accounting
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_account.egg-info/SOURCES.txt b/trytond_account.egg-info/SOURCES.txt
index a956633..4dbf326 100644
--- a/trytond_account.egg-info/SOURCES.txt
+++ b/trytond_account.egg-info/SOURCES.txt
@@ -22,15 +22,127 @@ trial_balance.odt
tryton.cfg
./__init__.py
./account.py
+./account.xml
+./aged_balance.odt
./configuration.py
+./configuration.xml
./fiscalyear.py
+./fiscalyear.xml
+./general_journal.odt
+./general_ledger.odt
./journal.py
+./journal.xml
./move.py
+./move.xml
./party.py
+./party.xml
./period.py
+./period.xml
./tax.py
+./tax.xml
+./third_party_balance.odt
+./trial_balance.odt
+./tryton.cfg
+./icons/tryton-financial.svg
+./locale/bg_BG.po
+./locale/ca_ES.po
+./locale/cs_CZ.po
+./locale/de_DE.po
+./locale/es_AR.po
+./locale/es_CO.po
+./locale/es_ES.po
+./locale/fr_FR.po
+./locale/nl_NL.po
+./locale/ru_RU.po
./tests/__init__.py
+./tests/scenario_account_reconciliation.rst
./tests/test_account.py
+./view/account_balance_sheet_tree.xml
+./view/account_deferral_form.xml
+./view/account_deferral_tree.xml
+./view/account_form.xml
+./view/account_income_statement_tree.xml
+./view/account_list.xml
+./view/account_list2.xml
+./view/account_template_form.xml
+./view/account_template_list.xml
+./view/account_template_tree.xml
+./view/account_tree.xml
+./view/account_tree2.xml
+./view/account_type_form.xml
+./view/account_type_list.xml
+./view/account_type_template_form.xml
+./view/account_type_template_list.xml
+./view/account_type_template_tree.xml
+./view/account_type_tree.xml
+./view/configuration_form.xml
+./view/create_chart_account_form.xml
+./view/create_chart_properties_form.xml
+./view/create_chart_start_form.xml
+./view/fiscalyear_close_start_form.xml
+./view/fiscalyear_form.xml
+./view/fiscalyear_tree.xml
+./view/journal_form.xml
+./view/journal_period_form.xml
+./view/journal_period_tree.xml
+./view/journal_tree.xml
+./view/journal_type_form.xml
+./view/journal_type_tree.xml
+./view/journal_view_column_form.xml
+./view/journal_view_column_list.xml
+./view/journal_view_column_list_sequence.xml
+./view/journal_view_form.xml
+./view/journal_view_tree.xml
+./view/move_form.xml
+./view/move_line_form.xml
+./view/move_line_form_move.xml
+./view/move_line_tree.xml
+./view/move_line_tree_move.xml
+./view/move_reconciliation_form.xml
+./view/move_reconciliation_tree.xml
+./view/move_tree.xml
+./view/open_aged_balance_start_form.xml
+./view/open_balance_sheet_start_form.xml
+./view/open_chart_start_form.xml
+./view/open_income_statement_start_form.xml
+./view/open_journal_ask_form.xml
+./view/open_reconcile_lines_start_form.xml
+./view/open_third_party_balance_start_form.xml
+./view/party_form.xml
+./view/party_tree.xml
+./view/period_form.xml
+./view/period_tree.xml
+./view/print_general_journal_start_form.xml
+./view/print_general_legder_start_form.xml
+./view/print_trial_balance_start_form.xml
+./view/reconcile_lines_writeoff_form.xml
+./view/tax_code_form.xml
+./view/tax_code_list.xml
+./view/tax_code_open_chart_start_form.xml
+./view/tax_code_template_form.xml
+./view/tax_code_template_tree.xml
+./view/tax_code_tree.xml
+./view/tax_code_tree2.xml
+./view/tax_form.xml
+./view/tax_group_form.xml
+./view/tax_group_tree.xml
+./view/tax_line_form.xml
+./view/tax_line_tree.xml
+./view/tax_list.xml
+./view/tax_rule_form.xml
+./view/tax_rule_line_form.xml
+./view/tax_rule_line_template_form.xml
+./view/tax_rule_line_template_tree.xml
+./view/tax_rule_line_tree.xml
+./view/tax_rule_line_tree_sequence.xml
+./view/tax_rule_template_form.xml
+./view/tax_rule_template_tree.xml
+./view/tax_rule_tree.xml
+./view/tax_template_form.xml
+./view/tax_template_tree.xml
+./view/tax_tree.xml
+./view/update_chart_start_form.xml
+./view/update_chart_succeed_form.xml
doc/index.rst
icons/tryton-financial.svg
locale/bg_BG.po
--
tryton-modules-account
More information about the tryton-debian-vcs
mailing list