[tryton-debian-vcs] tryton-modules-account-invoice branch upstream updated. upstream/4.4.1-1-g617fa0f
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Jul 2 17:54:13 UTC 2017
The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-invoice.git;a=commitdiff;h=upstream/4.4.1-1-g617fa0f
commit 617fa0fca8b6e514b9a218b1c06ccab38edd8177
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sun Jul 2 16:46:58 2017 +0200
Adding upstream version 4.4.2.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 9827269..f60a43e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.4.2 - 2017-07-01
+* Bug fixes (see mercurial logs for details)
+
Version 4.4.1 - 2017-06-06
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 4ddc889..3978aa7 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_invoice
-Version: 4.4.1
+Version: 4.4.2
Summary: Tryton module for invoicing
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/account.py b/account.py
index fbe3d2b..0dfc1ce 100644
--- a/account.py
+++ b/account.py
@@ -93,7 +93,8 @@ class Period:
and table.column_exist('out_credit_note_sequence')):
cursor.execute(*sequence.insert(columns=[
sequence.sequence, sequence.fiscalyear,
- sequence.period, sequence.out_invoice_sequence,
+ sequence.company, sequence.period,
+ sequence.out_invoice_sequence,
sequence.out_credit_note_sequence,
sequence.in_invoice_sequence,
sequence.in_credit_note_sequence],
@@ -101,7 +102,7 @@ class Period:
condition=(fiscalyear.id == sql_table.fiscalyear)
).select(
Literal(10), sql_table.fiscalyear,
- sql_table.id,
+ fiscalyear.company, sql_table.id,
Coalesce(sql_table.out_invoice_sequence,
fiscalyear.out_invoice_sequence),
Coalesce(sql_table.out_credit_note_sequence,
diff --git a/tryton.cfg b/tryton.cfg
index bd595ba..2e6bf37 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.4.1
+version=4.4.2
depends:
account
account_product
diff --git a/trytond_account_invoice.egg-info/PKG-INFO b/trytond_account_invoice.egg-info/PKG-INFO
index 931895c..8f2847e 100644
--- a/trytond_account_invoice.egg-info/PKG-INFO
+++ b/trytond_account_invoice.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-invoice
-Version: 4.4.1
+Version: 4.4.2
Summary: Tryton module for invoicing
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-account-invoice
More information about the tryton-debian-vcs
mailing list