Skip to content

Commit

Permalink
Merge PR #778 into 15.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Aug 8, 2023
2 parents 02ed2f7 + 87e1c49 commit cbd0d8f
Show file tree
Hide file tree
Showing 17 changed files with 810 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup/website_sale_address_format/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
99 changes: 99 additions & 0 deletions website_sale_address_format/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
===========================
Website Sale Address Format
===========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fe--commerce-lightgray.png?logo=github
:target: https://github.com/OCA/e-commerce/tree/15.0/website_sale_address_format
:alt: OCA/e-commerce
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/e-commerce-15-0/e-commerce-15-0-website_sale_address_format
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/113/15.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

The eCommerce address presentation (in /shop/address) of vanilla Odoo does not cover
the format of some countries.

This module adds the capability to change the address field sequence in the eCommerce
address page.

**Table of contents**

.. contents::
:local:

Configuration
=============

Go to Contacts > Configuration > Localization > Countries, and open the country for
which the address field sequence should be adjusted in the eCommerce address page.

Update 'Layout in eCommerce Address Forms' field with something like the below (an
example for Japan):

.. code-block::
%(country_name)s
%(zip)s
%(state_code)s
%(city)s
%(street)s
%(street2)s
Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/e-commerce/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/e-commerce/issues/new?body=module:%20website_sale_address_format%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Quartile Limited

Contributors
~~~~~~~~~~~~

* `Quartile <https://www.quartile.co>`_:

* Yoshi Tashiro
* Tim Lai
* Aung Ko Ko Lin

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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.

This module is part of the `OCA/e-commerce <https://github.com/OCA/e-commerce/tree/15.0/website_sale_address_format>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions website_sale_address_format/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import controllers
from . import models
18 changes: 18 additions & 0 deletions website_sale_address_format/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2020-2022 Quartile Limited
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Website Sale Address Format",
"version": "15.0.1.0.0",
"author": "Quartile Limited, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/e-commerce",
"category": "Website/Website",
"license": "AGPL-3",
"depends": ["website_sale"],
"data": ["views/res_country_views.xml"],
"assets": {
"web.assets_frontend": [
"website_sale_address_format/static/src/js/website_sale_address_format.js",
],
},
"installable": True,
}
1 change: 1 addition & 0 deletions website_sale_address_format/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import main
15 changes: 15 additions & 0 deletions website_sale_address_format/controllers/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2020 Quartile Limited
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import http

from odoo.addons.website_sale.controllers.main import WebsiteSale


class WebsiteSale(WebsiteSale):
@http.route()
def country_infos(self, country, mode, **kw):
res = super(WebsiteSale, self).country_infos(country, mode, **kw)
if country.online_address_format:
res["fields"] = country.get_online_address_fields()
return res
1 change: 1 addition & 0 deletions website_sale_address_format/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import res_country
26 changes: 26 additions & 0 deletions website_sale_address_format/models/res_country.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright 2022-2022 Quartile Limited
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

import re

from odoo import fields, models


class ResCountry(models.Model):
_inherit = "res.country"

online_address_format = fields.Text(
string="Layout in eCommerce Address Forms",
help="Display format to use for addresses belonging to this country in "
"eCommerce address forms.\n\n"
"You can use python-style string pattern with all the fields of the address "
"(for example, use '%(street)s' to display the field 'street') plus"
"\n%(state_name)s: the name of the state"
"\n%(state_code)s: the code of the state"
"\n%(country_name)s: the name of the country"
"\n%(country_code)s: the code of the country",
)

def get_online_address_fields(self):
self.ensure_one()
return re.findall(r"\((.+?)\)", self.online_address_format)
14 changes: 14 additions & 0 deletions website_sale_address_format/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Go to Contacts > Configuration > Localization > Countries, and open the country for
which the address field sequence should be adjusted in the eCommerce address page.

Update 'Layout in eCommerce Address Forms' field with something like the below (an
example for Japan):

.. code-block::
%(country_name)s
%(zip)s
%(state_code)s
%(city)s
%(street)s
%(street2)s
5 changes: 5 additions & 0 deletions website_sale_address_format/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* `Quartile <https://www.quartile.co>`_:

* Yoshi Tashiro
* Tim Lai
* Aung Ko Ko Lin
5 changes: 5 additions & 0 deletions website_sale_address_format/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
The eCommerce address presentation (in /shop/address) of vanilla Odoo does not cover
the format of some countries.

This module adds the capability to change the address field sequence in the eCommerce
address page.
Loading

0 comments on commit cbd0d8f

Please sign in to comment.