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
93 changes: 93 additions & 0 deletions quality_control_oca_inspection_matrix/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
=====================================
Quality Control OCA Inspection Matrix
=====================================

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

.. |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%2Fmanufacture-lightgray.png?logo=github
:target: https://github.com/OCA/manufacture/tree/18.0/quality_control_oca_inspection_matrix
:alt: OCA/manufacture
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/manufacture-18-0/manufacture-18-0-quality_control_oca_inspection_matrix
: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/manufacture&target_branch=18.0
:alt: Try me on Runboat

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

This module provides a matrix view for inspection tests, allowing to
test multiple products at once.

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, you need to:

- Go to *Quality Control* > Inspections
- Select multiple inspections linked to the same test
- Select Actions > Inspection Matrix
- Fill in all fields (you get a first table with quantitative
questions, then a table with qualitative questions)
- Save
- The inspections have been filled

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/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/manufacture/issues/new?body=module:%20quality_control_oca_inspection_matrix%0Aversion:%2018.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
-------

* Le Filament

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

- `Le Filament <https://le-filament.com>`__

- julienCozo
- remi-filament

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/manufacture <https://github.com/OCA/manufacture/tree/18.0/quality_control_oca_inspection_matrix>`_ 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 quality_control_oca_inspection_matrix/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import wizard
20 changes: 20 additions & 0 deletions quality_control_oca_inspection_matrix/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "Quality Control OCA Inspection Matrix",
"summary": "Quality inspection tests with 2D matrix view.",
"version": "18.0.1.0.0",
"development_status": "Beta",
"category": "Quality Control",
"website": "https://github.com/OCA/manufacture",
"author": "Le Filament, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"quality_control_oca",
"web_widget_x2many_2d_matrix",
],
"data": [
"security/ir.model.access.csv",
"wizard/multi_quality_edit_wizard_view.xml",
],
}
3 changes: 3 additions & 0 deletions quality_control_oca_inspection_matrix/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
3 changes: 3 additions & 0 deletions quality_control_oca_inspection_matrix/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- [Le Filament](https://le-filament.com)
- julienCozo
- remi-filament
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module provides a matrix view for inspection tests, allowing to test multiple products at once.
8 changes: 8 additions & 0 deletions quality_control_oca_inspection_matrix/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
To use this module, you need to:

- Go to *Quality Control* > Inspections
- Select multiple inspections linked to the same test
- Select Actions > Inspection Matrix
- Fill in all fields (you get a first table with quantitative questions, then a table with qualitative questions)
- Save
- The inspections have been filled
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_multi_quality_edit_wizard,access_multi_quality_edit_wizard,model_multi_quality_edit_wizard,quality_control_oca.group_quality_control_user,1,1,1,1
access_multi_quality_edit_line_wizard,access_multi_quality_edit_line_wizard,model_multi_quality_edit_line,quality_control_oca.group_quality_control_user,1,1,1,1
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
204 changes: 204 additions & 0 deletions quality_control_oca_inspection_matrix/static/description/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading