[tryton-debian-vcs] tryton-modules-account-invoice branch debian updated. debian/4.0.1-1-3-gba654fc
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Mon Aug 8 09:28:54 UTC 2016
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-invoice.git;a=commitdiff;h=debian/4.0.1-1-3-gba654fc
commit ba654fc211e3ee351c18bb5ff90da9a273614292
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 11:13:02 2016 +0200
Releasing debian version 4.0.2-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index aa81b21..8000d0e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-account-invoice (4.0.2-1) unstable; urgency=medium
+
+ * Updating to Standards-Version: 3.9.8, no changes needed.
+ * Merging upstream version 4.0.2.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Fri, 05 Aug 2016 11:13:02 +0200
+
tryton-modules-account-invoice (4.0.1-1) unstable; urgency=medium
* Merging upstream version 4.0.0.
commit bfcbd22426c3fc87eb5f09f229155b95d79824bc
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 11:13:01 2016 +0200
Merging upstream version 4.0.2.
diff --git a/CHANGELOG b/CHANGELOG
index 00797c4..6bdc754 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.0.2 - 2016-08-02
+* Bug fixes (see mercurial logs for details)
+
Version 4.0.1 - 2016-05-11
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index a9c12e5..c78d1c0 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_invoice
-Version: 4.0.1
+Version: 4.0.2
Summary: Tryton module for invoicing
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/invoice.py b/invoice.py
index 4a8e5fb..7964224 100644
--- a/invoice.py
+++ b/invoice.py
@@ -1152,7 +1152,7 @@ class Invoice(Workflow, ModelSQL, ModelView, TaxableMixin):
if self.type == 'out':
line1.debit, line1.credit = -amount, 0
else:
- line1.debit, line2.credit = 0, -amount
+ line1.debit, line1.credit = 0, -amount
line2.debit, line2.credit = line1.credit, line1.debit
if line2.debit:
diff --git a/tryton.cfg b/tryton.cfg
index 96db76f..b83ea63 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.0.1
+version=4.0.2
depends:
account
account_product
diff --git a/trytond_account_invoice.egg-info/PKG-INFO b/trytond_account_invoice.egg-info/PKG-INFO
index f77cc31..0f51b5d 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.0.1
+Version: 4.0.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