Browse Source
Merge pull request #1597 from akretion/12-fix-typo
FIX base_exception: typo
pull/1599/head
Pedro M. Baeza
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
base_exception/__manifest__.py
-
base_exception/models/base_exception.py
|
@ -4,7 +4,7 @@ |
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). |
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). |
|
|
{ |
|
|
{ |
|
|
'name': 'Exception Rule', |
|
|
'name': 'Exception Rule', |
|
|
'version': '12.0.2.0.0', |
|
|
|
|
|
|
|
|
'version': '12.0.2.0.1', |
|
|
'category': 'Generic Modules', |
|
|
'category': 'Generic Modules', |
|
|
'summary': """ |
|
|
'summary': """ |
|
|
This module provide an abstract model to manage customizable |
|
|
This module provide an abstract model to manage customizable |
|
|
|
@ -59,6 +59,7 @@ class ExceptionRule(models.Model): |
|
|
|
|
|
|
|
|
class BaseExceptionMethod(models.AbstractModel): |
|
|
class BaseExceptionMethod(models.AbstractModel): |
|
|
_name = 'base.exception.method' |
|
|
_name = 'base.exception.method' |
|
|
|
|
|
_description = 'Exception Rule Methods' |
|
|
|
|
|
|
|
|
@api.multi |
|
|
@api.multi |
|
|
def _reverse_field(self): |
|
|
def _reverse_field(self): |
|
|