[tryton-debian-vcs] tryton-modules-account-payment-sepa branch debian updated. aeaee99ac093937942611e65f6215ae88d7d1c9d

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Jul 3 15:59:21 UTC 2014


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-payment-sepa.git;a=commitdiff;h=aeaee99ac093937942611e65f6215ae88d7d1c9d

commit aeaee99ac093937942611e65f6215ae88d7d1c9d
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Jul 3 14:08:22 2014 +0200

    Releasing debian version 3.2.1-1.

diff --git a/debian/changelog b/debian/changelog
index d6774e1..5ee00c7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-modules-account-payment-sepa (3.2.1-1) unstable; urgency=medium
+
+  * Updating signing key while using now plain .asc files instead of .pgp
+    binaries.
+  * Merging upstream version 3.2.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Thu, 03 Jul 2014 14:08:22 +0200
+
 tryton-modules-account-payment-sepa (3.2.0-1) unstable; urgency=medium
 
   * Initial release (Closes: #742738).
commit d8ea7d228bd32920c208331268c3ba1741875875
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Jul 3 14:08:20 2014 +0200

    Merging 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