Skip to content

Commit

Permalink
Merge pull request #328 from Eficent/11.0-add-mrp_production_originat…
Browse files Browse the repository at this point in the history
…ing_user

[11.0][ADD] mrp_stock_orderpoint_manual_procurement
  • Loading branch information
LoisRForgeFlow committed Feb 28, 2019
2 parents f440d3d + b415ecb commit 7b459d3
Show file tree
Hide file tree
Showing 15 changed files with 721 additions and 1 deletion.
82 changes: 82 additions & 0 deletions mrp_stock_orderpoint_manual_procurement/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
=======================================
MRP Stock Orderpoint Manual Procurement
=======================================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! 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%2Fmanufacture-lightgray.png?logo=github
:target: https://github.com/OCA/manufacture/tree/11.0/mrp_stock_orderpoint_manual_procurement
:alt: OCA/manufacture
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/manufacture-11-0/manufacture-11-0-mrp_stock_orderpoint_manual_procurement
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/129/11.0
:alt: Try me on Runbot

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

This module updates a new field *Requested by* in Manufacturing Orders
in the case the MO has been created as a result of a manual procurement from
an orderpoint.

**Table of contents**

.. contents::
:local:

Usage
=====

Go to an orderpoint an do a manual procurement for a manufactured product.
Your user will be set as *Requeste by* in the newly created MO.

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 smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/manufacture/issues/new?body=module:%20mrp_stock_orderpoint_manual_procurement%0Aversion:%2011.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
~~~~~~~

* Eficent

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

* Adria Gil Sorribes <adria.gil@eficent.com>
* Lois Rilo Antelo <lois.rilo@eficent.com>

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/11.0/mrp_stock_orderpoint_manual_procurement>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions mrp_stock_orderpoint_manual_procurement/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from . import models
24 changes: 24 additions & 0 deletions mrp_stock_orderpoint_manual_procurement/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2018 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "MRP Stock Orderpoint Manual Procurement",
"summary": "Updates the value of MO Responsible and keeps track"
"of changes regarding this field",
"version": "11.0.1.0.0",
"author": "Eficent, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/manufacture",
"category": "Manufacturing",
"depends": [
"mrp",
"stock_orderpoint_manual_procurement",
],
"data": [
"views/mrp_production_view.xml",
],
"license": "AGPL-3",
'installable': True,
'application': False,
'auto_install': True
}
4 changes: 4 additions & 0 deletions mrp_stock_orderpoint_manual_procurement/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from . import procurement
from . import mrp_production
13 changes: 13 additions & 0 deletions mrp_stock_orderpoint_manual_procurement/models/mrp_production.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from odoo import fields, models


class MrpProduction(models.Model):
_inherit = 'mrp.production'

requested_by = fields.Many2one(
comodel_name='res.users',
track_visibility='always',
)
18 changes: 18 additions & 0 deletions mrp_stock_orderpoint_manual_procurement/models/procurement.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from odoo import models


class ProcurementRule(models.Model):
_inherit = 'procurement.rule'

def _prepare_mo_vals(self, product_id, product_qty, product_uom,
location_id, name, origin, values, bom):
res = super(ProcurementRule, self)._prepare_mo_vals(
product_id, product_qty, product_uom, location_id, name,
origin, values, bom)
requested_uid = self.env.context.get('requested_uid')
if requested_uid:
res.update({'requested_by': requested_uid.id})
return res
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Adria Gil Sorribes <adria.gil@eficent.com>
* Lois Rilo Antelo <lois.rilo@eficent.com>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This module updates a new field *Requested by* in Manufacturing Orders
in the case the MO has been created as a result of a manual procurement from
an orderpoint.
2 changes: 2 additions & 0 deletions mrp_stock_orderpoint_manual_procurement/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Go to an orderpoint an do a manual procurement for a manufactured product.
Your user will be set as *Requeste by* in the newly created MO.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7b459d3

Please sign in to comment.