add procurement for service

This commit is contained in:
ivan deng
2018-07-20 15:17:53 +08:00
parent fa0081c605
commit 747dcdd216
33 changed files with 1431 additions and 0 deletions

View 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)