Browse Source
[MIG] Migrated base_phone to v10.0 (#107)
[MIG] Migrated base_phone to v10.0 (#107)
[MIG] Migrated base_phone to v10.0 * Define Phone and Fax as real field types, to avoid the need of defining the widget on each view * [IMP] Add missing ImportError checks for the phonenumbers modulepull/110/merge
committed by
Pedro M. Baeza
23 changed files with 276 additions and 333 deletions
-
4.travis.yml
-
2base_phone/README.rst
-
1base_phone/__init__.py
-
4base_phone/__manifest__.py
-
3base_phone/controllers/__init__.py
-
8base_phone/controllers/main.py
-
28base_phone/fields.py
-
1base_phone/models/__init__.py
-
14base_phone/models/phone_common.py
-
13base_phone/models/res_company.py
-
6base_phone/models/res_partner.py
-
6base_phone/security/phone_security.xml
-
73base_phone/static/src/js/phone_widget.js
-
12base_phone/static/src/xml/phone.xml
-
1base_phone/tests/test_phone.py
-
15base_phone/views/res_company_view.xml
-
24base_phone/views/res_partner_view.xml
-
2base_phone/views/res_users_view.xml
-
4base_phone/web_phone.xml
-
42base_phone/wizard/number_not_found.py
-
8base_phone/wizard/number_not_found_view.xml
-
2base_phone/wizard/reformat_all_phonenumbers.py
-
6base_phone/wizard/reformat_all_phonenumbers_view.xml
@ -1,5 +1,6 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
|
|
||||
from . import fields |
from . import fields |
||||
|
from . import controllers |
||||
from . import models |
from . import models |
||||
from . import wizard |
from . import wizard |
@ -0,0 +1,3 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
from . import main |
@ -1,6 +1,5 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
|
|
||||
from . import controller |
|
||||
from . import res_company |
from . import res_company |
||||
from . import res_partner |
from . import res_partner |
||||
from . import phone_common |
from . import phone_common |
Write
Preview
Loading…
Cancel
Save
Reference in new issue