[tryton-debian-vcs] tryton-modules-sale-credit-limit branch debian updated. debian/4.2.0-1-2-gc65773c

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Jun 7 13:35:20 UTC 2017


The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-sale-credit-limit.git;a=commitdiff;h=debian/4.2.0-1-2-gc65773c

commit c65773c6334d29177a59e7575d5d43ae25e1a6b9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jun 7 15:26:56 2017 +0200

    Merging upstream version 4.4.0.

diff --git a/CHANGELOG b/CHANGELOG
index 01bf130..0a0b8d0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.4.0 - 2017-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 4.2.0 - 2016-11-28
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index 93ef5be..4f1c2b0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2011-2016 Cédric Krier.
-Copyright (C) 2011-2016 B2CK SPRL.
+Copyright (C) 2011-2017 Cédric Krier.
+Copyright (C) 2011-2017 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index 90411a0..8f1d7ac 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_sale_credit_limit
-Version: 4.2.0
+Version: 4.4.0
 Summary: Tryton module for sale credit limit
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/4.2/
+Download-URL: http://downloads.tryton.org/4.4/
 Description: trytond_sale_credit_limit
         =========================
         
@@ -51,7 +51,7 @@ Classifier: Framework :: Tryton
 Classifier: Intended Audience :: Developers
 Classifier: Intended Audience :: Financial and Insurance Industry
 Classifier: Intended Audience :: Legal Industry
-Classifier: License :: OSI Approved :: GNU General Public License (GPL)
+Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
 Classifier: Natural Language :: Bulgarian
 Classifier: Natural Language :: Catalan
 Classifier: Natural Language :: Chinese (Simplified)
diff --git a/setup.py b/setup.py
index 874acca..0e8e330 100644
--- a/setup.py
+++ b/setup.py
@@ -78,7 +78,7 @@ setup(name=name,
         'Intended Audience :: Developers',
         'Intended Audience :: Financial and Insurance Industry',
         'Intended Audience :: Legal Industry',
-        'License :: OSI Approved :: GNU General Public License (GPL)',
+        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
         'Natural Language :: Bulgarian',
         'Natural Language :: Catalan',
         'Natural Language :: Chinese (Simplified)',
diff --git a/tests/test_sale_credit_limit.py b/tests/test_sale_credit_limit.py
index c99c8b0..f73525d 100644
--- a/tests/test_sale_credit_limit.py
+++ b/tests/test_sale_credit_limit.py
@@ -26,8 +26,7 @@ class SaleCreditLimitTestCase(ModuleTestCase):
         Party = pool.get('party.party')
         Sale = pool.get('sale.sale')
         PaymentTerm = pool.get('account.invoice.payment_term')
-        Property = pool.get('ir.property')
-        ModelField = pool.get('ir.model.field')
+        Configuration = pool.get('account.configuration')
         FiscalYear = pool.get('account.fiscalyear')
 
         company = create_company()
@@ -75,15 +74,9 @@ class SaleCreditLimitTestCase(ModuleTestCase):
                                         }])
                             ],
                         }])
-            field, = ModelField.search([
-                    ('model.model', '=', 'product.template'),
-                    ('name', '=', 'account_revenue'),
-                    ], limit=1)
-            Property.create([{
-                    'field': field.id,
-                    'value': str(revenue),
-                    'company': company.id,
-                    }])
+            config = Configuration(1)
+            config.default_product_account_revenue = revenue
+            config.save()
             sale, = Sale.create([{
                         'party': party.id,
                         'company': company.id,
diff --git a/tryton.cfg b/tryton.cfg
index 9853b63..0925957 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=4.2.0
+version=4.4.0
 depends:
     ir
     account_credit_limit
diff --git a/trytond_sale_credit_limit.egg-info/PKG-INFO b/trytond_sale_credit_limit.egg-info/PKG-INFO
index 03d0006..5124206 100644
--- a/trytond_sale_credit_limit.egg-info/PKG-INFO
+++ b/trytond_sale_credit_limit.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-sale-credit-limit
-Version: 4.2.0
+Version: 4.4.0
 Summary: Tryton module for sale credit limit
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/4.2/
+Download-URL: http://downloads.tryton.org/4.4/
 Description: trytond_sale_credit_limit
         =========================
         
@@ -51,7 +51,7 @@ Classifier: Framework :: Tryton
 Classifier: Intended Audience :: Developers
 Classifier: Intended Audience :: Financial and Insurance Industry
 Classifier: Intended Audience :: Legal Industry
-Classifier: License :: OSI Approved :: GNU General Public License (GPL)
+Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
 Classifier: Natural Language :: Bulgarian
 Classifier: Natural Language :: Catalan
 Classifier: Natural Language :: Chinese (Simplified)
diff --git a/trytond_sale_credit_limit.egg-info/requires.txt b/trytond_sale_credit_limit.egg-info/requires.txt
index d56b170..c36ab31 100644
--- a/trytond_sale_credit_limit.egg-info/requires.txt
+++ b/trytond_sale_credit_limit.egg-info/requires.txt
@@ -1,6 +1,6 @@
-trytond_account_credit_limit >= 4.2, < 4.3
-trytond_sale >= 4.2, < 4.3
-trytond_currency >= 4.2, < 4.3
-trytond_account_invoice >= 4.2, < 4.3
-trytond_company >= 4.2, < 4.3
-trytond >= 4.2, < 4.3
+trytond_account_credit_limit >= 4.4, < 4.5
+trytond_sale >= 4.4, < 4.5
+trytond_currency >= 4.4, < 4.5
+trytond_account_invoice >= 4.4, < 4.5
+trytond_company >= 4.4, < 4.5
+trytond >= 4.4, < 4.5
-- 
tryton-modules-sale-credit-limit



More information about the tryton-debian-vcs mailing list