Skip to content

Instantly share code, notes, and snippets.

View ofelix03's full-sized avatar

Felix Otoo ofelix03

View GitHub Profile
<odoo>
<data>
<record id="interested_property_template" model="mail.template">
<field name="name">Realtor: I'm Intersted In Property</field>
<field name="model_id" ref="model_realtor_property" />
<field name="subject">Someone's Interested in Your Property</field>
<field name="email_from">ofelix03@gmail.com</field>
<field name="email_to">${object.env.user.email}</field>
<field name="body_html" type="html">
<div>
<odoo>
<data>
<record id="interested_property_template" model="mail.template">
<field name="name">Realtor: I'm Intersted In Property</field>
<field name="model_id" ref="model_realtor_property" />
<field name="body_html" type="html">
<div>
<p>Hello <strong>--property-manager-name--</strong>,</p>
<p>An individual has shown interest in your property <strong>--property-name--</strong>.</p>
from odoo import fields, models
class Property(models.Model):
_name = "realtor.property"
_description = "Real Estate Property"
name = fields.Char(required=True)
manager_id = fields.Many2one(
comodel_name="realtor.property.manager", string="Manager", required=True
from odoo import fields, models
class Property(models.Model):
_name = "realtor.property"
_description = "Real Estate Property"
name = fields.Char(required=True)
manager_id = fields.Many2one(
comodel_name="realtor.property.manager", string="Manager", required=True
)
from odoo import models
class SomeModel(models.Model):
_name = 'some.model'
# Defines the field used to to store records archive state
# Odoo supports only two fields for archiving and unarchiving records, active and x_active field
_active_name = 'x_active'
def action_archive_method(self):
@api.model
def create(self, vals):
try:
# if user has right permission, continue with create operation
return super(Customer, self).create(vals)
except AccessError:
raise ValidationError(_("Sorry! you don't have the right permission to create this record"))
@api.model
def create(self, vals):
if not self.check_access_rights('create', raise_exception=False):
raise ValidationError(_("Sorry! you don't have the right permission to create this record"))
# user has right permission, continue with operation
return super(Customer, self).create(vals)
base_url = self.get_base_url()
self.env['ir.config_parameter'].get_param('web.base_url')
def action_add_bank(self):
action = self.get_formview_action()
action['target'] = 'new'
action['default_bank_reference': self.bank_reference
return action