mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
add procurement for service
This commit is contained in:
13
app_procurement_for_service/models/product.py
Normal file
13
app_procurement_for_service/models/product.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# Author: Damien Crier
|
||||
# Copyright 2017 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = 'product.template'
|
||||
|
||||
property_subcontracted_service = fields.Boolean(
|
||||
string="Subcontracted Service",
|
||||
company_dependent=True)
|
||||
Reference in New Issue
Block a user