mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[UPD] Update agreement_serviceprofile.pot Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: contract-12.0/contract-12.0-agreement_serviceprofile Translate-URL: https://translation.odoo-community.org/projects/contract-12-0/contract-12-0-agreement_serviceprofile/ Translated using Weblate (Chinese (Simplified)) Currently translated at 100.0% (48 of 48 strings) Translation: contract-12.0/contract-12.0-agreement_serviceprofile Translate-URL: https://translation.odoo-community.org/projects/contract-12-0/contract-12-0-agreement_serviceprofile/zh_CN/ Added translation using Weblate (Portuguese (Brazil)) Added translation using Weblate (German) Added translation using Weblate (Spanish) Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (48 of 48 strings) Translation: contract-12.0/contract-12.0-agreement_serviceprofile Translate-URL: https://translation.odoo-community.org/projects/contract-12-0/contract-12-0-agreement_serviceprofile/pt_BR/
42 lines
1.7 KiB
Python
42 lines
1.7 KiB
Python
# Copyright (C) 2018 - TODAY, Pavlov Media
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
from odoo import fields, models, api
|
|
|
|
|
|
class AgreementServiceProfile(models.Model):
|
|
_name = 'agreement.serviceprofile'
|
|
_inherit = 'mail.thread'
|
|
_description = 'Agreement Service Profiles'
|
|
|
|
def _default_stage_id(self):
|
|
return self.env.ref('agreement_serviceprofile.servpro_stage_draft')
|
|
|
|
name = fields.Char(string="Name", required=True)
|
|
stage_id = fields.Many2one('agreement.stage', string="Stage",
|
|
default=_default_stage_id, copy=False,
|
|
group_expand='_read_group_stage_ids',)
|
|
agreement_id = fields.Many2one('agreement', string="Agreement",
|
|
ondelete="cascade")
|
|
active = fields.Boolean(string="Active",
|
|
default=True,
|
|
help="If unchecked, it will allow you " +
|
|
"to hide this service profile"
|
|
" without removing it.")
|
|
|
|
notes = fields.Text(string="Notes")
|
|
product_id = fields.Many2one('product.template', 'Service Product',
|
|
domain="[('is_serviceprofile', '=', True), "
|
|
"('type', '=', 'service')]",
|
|
required=True)
|
|
partner_id = fields.Many2one(related='agreement_id.partner_id',
|
|
string='Partner')
|
|
|
|
# Used for Kanban grouped_by view
|
|
@api.model
|
|
def _read_group_stage_ids(self, stages, domain, order):
|
|
stage_ids = self.env["agreement.stage"].search(
|
|
[('stage_type', '=', 'serviceprofile')])
|
|
return stage_ids
|