[tryton-debian-vcs] tryton-modules-account-dunning-letter branch upstream updated. upstream/3.2.1-1-ge5bf70a

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Oct 23 12:13:14 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-dunning-letter.git;a=commitdiff;h=upstream/3.2.1-1-ge5bf70a

commit e5bf70a3cca8f65fd5540519a84d398a45abbde5
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Oct 21 11:29:04 2014 +0200

    Adding upstream version 3.4.0.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index 05985ba..dd64fdd 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-Version 3.2.1 - 2014-05-06
+Version 3.4.0 - 2014-10-20
 * Bug fixes (see mercurial logs for details)
 
 Version 3.2.0 - 2014-04-21
diff --git a/PKG-INFO b/PKG-INFO
index 18eee34..ffc89af 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_account_dunning_letter
-Version: 3.2.1
+Version: 3.4.0
 Summary: Tryton module for account dunning letter
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.2/
+Download-URL: http://downloads.tryton.org/3.4/
 Description: trytond_account_dunning_letter
         ==============================
         
diff --git a/dunning.py b/dunning.py
index 97181b8..ff313a7 100644
--- a/dunning.py
+++ b/dunning.py
@@ -9,6 +9,7 @@ from trytond.wizard import StateAction
 from trytond.modules.company import CompanyReport
 from trytond.pool import Pool
 from trytond.transaction import Transaction
+from trytond.tools import grouped_slice
 
 
 __all__ = ['Level', 'ProcessDunning', 'Letter']
@@ -106,10 +107,8 @@ class Letter(CompanyReport):
         """
         pool = Pool()
         Line = pool.get('account.move.line')
-        in_max = Transaction().cursor.IN_MAX
         payments = []
-        for i in range(0, len(parties), in_max):
-            sub_parties = parties[i:i + in_max]
+        for sub_parties in grouped_slice(parties):
             payments.append(Line.search([
                         ('account.kind', '=', 'receivable'),
                         ['OR',
diff --git a/locale/fr_FR.po b/locale/es_EC.po
similarity index 73%
copy from locale/fr_FR.po
copy to locale/es_EC.po
index 6121ac8..ccfb6da 100644
--- a/locale/fr_FR.po
+++ b/locale/es_EC.po
@@ -4,52 +4,52 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:account.dunning.level,print_on_letter:"
 msgid "Print on Letter"
-msgstr "Imprimer sur la lettre"
+msgstr "Imprimir en una Carta"
 
 msgctxt "model:ir.action,name:report_letter"
 msgid "Dunning Letter"
-msgstr "Lettre de relance"
+msgstr "Carta de Cobro"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Amount"
-msgstr "Montant"
+msgstr "Valor"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Date"
-msgstr "Date"
+msgstr "Fecha"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Date:"
-msgstr "Date :"
+msgstr "Fecha:"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Description"
-msgstr "Description"
+msgstr "Descripción"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Due Date"
-msgstr "Date d'échéance"
+msgstr "Fecha de Vencimiento"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "E-Mail:"
-msgstr "E-Mail:"
+msgstr "Correo electrónico:"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Pending Payments Received"
-msgstr "Paiements en attente reçus"
+msgstr "Pagos Pendientes Recibidos"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Phone:"
-msgstr "Téléphone :"
+msgstr "Teléfono:"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Reference"
-msgstr "Référence"
+msgstr "Referencia"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Reminder Notice"
-msgstr "Avis de rappel"
+msgstr "Aviso Recordatorio"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "VAT Number:"
-msgstr "Numéro TVA :"
+msgstr "Número de RUC:"
diff --git a/locale/fr_FR.po b/locale/fr_FR.po
index 6121ac8..d9d9454 100644
--- a/locale/fr_FR.po
+++ b/locale/fr_FR.po
@@ -20,7 +20,7 @@ msgstr "Date"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Date:"
-msgstr "Date :"
+msgstr "Date :"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Description"
@@ -40,7 +40,7 @@ msgstr "Paiements en attente reçus"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Phone:"
-msgstr "Téléphone :"
+msgstr "Téléphone :"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "Reference"
@@ -52,4 +52,4 @@ msgstr "Avis de rappel"
 
 msgctxt "odt:account.dunning.letter:"
 msgid "VAT Number:"
-msgstr "Numéro TVA :"
+msgstr "Numéro TVA :"
diff --git a/tryton.cfg b/tryton.cfg
index 92086ab..21ef28c 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.2.1
+version=3.4.0
 depends:
     account
     account_dunning
diff --git a/trytond_account_dunning_letter.egg-info/PKG-INFO b/trytond_account_dunning_letter.egg-info/PKG-INFO
index 407f136..2959204 100644
--- a/trytond_account_dunning_letter.egg-info/PKG-INFO
+++ b/trytond_account_dunning_letter.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-account-dunning-letter
-Version: 3.2.1
+Version: 3.4.0
 Summary: Tryton module for account dunning letter
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.2/
+Download-URL: http://downloads.tryton.org/3.4/
 Description: trytond_account_dunning_letter
         ==============================
         
diff --git a/trytond_account_dunning_letter.egg-info/SOURCES.txt b/trytond_account_dunning_letter.egg-info/SOURCES.txt
index 5e4193b..3ec9f08 100644
--- a/trytond_account_dunning_letter.egg-info/SOURCES.txt
+++ b/trytond_account_dunning_letter.egg-info/SOURCES.txt
@@ -10,13 +10,27 @@ setup.py
 tryton.cfg
 ./__init__.py
 ./dunning.py
+./dunning.xml
+./letter.odt
+./tryton.cfg
+./locale/ca_ES.po
+./locale/de_DE.po
+./locale/es_AR.po
+./locale/es_CO.po
+./locale/es_EC.po
+./locale/es_ES.po
+./locale/fr_FR.po
+./locale/sl_SI.po
 ./tests/__init__.py
 ./tests/test_account_dunning_letter.py
+./view/dunning_level_form.xml
+./view/dunning_level_list.xml
 doc/index.rst
 locale/ca_ES.po
 locale/de_DE.po
 locale/es_AR.po
 locale/es_CO.po
+locale/es_EC.po
 locale/es_ES.po
 locale/fr_FR.po
 locale/sl_SI.po
diff --git a/trytond_account_dunning_letter.egg-info/requires.txt b/trytond_account_dunning_letter.egg-info/requires.txt
index 4688d7e..01483c4 100644
--- a/trytond_account_dunning_letter.egg-info/requires.txt
+++ b/trytond_account_dunning_letter.egg-info/requires.txt
@@ -1,5 +1,5 @@
-trytond_account >= 3.2, < 3.3
-trytond_account_dunning >= 3.2, < 3.3
-trytond_company >= 3.2, < 3.3
-trytond_party >= 3.2, < 3.3
-trytond >= 3.2, < 3.3
\ No newline at end of file
+trytond_account >= 3.4, < 3.5
+trytond_account_dunning >= 3.4, < 3.5
+trytond_company >= 3.4, < 3.5
+trytond_party >= 3.4, < 3.5
+trytond >= 3.4, < 3.5
\ No newline at end of file
-- 
tryton-modules-account-dunning-letter



More information about the tryton-debian-vcs mailing list