mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
14 lines
355 B
Python
14 lines
355 B
Python
# 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)
|