Skip to content

Commit

Permalink
[ADD][16.0] product_english_name module
Browse files Browse the repository at this point in the history
  • Loading branch information
bealdav committed Sep 30, 2024
1 parent bb75d2e commit 6c15e6a
Show file tree
Hide file tree
Showing 14 changed files with 612 additions and 0 deletions.
98 changes: 98 additions & 0 deletions product_english_name/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
====================
Product English Name
====================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:17d91efa55e70a938b2e736c967f64178caa9b4ff2d73d4f585be5e5e8ad1806
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
:target: https://odoo-community.org/page/development-status
:alt: Alpha
.. |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%2Fproduct--attribute-lightgray.png?logo=github
:target: https://github.com/OCA/product-attribute/tree/16.0/product_english_name
:alt: OCA/product-attribute
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/product-attribute-16-0/product-attribute-16-0-product_english_name
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/product-attribute&target_branch=16.0
:alt: Try me on Runboat

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

This module display product name in english near name in user language

.. figure:: https://raw.githubusercontent.com/OCA/product-attribute/16.0/product_english_name/static/description/screen_french.png
:alt: Display product name in english near name in user language


.. figure:: https://raw.githubusercontent.com/OCA/product-attribute/16.0/product_english_name/static/description/screen_english.png

.. IMPORTANT::
This is an alpha version, the data model and design can change at any time without warning.
Only for development or testing purpose, do not use in production.
`More details on development status <https://odoo-community.org/page/development-status>`_

**Table of contents**

.. contents::
:local:

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

- active another language than english and set it to your user.
- add your user to 'Show english name' group.
- browse your products in form view.


Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/product-attribute/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/product-attribute/issues/new?body=module:%20product_english_name%0Aversion:%2016.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
~~~~~~~

* Akretion

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.

.. |maintainer-bealdav| image:: https://github.com/bealdav.png?size=40px
:target: https://github.com/bealdav
:alt: bealdav

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-bealdav|

This module is part of the `OCA/product-attribute <https://github.com/OCA/product-attribute/tree/16.0/product_english_name>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions product_english_name/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
19 changes: 19 additions & 0 deletions product_english_name/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2024 Akretion
{
"name": "Product English Name",
"summary": """Display product name in english """,
"version": "16.0.1.0.0",
"license": "AGPL-3",
"development_status": "Alpha",
"category": "Product",
"author": "Akretion, (OCA) Odoo Community Association",
"website": "https://github.com/OCA/product-attribute",
"depends": [
"product",
],
"maintainers": ['bealdav'],
"data": [
"views/product_template.xml",
"security/groups.xml",
],
}
1 change: 1 addition & 0 deletions product_english_name/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import product_template
16 changes: 16 additions & 0 deletions product_english_name/models/product_template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from odoo import fields, models


class ProductTemplate(models.Model):
_inherit="product.template"

english_name = fields.Char(compute="_compute_english_name")

def _compute_english_name(self):
lang = self.env.context.get("lang", "")
english_us = self.env.ref("base.lang_en")

Check warning on line 11 in product_english_name/models/product_template.py

View check run for this annotation

Codecov / codecov/patch

product_english_name/models/product_template.py#L10-L11

Added lines #L10 - L11 were not covered by tests
for rec in self:
if lang == "en_US":
rec.english_name = ""

Check warning on line 14 in product_english_name/models/product_template.py

View check run for this annotation

Codecov / codecov/patch

product_english_name/models/product_template.py#L14

Added line #L14 was not covered by tests
else:
rec.english_name = rec.with_context(lang=english_us.id).name

Check warning on line 16 in product_english_name/models/product_template.py

View check run for this annotation

Codecov / codecov/patch

product_english_name/models/product_template.py#L16

Added line #L16 was not covered by tests
4 changes: 4 additions & 0 deletions product_english_name/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- active another language than english and set it to your user.
- add your user to 'Show english name' group.
- browse your products in form view.

7 changes: 7 additions & 0 deletions product_english_name/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This module display product name in english near name in user language

.. figure:: ../static/description/screen_french.png
:alt: Display product name in english near name in user language


.. figure:: ../static/description/screen_english.png
8 changes: 8 additions & 0 deletions product_english_name/security/groups.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<odoo>

<record id="show_english_name" model="res.groups">
<field name="name">Show english name</field>
<field name="category_id" ref="base.module_category_extra" />
</record>

</odoo>
Loading

0 comments on commit 6c15e6a

Please sign in to comment.