Skip to content

Commit

Permalink
[11.0] [ADD] purchase_request_subcontracted_service
Browse files Browse the repository at this point in the history
  • Loading branch information
HviorForgeFlow committed Dec 7, 2018
1 parent 69deb30 commit 775286c
Show file tree
Hide file tree
Showing 14 changed files with 579 additions and 0 deletions.
1 change: 1 addition & 0 deletions oca_dependencies.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
server-tools
product-attribute
server-ux
purchase-workflow https://github.com/Eficent/purchase-workflow 11.0-mig-purchase_request
80 changes: 80 additions & 0 deletions purchase_request_subcontracted_service/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
======================================
Purchase Request Subcontracted Service
======================================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! 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-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github
:target: https://github.com/OCA/purchase-workflow/tree/11.0/purchase_request_subcontracted_service
:alt: OCA/purchase-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/purchase-workflow-11-0/purchase-workflow-11-0-purchase_request_subcontracted_service
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/142/11.0
:alt: Try me on Runbot

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

Glue module that allows purchase request on service products.

**Table of contents**

.. contents::
:local:

Usage
=====

Go to product / General Information.

If Product Type is 'Service', you can select 'Purchase Request'.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/purchase-workflow/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/purchase-workflow/issues/new?body=module:%20purchase_request_subcontracted_service%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 Business and IT Consulting Services S.L.

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

* Héctor Villarreal <[email protected]>

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/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/11.0/purchase_request_subcontracted_service>`_ 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 purchase_request_subcontracted_service/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
21 changes: 21 additions & 0 deletions purchase_request_subcontracted_service/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2018 Eficent Business and IT Consulting Services S.L.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0).
{
"name": "Purchase Request Subcontracted Service",
"author": "Eficent Business and IT Consulting Services S.L., "
"Odoo Community Association (OCA)",
"version": "11.0.1.0.0",
"website": "https://github.com/OCA/purchase-workflow",
"summary": "Glue module to purchase request on services.",
"category": "Purchase Management",
"depends": [
"purchase_request",
"product"
],
"data": [
"views/product_template.xml",
],
"license": 'LGPL-3',
'installable': True,
'auto_install': True,
}
1 change: 1 addition & 0 deletions purchase_request_subcontracted_service/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import product
30 changes: 30 additions & 0 deletions purchase_request_subcontracted_service/models/product.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright 2018 Eficent Business and IT Consulting Services S.L.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0).
from odoo import api, fields, models


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

purchase_request_service = fields.Boolean(
string="Purchase Request Service",
compute='_compute_purchase_request',
inverse='_inverse_purchase_request',
help="When this option is selected, any procurement for services"
"raising from the inventory subsystem (like services for"
"subcontracting in manufacturing) will translate into a purchase"
"request."
)

@api.multi
@api.depends('purchase_request')
def _compute_purchase_request(self):
for rec in self:
if rec.type == 'service':
rec.purchase_request_service = rec.purchase_request

@api.multi
def _inverse_purchase_request(self):
for rec in self:
if rec.type == 'service':
rec.purchase_request = rec.purchase_request_service
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Héctor Villarreal <[email protected]>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Glue module that allows purchase request on service products.
3 changes: 3 additions & 0 deletions purchase_request_subcontracted_service/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Go to product / General Information.

If Product Type is 'Service', you can select 'Purchase Request'.
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 775286c

Please sign in to comment.