Skip to content

Commit

Permalink
[MIG] V11 migration
Browse files Browse the repository at this point in the history
- fax field removed from res.partner
- 2to3 on all py files
- add contributor and update README
- use hasclass in place of @Class in xpath expr
  • Loading branch information
Nicolas JEUDY committed Nov 18, 2017
1 parent 170842d commit 6ae7320
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion partner_contact_in_several_companies/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ For further information, please visit:

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/134/10.0
:target: https://runbot.odoo-community.org/runbot/134/11.0

Known issues / Roadmap
======================
Expand Down
4 changes: 2 additions & 2 deletions partner_contact_in_several_companies/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
{
"name": "Contacts in several partners",
"summary": "Allow to have one contact in several partners",
"version": "10.0.1.0.0",
"version": "11.0.1.0.0",
"category": "Customer Relationship Management",
"website": "https://odoo-community.org/",
"author": "Odoo Community Association (OCA),Odoo SA",
"author": "Nicolas JEUDY,Odoo Community Association (OCA),Odoo SA",
"license": "AGPL-3",
'application': False,
'installable': True,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def test_04_contact_creation(self):
new_contact = self.partner.create(
{'contact_id': self.bob_contact.id}
)
self.assertEqual(new_contact.name, u'Bob Egnops')
self.assertEqual(new_contact.contact_type, u'attached')
self.assertEqual(new_contact.name, 'Bob Egnops')
self.assertEqual(new_contact.contact_type, 'attached')

# Create a contact with both contact_id and name;
# contact's name should override provided value in that case
Expand All @@ -149,14 +149,14 @@ def test_04_contact_creation(self):
)
self.assertEqual(
new_contact.name,
u'Bob Egnops'
'Bob Egnops'
)

# Reset contact to standalone
new_contact.write({'contact_id': False})
self.assertEqual(
new_contact.contact_type,
u'standalone',
'standalone',
)

# Reset contact to attached, and ensure only it is unlinked (i.e.
Expand Down
4 changes: 1 addition & 3 deletions partner_contact_in_several_companies/views/res_partner.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
<field name="city"/>
<field name="country_id"/>
<field name="mobile"/>
<field name="fax"/>
<field name="state_id"/>
<field name="image"/>
<field name="lang"/>
Expand All @@ -77,7 +76,6 @@
<div t-if="record.email.raw_value"><field name="email"/></div>
<div t-if="record.phone.raw_value">Phone: <field name="phone"/></div>
<div t-if="record.mobile.raw_value">Mobile: <field name="mobile"/></div>
<div t-if="record.fax.raw_value">Fax: <field name="fax"/></div>
</div>
</div>
</t>
Expand Down Expand Up @@ -168,7 +166,7 @@
</tree>
</field>
</field>
<xpath expr="//t[@t-name='kanban-box']//div[@class='oe_kanban_details']/ul/li[3]" position="after">
<xpath expr="//t[@t-name='kanban-box']//div[hasclass('oe_kanban_details')]/ul/li[3]" position="after">
<t t-if="record.other_contact_ids.raw_value.length &gt; 0">
<li>+<t t-esc="record.other_contact_ids.raw_value.length"/>
<t t-if="record.other_contact_ids.raw_value.length == 1">other position</t>
Expand Down
5 changes: 3 additions & 2 deletions partner_contact_personal_information_page/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ For further information, please visit:

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/134/9.0
:target: https://runbot.odoo-community.org/runbot/134/11.0

Known issues / Roadmap
======================
Expand Down Expand Up @@ -68,6 +68,7 @@ Contributors
* Matjaž Mozetič <m.mozetic@matmoz.si>
* Rudolf Schnapka <schnapkar@golive-saar.de>
* Richard deMeester <richard@willowit.com.au>
* Nicolas JEUDY <https://github.com/njeudy>

Maintainer
----------
Expand All @@ -82,4 +83,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

To contribute to this module, please visit http://odoo-community.org.
To contribute to this module, please visit http://odoo-community.org.
5 changes: 3 additions & 2 deletions partner_contact_personal_information_page/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
{
"name": "Personal information page for contacts",
"summary": "Add a page to contacts form to put personal information",
"version": "10.0.1.0.0",
"version": "11.0.1.0.0",
"category": "Customer Relationship Management",
"website": "https://odoo-community.org/",
"author": "Odoo Community Association (OCA)",
"author": "Nicolas JEUDY,Odoo Community Association (OCA)",
"contributors": [
'EL Hadji DEM <elhadji.dem@savoirfairelinux.com>',
'Jairo Llopis <j.llopis@grupoesoc.es>',
'Matjaž Mozetič <m.mozetic@matmoz.si>',
'Rudolf Schnapka <schnapkar@golive-saar.de>',
'Richard deMeester <richard@willowit.com.au>',
'Nicolas JEUDY <https://github.com/njeudy>',
],
"license": "AGPL-3",
'application': False,
Expand Down

0 comments on commit 6ae7320

Please sign in to comment.