Browse Source
[MIG] partner_password_reset: Upgrade to v10
* Rename manifest
* Update openerp references to odoo
* Bump version
pull/383/head
Dave Lasley
8 years ago
No known key found for this signature in database
GPG Key ID: 7DDBA4BA81B934CF
3 changed files with
3 additions and
3 deletions
-
partner_password_reset/__manifest__.py
-
partner_password_reset/models/res_partner.py
-
partner_password_reset/tests/test_res_partner.py
|
|
@ -6,7 +6,7 @@ |
|
|
|
"name": "Partner User Password Reset", |
|
|
|
"summary": "Add Action to allow resetting of a Partner's associated user " |
|
|
|
"password from within the partner view.", |
|
|
|
"version": "9.0.1.0.0", |
|
|
|
"version": "10.0.1.0.0", |
|
|
|
"category": "Customer Relationship Management", |
|
|
|
"website": "https://laslabs.com/", |
|
|
|
"author": "LasLabs, " |
|
|
@ -2,7 +2,7 @@ |
|
|
|
# Copyright 2017 LasLabs Inc. |
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|
|
|
|
|
|
|
from openerp import api, models |
|
|
|
from odoo import api, models |
|
|
|
|
|
|
|
|
|
|
|
class ResPartner(models.Model): |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|
|
|
|
|
|
|
from mock import MagicMock |
|
|
|
from openerp.tests.common import TransactionCase |
|
|
|
from odoo.tests.common import TransactionCase |
|
|
|
|
|
|
|
|
|
|
|
class TestResPartner(TransactionCase): |
|
|
|