[tryton-debian-vcs] tryton-modules-account-payment-sepa branch upstream updated. upstream/3.2.0-1-g779de94
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Jul 3 15:59:22 UTC 2014
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-payment-sepa.git;a=commitdiff;h=upstream/3.2.0-1-g779de94
commit 779de9446bd9fb1e79dec8935c5edf8e6702b772
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Jul 3 14:08:19 2014 +0200
Adding upstream version 3.2.1.
diff --git a/CHANGELOG b/CHANGELOG
index 18cc18b..0093e9c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,2 +1,5 @@
+Version 3.2.1 - 2014-07-02
+* Bug fixes (see mercurial logs for details)
+
Version 3.2.0 - 2014-04-21
* Initial release
\ No newline at end of file
diff --git a/PKG-INFO b/PKG-INFO
index 4461646..cfbbadc 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_payment_sepa
-Version: 3.2.0
+Version: 3.2.1
Summary: Tryton module for SEPA payment
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/template/base.xml b/template/base.xml
index 01ad7fb..ab9b517 100644
--- a/template/base.xml
+++ b/template/base.xml
@@ -10,7 +10,7 @@ this repository contains the full copyright notices and license terms. -->
${PostalAddress(address)}
</PstlAdr>
</py:with>
- <Id py:if="party.sepa_creditor_identifier">
+ <Id py:if="party.sepa_creditor_identifier_used">
<PrvtId>
<Othr>
<Id>${party.sepa_creditor_identifier_used}</Id>
diff --git a/template/pain.001.001.03.xml b/template/pain.001.001.03.xml
index b1879f6..29ea6d6 100644
--- a/template/pain.001.001.03.xml
+++ b/template/pain.001.001.03.xml
@@ -43,9 +43,7 @@ this repository contains the full copyright notices and license terms. -->
<PmtInf py:for="key, payments in group.sepa_payments">
<PmtInfId>${group.sepa_group_payment_id(key)[:35]}</PmtInfId>
<PmtMtd>TRF</PmtMtd>
- <BtchBookg>
- ${'true' if group.journal.sepa_batch_booking else 'false'}
- </BtchBookg>
+ <BtchBookg>${'true' if group.journal.sepa_batch_booking else 'false'}</BtchBookg>
<NbOfTxs>${len(payments)}</NbOfTxs>
<CtrlSum>${sum(p.amount for p in payments)}</CtrlSum>
<PmtTpInf>
diff --git a/template/pain.001.001.05.xml b/template/pain.001.001.05.xml
index 625ffbb..db275a5 100644
--- a/template/pain.001.001.05.xml
+++ b/template/pain.001.001.05.xml
@@ -24,9 +24,7 @@ this repository contains the full copyright notices and license terms. -->
<PmtInf py:for="key, payments in group.sepa_payments">
<PmtInfId>${group.sepa_group_payment_id(key)[:35]}</PmtInfId>
<PmtMtd>TRF</PmtMtd>
- <BtchBookg>
- ${'true' if group.journal.sepa_batch_booking else 'false'}
- </BtchBookg>
+ <BtchBookg>${'true' if group.journal.sepa_batch_booking else 'false'}</BtchBookg>
<NbOfTxs>${len(payments)}</NbOfTxs>
<CtrlSum>${sum(p.amount for p in payments)}</CtrlSum>
<PmtTpInf>
diff --git a/template/pain.008.001.02.xml b/template/pain.008.001.02.xml
index 48e67b9..d7a4fea 100644
--- a/template/pain.008.001.02.xml
+++ b/template/pain.008.001.02.xml
@@ -43,9 +43,7 @@ this repository contains the full copyright notices and license terms. -->
<PmtInf py:for="key, payments in group.sepa_payments">
<PmtInfId>${group.sepa_group_payment_id(key)[:35]}</PmtInfId>
<PmtMtd>DD</PmtMtd>
- <BtchBookg>
- ${'true' if group.journal.sepa_batch_booking else 'false'}
- </BtchBookg>
+ <BtchBookg>${'true' if group.journal.sepa_batch_booking else 'false'}</BtchBookg>
<NbOfTxs>${len(payments)}</NbOfTxs>
<CtrlSum>${sum(p.amount for p in payments)}</CtrlSum>
<PmtTpInf>
diff --git a/template/pain.008.001.04.xml b/template/pain.008.001.04.xml
index 609ac04..3d18e10 100644
--- a/template/pain.008.001.04.xml
+++ b/template/pain.008.001.04.xml
@@ -24,9 +24,7 @@ this repository contains the full copyright notices and license terms. -->
<PmtInf py:for="key, payments in group.sepa_payments">
<PmtInfId>${group.sepa_group_payment_id(key)[:35]}</PmtInfId>
<PmtMtd>DD</PmtMtd>
- <BtchBookg>
- ${'true' if group.journal.sepa_batch_booking else 'false'}
- </BtchBookg>
+ <BtchBookg>${'true' if group.journal.sepa_batch_booking else 'false'}</BtchBookg>
<NbOfTxs>${len(payments)}</NbOfTxs>
<CtrlSum>${sum(p.amount for p in payments)}</CtrlSum>
<PmtTpInf>
diff --git a/tryton.cfg b/tryton.cfg
index 7524065..0a516dc 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.2.0
+version=3.2.1
depends:
account_payment
company
diff --git a/trytond_account_payment_sepa.egg-info/PKG-INFO b/trytond_account_payment_sepa.egg-info/PKG-INFO
index 785abc4..e77ec20 100644
--- a/trytond_account_payment_sepa.egg-info/PKG-INFO
+++ b/trytond_account_payment_sepa.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-payment-sepa
-Version: 3.2.0
+Version: 3.2.1
Summary: Tryton module for SEPA payment
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-account-payment-sepa
More information about the tryton-debian-vcs
mailing list