Files
manufacture/quality_control_stock_oca/__manifest__.py
Jordi Ballester Alomar 0996836986 [quality_control_stock][FIX] the stock user should be able to
create quality control inspection without necessarily being
quality control user. It is common that the person doing the
picking is not going to be the same as the one doing the inspection.

So when a stock user create the transfer, the system will create
the necessary qc inspections, regardless if the user has permissions
to process them.
2021-10-04 12:19:41 +02:00

33 lines
1.0 KiB
Python

# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
# Copyright 2014 Oihane Crucelaegui - AvanzOSC
# Copyright 2018 Simone Rubino - Agile Business Group
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Quality control - Stock",
"version": "11.0.1.0.0",
"category": "Quality control",
"license": "AGPL-3",
"author": "OdooMRP team, "
"AvanzOSC, "
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
"Agile Business Group, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/manufacture/tree/11.0/"
"quality_control_stock",
"depends": [
"quality_control",
"stock",
],
"data": [
"security/ir.model.access.csv",
"data/quality_control_stock_data.xml",
"views/qc_inspection_view.xml",
"views/stock_picking_view.xml",
"views/stock_production_lot_view.xml",
],
"post_init_hook": "post_init_hook",
"installable": True,
"auto_install": True,
}