mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[IMP] Add dynamic field editor
This commit is contained in:
@@ -17,85 +17,75 @@ class Agreement(models.Model):
|
|||||||
string="Is a Template?",
|
string="Is a Template?",
|
||||||
default=False,
|
default=False,
|
||||||
copy=False,
|
copy=False,
|
||||||
help="Make this agreement a template."
|
help="Make this agreement a template.")
|
||||||
)
|
|
||||||
version = fields.Integer(
|
version = fields.Integer(
|
||||||
string="Version",
|
string="Version",
|
||||||
default=1,
|
default=1,
|
||||||
copy=False,
|
copy=False,
|
||||||
help="The versions are used to keep track of document history and "
|
help="The versions are used to keep track of document history and "
|
||||||
"previous versions can be referenced."
|
"previous versions can be referenced.")
|
||||||
)
|
|
||||||
revision = fields.Integer(
|
revision = fields.Integer(
|
||||||
string="Revision",
|
string="Revision",
|
||||||
default=0,
|
default=0,
|
||||||
copy=False,
|
copy=False,
|
||||||
help="The revision will increase with every save event."
|
help="The revision will increase with every save event.")
|
||||||
)
|
|
||||||
description = fields.Text(
|
description = fields.Text(
|
||||||
string="Description",
|
string="Description",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Description of the agreement"
|
help="Description of the agreement")
|
||||||
)
|
|
||||||
dynamic_description = fields.Text(
|
dynamic_description = fields.Text(
|
||||||
compute="_compute_dynamic_description",
|
compute="_compute_dynamic_description",
|
||||||
string="Dynamic Description",
|
string="Dynamic Description",
|
||||||
help='compute dynamic description')
|
help='Compute dynamic description')
|
||||||
start_date = fields.Date(
|
start_date = fields.Date(
|
||||||
string="Start Date",
|
string="Start Date",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="When the agreement starts."
|
help="When the agreement starts.")
|
||||||
)
|
|
||||||
end_date = fields.Date(
|
end_date = fields.Date(
|
||||||
string="End Date",
|
string="End Date",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="When the agreement ends."
|
help="When the agreement ends.")
|
||||||
)
|
|
||||||
color = fields.Integer()
|
color = fields.Integer()
|
||||||
active = fields.Boolean(
|
active = fields.Boolean(
|
||||||
string="Active",
|
string="Active",
|
||||||
default=True,
|
default=True,
|
||||||
help="If unchecked, it will allow you to hide the agreement without "
|
help="If unchecked, it will allow you to hide the agreement without "
|
||||||
"removing it."
|
"removing it.")
|
||||||
)
|
|
||||||
company_signed_date = fields.Date(
|
company_signed_date = fields.Date(
|
||||||
string="Signed on",
|
string="Signed on",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Date the contract was signed by Company."
|
help="Date the contract was signed by Company.")
|
||||||
)
|
|
||||||
partner_signed_date = fields.Date(
|
partner_signed_date = fields.Date(
|
||||||
string="Signed on",
|
string="Signed on",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Date the contract was signed by the Partner."
|
help="Date the contract was signed by the Partner.")
|
||||||
)
|
|
||||||
term = fields.Integer(
|
term = fields.Integer(
|
||||||
string="Term (Months)",
|
string="Term (Months)",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Number of months this agreement/contract is in effect with the "
|
help="Number of months this agreement/contract is in effect with the "
|
||||||
"partner."
|
"partner.")
|
||||||
)
|
|
||||||
expiration_notice = fields.Integer(
|
expiration_notice = fields.Integer(
|
||||||
string="Exp. Notice (Days)",
|
string="Exp. Notice (Days)",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Number of Days before expiration to be notified."
|
help="Number of Days before expiration to be notified.")
|
||||||
)
|
|
||||||
change_notice = fields.Integer(
|
change_notice = fields.Integer(
|
||||||
string="Change Notice (Days)",
|
string="Change Notice (Days)",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Number of Days to be notified before changes."
|
help="Number of Days to be notified before changes.")
|
||||||
)
|
|
||||||
special_terms = fields.Text(
|
special_terms = fields.Text(
|
||||||
string="Special Terms",
|
string="Special Terms",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Any terms that you have agreed to and want to track on the "
|
help="Any terms that you have agreed to and want to track on the "
|
||||||
"agreement/contract."
|
"agreement/contract.")
|
||||||
)
|
dynamic_special_terms = fields.Text(
|
||||||
|
compute="_compute_dynamic_special_terms",
|
||||||
|
string="Dynamic Special Terms",
|
||||||
|
help='Compute dynamic special terms')
|
||||||
contract_value = fields.Monetary(
|
contract_value = fields.Monetary(
|
||||||
compute='_compute_contract_value',
|
compute='_compute_contract_value',
|
||||||
string="Contract Value",
|
string="Contract Value",
|
||||||
help="Total value of the contract over ther entire term.",
|
help="Total value of the contract over ther entire term.",
|
||||||
store=True
|
store=True)
|
||||||
)
|
|
||||||
reference = fields.Char(
|
reference = fields.Char(
|
||||||
string="Reference",
|
string="Reference",
|
||||||
copy=False,
|
copy=False,
|
||||||
@@ -106,114 +96,92 @@ class Agreement(models.Model):
|
|||||||
total_company_mrc = fields.Monetary(
|
total_company_mrc = fields.Monetary(
|
||||||
'Company MRC',
|
'Company MRC',
|
||||||
currency_field='currency_id',
|
currency_field='currency_id',
|
||||||
help="Total company monthly recurring costs."
|
help="Total company monthly recurring costs.")
|
||||||
)
|
|
||||||
total_customer_mrc = fields.Monetary(
|
total_customer_mrc = fields.Monetary(
|
||||||
'Customer MRC',
|
'Customer MRC',
|
||||||
currency_field='currency_id',
|
currency_field='currency_id',
|
||||||
help="Total custemer monthly recurring costs."
|
help="Total custemer monthly recurring costs.")
|
||||||
)
|
|
||||||
total_company_nrc = fields.Monetary(
|
total_company_nrc = fields.Monetary(
|
||||||
'Company NRC',
|
'Company NRC',
|
||||||
currency_field='currency_id',
|
currency_field='currency_id',
|
||||||
help="Total company non-recurring costs."
|
help="Total company non-recurring costs.")
|
||||||
)
|
|
||||||
total_customer_nrc = fields.Monetary(
|
total_customer_nrc = fields.Monetary(
|
||||||
'Customer NRC',
|
'Customer NRC',
|
||||||
currency_field='currency_id',
|
currency_field='currency_id',
|
||||||
help="Total custemer non-monthly recurring costs."
|
help="Total custemer non-monthly recurring costs.")
|
||||||
)
|
|
||||||
increase_type_id = fields.Many2one(
|
increase_type_id = fields.Many2one(
|
||||||
'agreement.increasetype',
|
'agreement.increasetype',
|
||||||
string="Increase Type",
|
string="Increase Type",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="The amount that certain rates may increase."
|
help="The amount that certain rates may increase.")
|
||||||
)
|
|
||||||
termination_requested = fields.Date(
|
termination_requested = fields.Date(
|
||||||
string="Termination Requested Date",
|
string="Termination Requested Date",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Date that a request for termination was received."
|
help="Date that a request for termination was received.")
|
||||||
)
|
|
||||||
termination_date = fields.Date(
|
termination_date = fields.Date(
|
||||||
string="Termination Date",
|
string="Termination Date",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Date that the contract was terminated."
|
help="Date that the contract was terminated.")
|
||||||
)
|
|
||||||
reviewed_date = fields.Date(
|
reviewed_date = fields.Date(
|
||||||
string="Reviewed Date",
|
string="Reviewed Date",
|
||||||
track_visibility='onchange'
|
track_visibility='onchange')
|
||||||
)
|
|
||||||
reviewed_user_id = fields.Many2one(
|
reviewed_user_id = fields.Many2one(
|
||||||
'res.users',
|
'res.users',
|
||||||
string="Reviewed By",
|
string="Reviewed By",
|
||||||
track_visibility='onchange'
|
track_visibility='onchange')
|
||||||
)
|
|
||||||
approved_date = fields.Date(
|
approved_date = fields.Date(
|
||||||
string="Approved Date",
|
string="Approved Date",
|
||||||
track_visibility='onchange'
|
track_visibility='onchange')
|
||||||
)
|
|
||||||
approved_user_id = fields.Many2one(
|
approved_user_id = fields.Many2one(
|
||||||
'res.users',
|
'res.users',
|
||||||
string="Approved By",
|
string="Approved By",
|
||||||
track_visibility='onchange'
|
track_visibility='onchange')
|
||||||
)
|
|
||||||
currency_id = fields.Many2one(
|
currency_id = fields.Many2one(
|
||||||
'res.currency',
|
'res.currency',
|
||||||
string='Currency'
|
string='Currency')
|
||||||
)
|
|
||||||
partner_id = fields.Many2one(
|
partner_id = fields.Many2one(
|
||||||
'res.partner',
|
'res.partner',
|
||||||
string="Partmer",
|
string="Partner",
|
||||||
copy=True,
|
copy=True,
|
||||||
help="The customer or vendor this agreement is related to."
|
help="The customer or vendor this agreement is related to.")
|
||||||
)
|
|
||||||
company_partner_id = fields.Many2one(
|
company_partner_id = fields.Many2one(
|
||||||
'res.partner',
|
'res.partner',
|
||||||
string="Company",
|
string="Company",
|
||||||
copy=True,
|
copy=True,
|
||||||
default=lambda self: self.env.user.company_id.partner_id
|
default=lambda self: self.env.user.company_id.partner_id)
|
||||||
)
|
|
||||||
partner_contact_id = fields.Many2one(
|
partner_contact_id = fields.Many2one(
|
||||||
'res.partner',
|
'res.partner',
|
||||||
string="Partner Contact",
|
string="Partner Contact",
|
||||||
copy=True,
|
copy=True,
|
||||||
help="The primary partner contact (If Applicable)."
|
help="The primary partner contact (If Applicable).")
|
||||||
)
|
|
||||||
partner_contact_phone = fields.Char(
|
partner_contact_phone = fields.Char(
|
||||||
related='partner_contact_id.phone',
|
related='partner_contact_id.phone',
|
||||||
string="Phone"
|
string="Phone")
|
||||||
)
|
|
||||||
partner_contact_email = fields.Char(
|
partner_contact_email = fields.Char(
|
||||||
related='partner_contact_id.email',
|
related='partner_contact_id.email',
|
||||||
string="Email"
|
string="Email")
|
||||||
)
|
|
||||||
company_contact_id = fields.Many2one(
|
company_contact_id = fields.Many2one(
|
||||||
'res.partner',
|
'res.partner',
|
||||||
string="Company Contact",
|
string="Company Contact",
|
||||||
copy=True,
|
copy=True,
|
||||||
help="The primary contact in the company."
|
help="The primary contact in the company.")
|
||||||
)
|
|
||||||
company_contact_phone = fields.Char(
|
company_contact_phone = fields.Char(
|
||||||
related='company_contact_id.phone',
|
related='company_contact_id.phone',
|
||||||
string="Phone"
|
string="Phone")
|
||||||
)
|
|
||||||
company_contact_email = fields.Char(
|
company_contact_email = fields.Char(
|
||||||
related='company_contact_id.email',
|
related='company_contact_id.email',
|
||||||
string="Email"
|
string="Email")
|
||||||
)
|
|
||||||
agreement_type_id = fields.Many2one(
|
agreement_type_id = fields.Many2one(
|
||||||
'agreement.type',
|
'agreement.type',
|
||||||
string="Agreement Type",
|
string="Agreement Type",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Select the type of agreement."
|
help="Select the type of agreement.")
|
||||||
)
|
|
||||||
agreement_subtype_id = fields.Many2one(
|
agreement_subtype_id = fields.Many2one(
|
||||||
'agreement.subtype',
|
'agreement.subtype',
|
||||||
string="Agreement Sub-type",
|
string="Agreement Sub-type",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Select the sub-type of this agreement. Sub-Types are related to "
|
help="Select the sub-type of this agreement. Sub-Types are related to "
|
||||||
"agreement types."
|
"agreement types.")
|
||||||
)
|
|
||||||
product_ids = fields.Many2many(
|
product_ids = fields.Many2many(
|
||||||
'product.template',
|
'product.template',
|
||||||
string="Products & Services")
|
string="Products & Services")
|
||||||
@@ -222,51 +190,43 @@ class Agreement(models.Model):
|
|||||||
string="Sales Order",
|
string="Sales Order",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
copy=False,
|
copy=False,
|
||||||
help="Select the Sales Order that this agreement is related to."
|
help="Select the Sales Order that this agreement is related to.")
|
||||||
)
|
|
||||||
payment_term_id = fields.Many2one(
|
payment_term_id = fields.Many2one(
|
||||||
'account.payment.term',
|
'account.payment.term',
|
||||||
string="Payment Term",
|
string="Payment Term",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Terms of payments."
|
help="Terms of payments.")
|
||||||
)
|
|
||||||
assigned_user_id = fields.Many2one(
|
assigned_user_id = fields.Many2one(
|
||||||
'res.users',
|
'res.users',
|
||||||
string="Assigned To",
|
string="Assigned To",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Select the user who manages this agreement."
|
help="Select the user who manages this agreement.")
|
||||||
)
|
|
||||||
company_signed_user_id = fields.Many2one(
|
company_signed_user_id = fields.Many2one(
|
||||||
'res.users',
|
'res.users',
|
||||||
string="Signed By",
|
string="Signed By",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="The user at our company who authorized/signed the agreement or "
|
help="The user at our company who authorized/signed the agreement or "
|
||||||
"contract."
|
"contract.")
|
||||||
)
|
|
||||||
partner_signed_user_id = fields.Many2one(
|
partner_signed_user_id = fields.Many2one(
|
||||||
'res.partner',
|
'res.partner',
|
||||||
string="Signed By",
|
string="Signed By",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Contact on the account that signed the agreement/contract."
|
help="Contact on the account that signed the agreement/contract.")
|
||||||
)
|
|
||||||
parent_agreement_id = fields.Many2one(
|
parent_agreement_id = fields.Many2one(
|
||||||
'agreement',
|
'agreement',
|
||||||
string="Parent Agreement",
|
string="Parent Agreement",
|
||||||
help="Link this agreement to a parent agreement. For example if this "
|
help="Link this agreement to a parent agreement. For example if this "
|
||||||
"agreement is an amendment to another agreement. This list will "
|
"agreement is an amendment to another agreement. This list will "
|
||||||
"only show other agreements related to the same account."
|
"only show other agreements related to the same account.")
|
||||||
)
|
|
||||||
renewal_type_id = fields.Many2one(
|
renewal_type_id = fields.Many2one(
|
||||||
'agreement.renewaltype',
|
'agreement.renewaltype',
|
||||||
string="Renewal Type",
|
string="Renewal Type",
|
||||||
track_visibility='onchange',
|
track_visibility='onchange',
|
||||||
help="Describes what happens after the contract expires."
|
help="Describes what happens after the contract expires.")
|
||||||
)
|
|
||||||
order_lines_services_ids = fields.One2many(
|
order_lines_services_ids = fields.One2many(
|
||||||
related='sale_order_id.order_line',
|
related='sale_order_id.order_line',
|
||||||
string="Service Order Lines",
|
string="Service Order Lines",
|
||||||
copy=False
|
copy=False)
|
||||||
)
|
|
||||||
recital_ids = fields.One2many('agreement.recital', 'agreement_id',
|
recital_ids = fields.One2many('agreement.recital', 'agreement_id',
|
||||||
string="Recitals", copy=True)
|
string="Recitals", copy=True)
|
||||||
sections_ids = fields.One2many('agreement.section', 'agreement_id',
|
sections_ids = fields.One2many('agreement.section', 'agreement_id',
|
||||||
@@ -289,15 +249,13 @@ class Agreement(models.Model):
|
|||||||
'parent_agreement_id',
|
'parent_agreement_id',
|
||||||
string="Child Agreements",
|
string="Child Agreements",
|
||||||
copy=False,
|
copy=False,
|
||||||
domain=[('active', '=', False)]
|
domain=[('active', '=', False)])
|
||||||
)
|
|
||||||
child_agreements_ids = fields.One2many(
|
child_agreements_ids = fields.One2many(
|
||||||
'agreement',
|
'agreement',
|
||||||
'parent_agreement_id',
|
'parent_agreement_id',
|
||||||
string="Child Agreements",
|
string="Child Agreements",
|
||||||
copy=False,
|
copy=False,
|
||||||
domain=[('active', '=', True)]
|
domain=[('active', '=', True)])
|
||||||
)
|
|
||||||
line_ids = fields.One2many('agreement.line', 'agreement_id',
|
line_ids = fields.One2many('agreement.line', 'agreement_id',
|
||||||
string="Products/Services", copy=False)
|
string="Products/Services", copy=False)
|
||||||
state = fields.Selection([
|
state = fields.Selection([
|
||||||
@@ -305,21 +263,38 @@ class Agreement(models.Model):
|
|||||||
('active', 'Active'),
|
('active', 'Active'),
|
||||||
('inactive', 'Inactive')],
|
('inactive', 'Inactive')],
|
||||||
default='draft',
|
default='draft',
|
||||||
track_visibility='always'
|
track_visibility='always')
|
||||||
)
|
|
||||||
notification_address_id = fields.Many2one(
|
notification_address_id = fields.Many2one(
|
||||||
'res.partner',
|
'res.partner',
|
||||||
string="Notification Address",
|
string="Notification Address",
|
||||||
help="The address to send notificaitons to, if different from "
|
help="The address to send notificaitons to, if different from "
|
||||||
"customer address.(Address Type = Other)"
|
"customer address.(Address Type = Other)")
|
||||||
)
|
|
||||||
signed_contract_filename = fields.Char(
|
signed_contract_filename = fields.Char(
|
||||||
string="Filename"
|
string="Filename")
|
||||||
)
|
|
||||||
signed_contract = fields.Binary(
|
signed_contract = fields.Binary(
|
||||||
string="Signed Document",
|
string="Signed Document",
|
||||||
track_visibility='always'
|
track_visibility='always')
|
||||||
)
|
field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Field",
|
||||||
|
help="""Select target field from the related document model. If it is a
|
||||||
|
relationship field you will be able to select a target field at the
|
||||||
|
destination of the relationship.""")
|
||||||
|
sub_object_id = fields.Many2one(
|
||||||
|
'ir.model', string="Sub-model",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field shows the document model the relationship goes to.""")
|
||||||
|
sub_model_object_field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Sub-field",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field lets you select the target field within the destination document
|
||||||
|
model (sub-model).""")
|
||||||
|
default_value = fields.Char(
|
||||||
|
string="Default Value",
|
||||||
|
help="Optional value to use if the target field is empty.")
|
||||||
|
copyvalue = fields.Char(
|
||||||
|
string="Placeholder Expression",
|
||||||
|
help="""Final placeholder expression, to be copy-pasted in the desired
|
||||||
|
template field.""")
|
||||||
|
|
||||||
# compute the dynamic content for mako expression
|
# compute the dynamic content for mako expression
|
||||||
@api.multi
|
@api.multi
|
||||||
@@ -332,6 +307,16 @@ class Agreement(models.Model):
|
|||||||
agreement.description, 'agreement', agreement.id)
|
agreement.description, 'agreement', agreement.id)
|
||||||
agreement.dynamic_description = description
|
agreement.dynamic_description = description
|
||||||
|
|
||||||
|
@api.multi
|
||||||
|
def _compute_dynamic_special_terms(self):
|
||||||
|
MailTemplates = self.env['mail.template']
|
||||||
|
for agreement in self:
|
||||||
|
lang = agreement.partner_id.lang or 'en_US'
|
||||||
|
special_terms = MailTemplates.with_context(
|
||||||
|
lang=lang).render_template(
|
||||||
|
agreement.special_terms, 'agreement', agreement.id)
|
||||||
|
agreement.dynamic_special_terms = special_terms
|
||||||
|
|
||||||
# compute contract_value field
|
# compute contract_value field
|
||||||
@api.depends('total_customer_mrc', 'total_customer_nrc', 'term')
|
@api.depends('total_customer_mrc', 'total_customer_nrc', 'term')
|
||||||
def _compute_contract_value(self):
|
def _compute_contract_value(self):
|
||||||
@@ -349,6 +334,20 @@ class Agreement(models.Model):
|
|||||||
for record in self:
|
for record in self:
|
||||||
record.total_company_mrc = amount_total
|
record.total_company_mrc = amount_total
|
||||||
|
|
||||||
|
@api.onchange('field_id')
|
||||||
|
def onchange_sub_object_id(self):
|
||||||
|
if self.field_id:
|
||||||
|
self.sub_object_id = self.env['ir.model'].search(
|
||||||
|
[('model', '=', self.field_id.relation)])[0]
|
||||||
|
|
||||||
|
@api.onchange('sub_model_object_field_id', 'default_value')
|
||||||
|
def onchange_copyvalue(self):
|
||||||
|
if self.sub_model_object_field_id or self.default_value:
|
||||||
|
self.copyvalue = "${object.%s.%s or %s}" % \
|
||||||
|
(self.field_id.name,
|
||||||
|
self.sub_model_object_field_id.name,
|
||||||
|
self.default_value or '\'\'')
|
||||||
|
|
||||||
# Used for Kanban grouped_by view
|
# Used for Kanban grouped_by view
|
||||||
@api.model
|
@api.model
|
||||||
def _read_group_stage_ids(self, stages, domain, order):
|
def _read_group_stage_ids(self, stages, domain, order):
|
||||||
|
|||||||
@@ -22,11 +22,47 @@ class AgreementAppendix(models.Model):
|
|||||||
agreement_id = fields.Many2one('agreement', string="Agreement",
|
agreement_id = fields.Many2one('agreement', string="Agreement",
|
||||||
ondelete="cascade")
|
ondelete="cascade")
|
||||||
active = fields.Boolean(
|
active = fields.Boolean(
|
||||||
string="Active",
|
string="Active", default=True,
|
||||||
default=True,
|
|
||||||
help="If unchecked, it will allow you to hide this appendix without "
|
help="If unchecked, it will allow you to hide this appendix without "
|
||||||
"removing it.")
|
"removing it.")
|
||||||
|
|
||||||
|
# Dynamic field editor
|
||||||
|
field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Field",
|
||||||
|
help="""Select target field from the related document model. If it is a
|
||||||
|
relationship field you will be able to select a target field at the
|
||||||
|
destination of the relationship.""")
|
||||||
|
sub_object_id = fields.Many2one(
|
||||||
|
'ir.model', string="Sub-model",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field shows the document model the relationship goes to.""")
|
||||||
|
sub_model_object_field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Sub-field",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field lets you select the target field within the destination document
|
||||||
|
model (sub-model).""")
|
||||||
|
default_value = fields.Char(
|
||||||
|
string="Default Value",
|
||||||
|
help="Optional value to use if the target field is empty.")
|
||||||
|
copyvalue = fields.Char(
|
||||||
|
string="Placeholder Expression",
|
||||||
|
help="""Final placeholder expression, to be copy-pasted in the desired
|
||||||
|
template field.""")
|
||||||
|
|
||||||
|
@api.onchange('field_id')
|
||||||
|
def onchange_sub_object_id(self):
|
||||||
|
if self.field_id:
|
||||||
|
self.sub_object_id = self.env['ir.model'].search(
|
||||||
|
[('model', '=', self.field_id.relation)])[0]
|
||||||
|
|
||||||
|
@api.onchange('sub_model_object_field_id', 'default_value')
|
||||||
|
def onchange_copyvalue(self):
|
||||||
|
if self.sub_model_object_field_id or self.default_value:
|
||||||
|
self.copyvalue = "${object.%s.%s or %s}" % \
|
||||||
|
(self.field_id.name,
|
||||||
|
self.sub_model_object_field_id.name,
|
||||||
|
self.default_value or '\'\'')
|
||||||
|
|
||||||
# compute the dynamic content for mako expression
|
# compute the dynamic content for mako expression
|
||||||
@api.multi
|
@api.multi
|
||||||
def _compute_dynamic_content(self):
|
def _compute_dynamic_content(self):
|
||||||
|
|||||||
@@ -33,8 +33,44 @@ class AgreementClause(models.Model):
|
|||||||
string="Active",
|
string="Active",
|
||||||
default=True,
|
default=True,
|
||||||
help="If unchecked, it will allow you to hide the agreement without "
|
help="If unchecked, it will allow you to hide the agreement without "
|
||||||
"removing it."
|
"removing it.")
|
||||||
)
|
|
||||||
|
# Dynamic field editor
|
||||||
|
field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Field",
|
||||||
|
help="""Select target field from the related document model. If it is a
|
||||||
|
relationship field you will be able to select a target field at the
|
||||||
|
destination of the relationship.""")
|
||||||
|
sub_object_id = fields.Many2one(
|
||||||
|
'ir.model', string="Sub-model",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field shows the document model the relationship goes to.""")
|
||||||
|
sub_model_object_field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Sub-field",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field lets you select the target field within the destination document
|
||||||
|
model (sub-model).""")
|
||||||
|
default_value = fields.Char(
|
||||||
|
string="Default Value",
|
||||||
|
help="Optional value to use if the target field is empty.")
|
||||||
|
copyvalue = fields.Char(
|
||||||
|
string="Placeholder Expression",
|
||||||
|
help="""Final placeholder expression, to be copy-pasted in the desired
|
||||||
|
template field.""")
|
||||||
|
|
||||||
|
@api.onchange('field_id')
|
||||||
|
def onchange_sub_object_id(self):
|
||||||
|
if self.field_id:
|
||||||
|
self.sub_object_id = self.env['ir.model'].search(
|
||||||
|
[('model', '=', self.field_id.relation)])[0]
|
||||||
|
|
||||||
|
@api.onchange('sub_model_object_field_id', 'default_value')
|
||||||
|
def onchange_copyvalue(self):
|
||||||
|
if self.sub_model_object_field_id or self.default_value:
|
||||||
|
self.copyvalue = "${object.%s.%s or %s}" % \
|
||||||
|
(self.field_id.name,
|
||||||
|
self.sub_model_object_field_id.name,
|
||||||
|
self.default_value or '\'\'')
|
||||||
|
|
||||||
# compute the dynamic content for mako expression
|
# compute the dynamic content for mako expression
|
||||||
@api.multi
|
@api.multi
|
||||||
|
|||||||
@@ -27,6 +27,43 @@ class AgreementRecital(models.Model):
|
|||||||
help="If unchecked, it will allow you to hide this recital without "
|
help="If unchecked, it will allow you to hide this recital without "
|
||||||
"removing it.")
|
"removing it.")
|
||||||
|
|
||||||
|
# Dynamic field editor
|
||||||
|
field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Field",
|
||||||
|
help="""Select target field from the related document model. If it is a
|
||||||
|
relationship field you will be able to select a target field at the
|
||||||
|
destination of the relationship.""")
|
||||||
|
sub_object_id = fields.Many2one(
|
||||||
|
'ir.model', string="Sub-model",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field shows the document model the relationship goes to.""")
|
||||||
|
sub_model_object_field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Sub-field",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field lets you select the target field within the destination document
|
||||||
|
model (sub-model).""")
|
||||||
|
default_value = fields.Char(
|
||||||
|
string="Default Value",
|
||||||
|
help="Optional value to use if the target field is empty.")
|
||||||
|
copyvalue = fields.Char(
|
||||||
|
string="Placeholder Expression",
|
||||||
|
help="""Final placeholder expression, to be copy-pasted in the desired
|
||||||
|
template field.""")
|
||||||
|
|
||||||
|
@api.onchange('field_id')
|
||||||
|
def onchange_sub_object_id(self):
|
||||||
|
if self.field_id:
|
||||||
|
self.sub_object_id = self.env['ir.model'].search(
|
||||||
|
[('model', '=', self.field_id.relation)])[0]
|
||||||
|
|
||||||
|
@api.onchange('sub_model_object_field_id', 'default_value')
|
||||||
|
def onchange_copyvalue(self):
|
||||||
|
if self.sub_model_object_field_id or self.default_value:
|
||||||
|
self.copyvalue = "${object.%s.%s or %s}" % \
|
||||||
|
(self.field_id.name,
|
||||||
|
self.sub_model_object_field_id.name,
|
||||||
|
self.default_value or '\'\'')
|
||||||
|
|
||||||
# compute the dynamic content for mako expression
|
# compute the dynamic content for mako expression
|
||||||
@api.multi
|
@api.multi
|
||||||
def _compute_dynamic_content(self):
|
def _compute_dynamic_content(self):
|
||||||
|
|||||||
@@ -14,27 +14,54 @@ class AgreementSection(models.Model):
|
|||||||
help="The title is displayed on the PDF."
|
help="The title is displayed on the PDF."
|
||||||
"The name is not.")
|
"The name is not.")
|
||||||
sequence = fields.Integer(string="Sequence")
|
sequence = fields.Integer(string="Sequence")
|
||||||
agreement_id = fields.Many2one(
|
agreement_id = fields.Many2one('agreement', string="Agreement",
|
||||||
'agreement',
|
ondelete="cascade")
|
||||||
string="Agreement",
|
clauses_ids = fields.One2many('agreement.clause', 'section_id',
|
||||||
ondelete="cascade"
|
string="Clauses")
|
||||||
)
|
|
||||||
clauses_ids = fields.One2many(
|
|
||||||
'agreement.clause',
|
|
||||||
'section_id',
|
|
||||||
string="Clauses"
|
|
||||||
)
|
|
||||||
content = fields.Html(string="Section Content")
|
content = fields.Html(string="Section Content")
|
||||||
dynamic_content = fields.Html(
|
dynamic_content = fields.Html(compute="_compute_dynamic_content",
|
||||||
compute="_compute_dynamic_content",
|
string="Dynamic Content",
|
||||||
string="Dynamic Content",
|
help='compute dynamic Content')
|
||||||
help='compute dynamic Content')
|
active = fields.Boolean(string="Active", default=True,
|
||||||
active = fields.Boolean(
|
help="""If unchecked, it will allow you to hide the
|
||||||
string="Active",
|
agreement without removing it.""")
|
||||||
default=True,
|
|
||||||
help="If unchecked, it will allow you to hide the agreement without "
|
# Dynamic field editor
|
||||||
"removing it."
|
field_id = fields.Many2one(
|
||||||
)
|
'ir.model.fields', string="Field",
|
||||||
|
help="""Select target field from the related document model. If it is a
|
||||||
|
relationship field you will be able to select a target field at the
|
||||||
|
destination of the relationship.""")
|
||||||
|
sub_object_id = fields.Many2one(
|
||||||
|
'ir.model', string="Sub-model",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field shows the document model the relationship goes to.""")
|
||||||
|
sub_model_object_field_id = fields.Many2one(
|
||||||
|
'ir.model.fields', string="Sub-field",
|
||||||
|
help="""When a relationship field is selected as first field, this
|
||||||
|
field lets you select the target field within the destination document
|
||||||
|
model (sub-model).""")
|
||||||
|
default_value = fields.Char(
|
||||||
|
string="Default Value",
|
||||||
|
help="Optional value to use if the target field is empty.")
|
||||||
|
copyvalue = fields.Char(
|
||||||
|
string="Placeholder Expression",
|
||||||
|
help="""Final placeholder expression, to be copy-pasted in the desired
|
||||||
|
template field.""")
|
||||||
|
|
||||||
|
@api.onchange('field_id')
|
||||||
|
def onchange_sub_object_id(self):
|
||||||
|
if self.field_id:
|
||||||
|
self.sub_object_id = self.env['ir.model'].search(
|
||||||
|
[('model', '=', self.field_id.relation)])[0]
|
||||||
|
|
||||||
|
@api.onchange('sub_model_object_field_id', 'default_value')
|
||||||
|
def onchange_copyvalue(self):
|
||||||
|
if self.sub_model_object_field_id or self.default_value:
|
||||||
|
self.copyvalue = "${object.%s.%s or %s}" % \
|
||||||
|
(self.field_id.name,
|
||||||
|
self.sub_model_object_field_id.name,
|
||||||
|
self.default_value or '\'\'')
|
||||||
|
|
||||||
# compute the dynamic content for mako expression
|
# compute the dynamic content for mako expression
|
||||||
@api.multi
|
@api.multi
|
||||||
|
|||||||
@@ -89,7 +89,7 @@
|
|||||||
<t t-if="special_term">
|
<t t-if="special_term">
|
||||||
<h2>Special Terms</h2>
|
<h2>Special Terms</h2>
|
||||||
<div name="special_term">
|
<div name="special_term">
|
||||||
<p t-field="doc.special_terms"/>
|
<p t-field="doc.dynamic_special_terms"/>
|
||||||
</div>
|
</div>
|
||||||
</t>
|
</t>
|
||||||
<h2>Signatures</h2>
|
<h2>Signatures</h2>
|
||||||
|
|||||||
@@ -63,13 +63,32 @@
|
|||||||
required="True"
|
required="True"
|
||||||
nolabel="1"/>
|
nolabel="1"/>
|
||||||
</group>
|
</group>
|
||||||
<div class="oe_edit_only">
|
<group class="oe_edit_only">
|
||||||
|
<group>
|
||||||
|
<field name="field_id"
|
||||||
|
domain="[('model_id', '=', active_model),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"/>
|
||||||
|
<field name="sub_object_id" readonly="1"/>
|
||||||
|
<field name="sub_model_object_field_id"
|
||||||
|
domain="[('model_id', '=', sub_object_id),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"
|
||||||
|
attrs="{'readonly':[('sub_object_id', '=', False)],
|
||||||
|
'required':[('sub_object_id', '!=', False)]}"/>
|
||||||
|
<field name="default_value"/>
|
||||||
|
<field name="copyvalue"/>
|
||||||
|
</group>
|
||||||
<p>
|
<p>
|
||||||
For dynamic content use mako expression '${expression}'. For ex:
|
This section (on the left) allows you to add dynamic fields inside the description and special terms.
|
||||||
1. object's field name: ${object.field_name} or
|
<ol>
|
||||||
2. many2one field name: ${object.many2one_field_id.field_name}
|
<li>Select the agreement field</li>
|
||||||
|
<li>Select the sub-field</li>
|
||||||
|
<li>Enter the default value if the field is empty</li>
|
||||||
|
<li>Copy and paste the placeholder expression in the description or the special terms</li>
|
||||||
|
</ol>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</group>
|
||||||
<group name="parties" string="Parties">
|
<group name="parties" string="Parties">
|
||||||
<group name="partner"
|
<group name="partner"
|
||||||
string="Partner">
|
string="Partner">
|
||||||
|
|||||||
@@ -42,13 +42,32 @@
|
|||||||
</group>
|
</group>
|
||||||
</group>
|
</group>
|
||||||
<field name="content" widget="html"/>
|
<field name="content" widget="html"/>
|
||||||
<div class="oe_edit_only">
|
<group class="oe_edit_only">
|
||||||
|
<group>
|
||||||
|
<field name="field_id"
|
||||||
|
domain="[('model_id', '=', active_model),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"/>
|
||||||
|
<field name="sub_object_id" readonly="1"/>
|
||||||
|
<field name="sub_model_object_field_id"
|
||||||
|
domain="[('model_id', '=', sub_object_id),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"
|
||||||
|
attrs="{'readonly':[('sub_object_id', '=', False)],
|
||||||
|
'required':[('sub_object_id', '!=', False)]}"/>
|
||||||
|
<field name="default_value"/>
|
||||||
|
<field name="copyvalue"/>
|
||||||
|
</group>
|
||||||
<p>
|
<p>
|
||||||
For dynamic content use mako expression '${expression}'. For ex:
|
This section (on the left) allows you to add dynamic fields inside the content.
|
||||||
1. object's field name: ${object.field_name} or
|
<ol>
|
||||||
2. many2one field name: ${object.many2one_field_id.field_name}
|
<li>Select the appendix field</li>
|
||||||
|
<li>Select the sub-field</li>
|
||||||
|
<li>Enter the default value if the field is empty</li>
|
||||||
|
<li>Copy and paste the placeholder expression in the content</li>
|
||||||
|
</ol>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</group>
|
||||||
</sheet>
|
</sheet>
|
||||||
</form>
|
</form>
|
||||||
</field>
|
</field>
|
||||||
|
|||||||
@@ -44,13 +44,32 @@
|
|||||||
</group>
|
</group>
|
||||||
</group>
|
</group>
|
||||||
<field name="content" widget="html"/>
|
<field name="content" widget="html"/>
|
||||||
<div class="oe_edit_only">
|
<group class="oe_edit_only">
|
||||||
|
<group>
|
||||||
|
<field name="field_id"
|
||||||
|
domain="[('model_id', '=', active_model),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"/>
|
||||||
|
<field name="sub_object_id" readonly="1"/>
|
||||||
|
<field name="sub_model_object_field_id"
|
||||||
|
domain="[('model_id', '=', sub_object_id),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"
|
||||||
|
attrs="{'readonly':[('sub_object_id', '=', False)],
|
||||||
|
'required':[('sub_object_id', '!=', False)]}"/>
|
||||||
|
<field name="default_value"/>
|
||||||
|
<field name="copyvalue"/>
|
||||||
|
</group>
|
||||||
<p>
|
<p>
|
||||||
For dynamic content use mako expression '${expression}'. For ex:
|
This section (on the left) allows you to add dynamic fields inside the content.
|
||||||
1. object's field name: ${object.field_name} or
|
<ol>
|
||||||
2. many2one field name: ${object.many2one_field_id.field_name}
|
<li>Select the clause field</li>
|
||||||
|
<li>Select the sub-field</li>
|
||||||
|
<li>Enter the default value if the field is empty</li>
|
||||||
|
<li>Copy and paste the placeholder expression in the content</li>
|
||||||
|
</ol>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</group>
|
||||||
</sheet>
|
</sheet>
|
||||||
</form>
|
</form>
|
||||||
</field>
|
</field>
|
||||||
|
|||||||
@@ -42,13 +42,32 @@
|
|||||||
</group>
|
</group>
|
||||||
</group>
|
</group>
|
||||||
<field name="content" widget="html"/>
|
<field name="content" widget="html"/>
|
||||||
<div class="oe_edit_only">
|
<group class="oe_edit_only">
|
||||||
|
<group>
|
||||||
|
<field name="field_id"
|
||||||
|
domain="[('model_id', '=', active_model),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"/>
|
||||||
|
<field name="sub_object_id" readonly="1"/>
|
||||||
|
<field name="sub_model_object_field_id"
|
||||||
|
domain="[('model_id', '=', sub_object_id),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"
|
||||||
|
attrs="{'readonly':[('sub_object_id', '=', False)],
|
||||||
|
'required':[('sub_object_id', '!=', False)]}"/>
|
||||||
|
<field name="default_value"/>
|
||||||
|
<field name="copyvalue"/>
|
||||||
|
</group>
|
||||||
<p>
|
<p>
|
||||||
For dynamic content use mako expression '${expression}'. For ex:
|
This section (on the left) allows you to add dynamic fields inside the content.
|
||||||
1. object's field name: ${object.field_name} or
|
<ol>
|
||||||
2. many2one field name: ${object.many2one_field_id.field_name}
|
<li>Select the recital field</li>
|
||||||
|
<li>Select the sub-field</li>
|
||||||
|
<li>Enter the default value if the field is empty</li>
|
||||||
|
<li>Copy and paste the placeholder expression in the content</li>
|
||||||
|
</ol>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</group>
|
||||||
</sheet>
|
</sheet>
|
||||||
</form>
|
</form>
|
||||||
</field>
|
</field>
|
||||||
|
|||||||
@@ -44,13 +44,32 @@
|
|||||||
<notebook>
|
<notebook>
|
||||||
<page string="Content">
|
<page string="Content">
|
||||||
<field name='content' nolabel="1"/>
|
<field name='content' nolabel="1"/>
|
||||||
<div class="oe_edit_only">
|
<group class="oe_edit_only">
|
||||||
|
<group>
|
||||||
|
<field name="field_id"
|
||||||
|
domain="[('model_id', '=', active_model),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"/>
|
||||||
|
<field name="sub_object_id" readonly="1"/>
|
||||||
|
<field name="sub_model_object_field_id"
|
||||||
|
domain="[('model_id', '=', sub_object_id),
|
||||||
|
('ttype', '!=', 'one2many'),
|
||||||
|
('ttype', '!=', 'many2many')]"
|
||||||
|
attrs="{'readonly':[('sub_object_id', '=', False)],
|
||||||
|
'required':[('sub_object_id', '!=', False)]}"/>
|
||||||
|
<field name="default_value"/>
|
||||||
|
<field name="copyvalue"/>
|
||||||
|
</group>
|
||||||
<p>
|
<p>
|
||||||
For dynamic content use mako expression '${expression}'. For ex:
|
This section (on the left) allows you to add dynamic fields inside the content.
|
||||||
1. object's field name: ${object.field_name} or
|
<ol>
|
||||||
2. many2one field name: ${object.many2one_field_id.field_name}
|
<li>Select the section field</li>
|
||||||
|
<li>Select the sub-field</li>
|
||||||
|
<li>Enter the default value if the field is empty</li>
|
||||||
|
<li>Copy and paste the placeholder expression in the content</li>
|
||||||
|
</ol>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</group>
|
||||||
</page>
|
</page>
|
||||||
<page string="Clauses">
|
<page string="Clauses">
|
||||||
<field name="clauses_ids"
|
<field name="clauses_ids"
|
||||||
|
|||||||
@@ -25,7 +25,11 @@
|
|||||||
<h1><field name="name"/></h1>
|
<h1><field name="name"/></h1>
|
||||||
</div>
|
</div>
|
||||||
<field name="agreement_subtypes_ids"
|
<field name="agreement_subtypes_ids"
|
||||||
nolabel="1"/>
|
nolabel="1">
|
||||||
|
<tree editable="bottom">
|
||||||
|
<field name="name"/>
|
||||||
|
</tree>
|
||||||
|
</field>
|
||||||
</sheet>
|
</sheet>
|
||||||
</form>
|
</form>
|
||||||
</field>
|
</field>
|
||||||
|
|||||||
Reference in New Issue
Block a user