Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 86 additions & 0 deletions product_engineering_info/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
========================
Product Engineering Info
========================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:2c100843c5c2e6ceeec2513fa0c459c4f393a598c68537d7c360ee254741052c
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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/license-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-qrtl%2Fthc--custom-lightgray.png?logo=github
:target: https://github.com/qrtl/thc-custom/tree/16.0/product_engineering_info
:alt: qrtl/thc-custom

|badge1| |badge2| |badge3|

This module extends products with engineering-oriented information.

It adds an **Engineering** tab on the product form where engineers can
keep design data such as a product group code, compatible parts, E-BOM
references and technical notes. A few closely related fields are also
surfaced on the standard tabs (for example the successor part number on
*General Information* and manufacturer details on *Purchase*).

The Engineering tab is also a convenient place for administrators to add
further engineering fields through Studio.

**Table of contents**

.. contents::
:local:

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

Product group codes are a simple design classification (e.g. sheet
metal, circuit board), managed under *Inventory > Configuration >
Products*.

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

Bugs are tracked on `GitHub Issues <https://github.com/qrtl/thc-custom/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/qrtl/thc-custom/issues/new?body=module:%20product_engineering_info%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
-------

* Quartile

Contributors
------------

- `Quartile <https://www.quartile.co>`__:

- Toshikimi Shigenobu

Maintainers
-----------

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

Current maintainer:

|maintainer-nobuQuartile|

This module is part of the `qrtl/thc-custom <https://github.com/qrtl/thc-custom/tree/16.0/product_engineering_info>`_ project on GitHub.

You are welcome to contribute.
1 change: 1 addition & 0 deletions product_engineering_info/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
20 changes: 20 additions & 0 deletions product_engineering_info/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2026 Quartile (https://www.quartile.co)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Product Engineering Info",
"summary": "Add an Engineering tab with engineering fields and a "
"Product Group Code classification to products.",
"version": "16.0.1.0.0",
"category": "Inventory",
"license": "AGPL-3",
"author": "Quartile",
"website": "https://www.quartile.co",
"maintainers": ["nobuQuartile"],
"depends": ["purchase", "stock"],
"data": [
"security/ir.model.access.csv",
"views/product_group_code_views.xml",
"views/product_template_views.xml",
],
"installable": True,
}
Loading
Loading