Skip to content

Commit

Permalink
[MIG] crm_location: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ppyczko committed Jul 19, 2024
1 parent cdcc64b commit 150b54c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions crm_location/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ Contributors
- Alexandre Díaz <[email protected]>
- Tharathip Chaweewongphan <[email protected]>
- Ruchir Shukla <[email protected]>
- `APSL-Nagarro <https://apsl.tech>`__:

- Patryk Pyczko <[email protected]>

Maintainers
-----------
Expand Down
2 changes: 1 addition & 1 deletion crm_location/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"name": "CRM location",
"category": "Customer Relationship Management",
"version": "16.0.1.0.1",
"version": "17.0.1.0.0",
"depends": ["crm", "base_location"],
"data": ["views/crm_lead_view.xml"],
"author": "Tecnativa, Odoo Community Association (OCA)",
Expand Down
2 changes: 2 additions & 0 deletions crm_location/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
- Alexandre Díaz \<<[email protected]>\>
- Tharathip Chaweewongphan \<<[email protected]>\>
- Ruchir Shukla \<<[email protected]>\>
- [APSL-Nagarro](<https://apsl.tech>):
- Patryk Pyczko \<<[email protected]>\>
4 changes: 4 additions & 0 deletions crm_location/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,10 @@ <h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
<li>Alexandre Díaz &lt;<a class="reference external" href="mailto:alexandre.diaz&#64;tecnativa.com">alexandre.diaz&#64;tecnativa.com</a>&gt;</li>
<li>Tharathip Chaweewongphan &lt;<a class="reference external" href="mailto:tharathipc&#64;ecosoft.co.th">tharathipc&#64;ecosoft.co.th</a>&gt;</li>
<li>Ruchir Shukla &lt;<a class="reference external" href="mailto:ruchir&#64;bizzappdev.com">ruchir&#64;bizzappdev.com</a>&gt;</li>
<li><a class="reference external" href="https://apsl.tech">APSL-Nagarro</a>:<ul>
<li>Patryk Pyczko &lt;<a class="reference external" href="mailto:ppyczko&#64;apsl.net">ppyczko&#64;apsl.net</a>&gt;</li>
</ul>
</li>
</ul>
</div>
<div class="section" id="maintainers">
Expand Down
4 changes: 3 additions & 1 deletion crm_location/tests/test_crm_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ class TestCrmLocation(common.TransactionCase):
def setUpClass(cls):
super().setUpClass()
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
cls.country = cls.env["res.country"].create({"name": "Test country"})
cls.country = cls.env["res.country"].create(
{"name": "Test country", "code": "AA"}
)
cls.state = cls.env["res.country.state"].create(
{
"name": "Test state",
Expand Down

0 comments on commit 150b54c

Please sign in to comment.