diff --git a/account_auto_fy_sequence/README.md b/account_auto_fy_sequence/README.md new file mode 100644 index 000000000..6f6afa58d --- /dev/null +++ b/account_auto_fy_sequence/README.md @@ -0,0 +1,27 @@ +#Automatic creation of fiscal year sequences. + +This module adds the possibility to use the %(fy)s placeholder +in sequences. %(fy)s is replaced by the fiscal year code when +using the sequence. + +The first time the sequence is used for a given fiscal year, +a specific fiscal year sequence starting at 1 is created automatically. + +## Caveat + +/!\ If you change %(year)s to %(fy)s on a sequence that has +already been used for the current fiscal year, make sure to manually +create the fiscal year sequence for the current fiscal year and +initialize it's next number to the correct value. +For this reason, the module will forbid the user to change +a sequence from %(year)s to %(fy)s if it's next number is > 1. + +## Credits + +Author: + +* Stéphane Bidoul (ACSONE) + +Contributors: + +* Laetitia Gangloff (ACSONE) \ No newline at end of file diff --git a/account_auto_fy_sequence/__openerp__.py b/account_auto_fy_sequence/__openerp__.py index de6ba5da3..97b141903 100644 --- a/account_auto_fy_sequence/__openerp__.py +++ b/account_auto_fy_sequence/__openerp__.py @@ -26,23 +26,6 @@ 'name': 'Automatic Fiscal Year Sequences', 'version': '0.1', 'category': 'Accounting', - 'description': """ - Automatic creation of fiscal year sequences. - - This module adds the possibility to use the %(fy)s placeholder - in sequences. %(fy)s is replaced by the fiscal year code when - using the sequence. - - The first time the sequence is used for a given fiscal year, - a specific fiscal year sequence starting at 1 is created automatically. - - /!\ If you change %(year)s to %(fy)s on a sequence that has - already been used for the current fiscal year, make sure to manually - create the fiscal year sequence for the current fiscal year and - initialize it's next number to the correct value. - For this reason, the module will forbid the user to change - a sequence from %(year)s to %(fy)s if it's next number is > 1. - """, 'author': 'ACSONE SA/NV', 'website': 'http://acsone.eu', 'depends': ['account'], diff --git a/account_auto_fy_sequence/tests/__init__.py b/account_auto_fy_sequence/tests/__init__.py index a31764f72..ee4ffd7a4 100644 --- a/account_auto_fy_sequence/tests/__init__.py +++ b/account_auto_fy_sequence/tests/__init__.py @@ -24,7 +24,3 @@ ############################################################################## from . import test_auto_fy_sequence - -checks = [ - test_auto_fy_sequence, -]