Skip to content

Commit 12ca7f4

Browse files
Chapter 15: The final word
1 parent bc4a208 commit 12ca7f4

12 files changed

+53
-47
lines changed

estate/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
'base'
88
],
99
'data': [
10-
'ir.model.access.csv',
10+
'security/ir.model.access.csv',
1111
'views/estate_property_type_views.xml',
1212
'views/estate_property_tag_views.xml',
1313
'views/estate_property_offer_views.xml',

estate/models/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from . import estate_property_tag
33
from . import estate_property_offer
44
from . import estate_property
5-
from . import estate_user
5+
from . import res_user

estate/models/estate_property.py

+23-22
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
from odoo import api, fields, models, exceptions
1+
"""Odoo modules"""
22
from dateutil.relativedelta import relativedelta
3+
from odoo import api, fields, models, exceptions
34
from odoo.exceptions import ValidationError
45
from odoo.tools import float_utils as fu
56

67
class EstateProperty(models.Model):
8+
'''Estate property'''
79
_name = "estate.property"
810
_description = "Property of an estate"
911
_order = "sequence, id desc"
@@ -28,7 +30,7 @@ class EstateProperty(models.Model):
2830
garden_orientation = fields.Selection(
2931
string = "Orientation",
3032
selection = [('north', 'North'), ('east', 'East'), ('south', 'South'), ('west', 'West')]
31-
)
33+
)
3234
active = fields.Boolean("Active", default = True)
3335
state = fields.Selection(
3436
string = "Status",
@@ -54,9 +56,6 @@ class EstateProperty(models.Model):
5456

5557

5658

57-
def _default_date_availability(self):
58-
return fields.Date.context_today(self) + relativedelta(months=3)
59-
6059
@api.depends("living_area", "garden_area")
6160
def _compute_area(self):
6261
for record in self:
@@ -66,48 +65,50 @@ def _compute_area(self):
6665
@api.depends("offer_ids")
6766
def _compute_best_price(self):
6867
for record in self:
69-
if (len(record.offer_ids) > 0):
68+
if record.offer_ids:
7069
record.best_price = max(record.offer_ids.mapped('price'))
7170
else:
7271
record.best_price = 0
73-
72+
7473
@api.onchange("garden")
7574
def _onchange_garden(self):
7675
self.garden_area = 10 if self.garden else 0
7776
self.garden_orientation = 'north' if self.garden else ''
7877

78+
def _default_date_availability(self):
79+
return fields.Date.context_today(self) + relativedelta(months=3)
80+
7981

8082

8183
def cancel_property(self):
84+
'''Cancel a property selling'''
8285
for record in self:
83-
if (record.state == 'sold'):
86+
if record.state == 'sold':
8487
raise exceptions.UserError("Sold property cannot be cancelled")
85-
continue
86-
else:
87-
record.state = 'cancelled'
88+
89+
record.state = 'cancelled'
8890

8991
return True
90-
92+
9193
def sell_property(self):
94+
'''Mark an estate property as sold'''
9295
for record in self:
93-
if (record.state == 'cancelled'):
96+
if record.state == 'cancelled':
9497
raise exceptions.UserError("Cancelled property cannot be sold")
95-
continue
96-
98+
9799
record.state = 'sold'
98100

99101
return True
100-
102+
101103
@api.constrains('selling_price', 'expected_price')
102104
def _expected_price(self):
103105
for record in self:
104-
if (fu.float_is_zero(record.selling_price, precision_rounding = 0.01)): continue
105-
106-
if (self.selling_price < 0.9 * record.expected_price):
107-
raise ValidationError("The selling price cannot be less than 90% of the expected price")
106+
if not fu.float_is_zero(record.selling_price, precision_rounding = 0.01):
107+
if self.selling_price < 0.9 * record.expected_price:
108+
raise ValidationError("The selling price cannot be less than 90% of the expected price")
108109

109110
@api.ondelete(at_uninstall=False)
110111
def _prevent_detete(self):
111112
for record in self:
112-
if (record.state != 'new' and record.state != 'cancelled'):
113-
raise ValidationError("You cannot delete a record that is not new or cancelled")
113+
if record.state not in {'new', 'cancelled'}:
114+
raise ValidationError("You cannot delete a record that is not new or cancelled")

estate/models/estate_property_tag.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
"""Odoo modules"""
12
from odoo import fields, models
23

34
class EstatePropertyTag(models.Model):
5+
'''Estate property tag'''
46
_name = "estate.property.tag"
57
_description = "Tag of a property"
68
_order = "name"
@@ -9,4 +11,3 @@ class EstatePropertyTag(models.Model):
911
color = fields.Integer("Color")
1012

1113
_sql_constraints = [('unique_tag', 'unique(name)', 'The tag already exist !')]
12-

estate/models/estate_property_type.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
"""Odoo modules"""
12
from odoo import fields, models, api
23

34
class EstatePropertyType(models.Model):
5+
'''Estate property type'''
46
_name = "estate.property.type"
57
_description = "Type of a property"
68
_order = "name"
@@ -17,5 +19,3 @@ class EstatePropertyType(models.Model):
1719
def _compute_offer_count(self):
1820
for record in self:
1921
record.offer_count = len(record.offer_ids)
20-
21-
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
from odoo import fields, models, api
1+
"""Odoo modules"""
2+
from odoo import fields, models
23

34
class EstateUser(models.Model):
5+
'''Salesperson for estate'''
46
_inherit = "res.users"
57

68
property_ids = fields.One2many("estate.property", "salesperson_id", string = "Properties")
File renamed without changes.

estate/views/estate_menus.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<odoo>
33
<menuitem id="estate_menu_root" name="Real Estate">
4-
<menuitem id="estate_advertisements_menu" name="Advertisements">
4+
<menuitem id="estate_properties_menu" name="Properties">
55
<menuitem id="estate_property_menu_action" action="estate_property_action"/>
66
</menuitem>
77
<menuitem id="estate_settings_menu" name="Settings">

estate/views/estate_user_views.xml

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<?xml version="1.0"?>
22
<odoo>
33
<data>
4-
<record id="inherited_model_view_form" model="ir.ui.view">
5-
<field name="name">res.users.view.form.inherit.estate</field>
6-
<field name="model">res.users</field>
7-
<field name="inherit_id" ref="base.view_users_simple_form"/>
8-
<field name="arch" type="xml">
9-
<xpath expr="//form//sheet//group[@name='phone_numbers']" position="after">
10-
<notebook>
11-
<page string="Properties">
12-
<group>
13-
<field name="property_ids"/>
14-
</group>
15-
</page>
16-
</notebook>
17-
</xpath>
18-
</field>
19-
</record>
4+
<record id="res_user_view_form" model="ir.ui.view">
5+
<field name="name">res.users.view.form.inherit.estate</field>
6+
<field name="model">res.users</field>
7+
<field name="inherit_id" ref="base.view_users_simple_form"/>
8+
<field name="arch" type="xml">
9+
<xpath expr="//form//sheet//group[@name='phone_numbers']" position="after">
10+
<notebook>
11+
<page string="Properties">
12+
<group>
13+
<field name="property_ids"/>
14+
</group>
15+
</page>
16+
</notebook>
17+
</xpath>
18+
</field>
19+
</record>
2020
</data>
2121
</odoo>

estate_account/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
'account'
1010
],
1111
'data': [
12-
'ir.model.access.csv'
12+
'security/ir.model.access.csv'
1313
]
1414
}

estate_account/models/estate_property.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
from odoo import fields, models, Command
22

33
class EstateProperty(models.Model):
4+
'''Estate property'''
45
_inherit = "estate.property"
56

67
def sell_property(self):
8+
'''Mark an estate property as sold and create an invoice'''
79
res = super().sell_property()
810

911
for record in self:
@@ -31,4 +33,4 @@ def sell_property(self):
3133
}
3234
)
3335

34-
return res
36+
return res
File renamed without changes.

0 commit comments

Comments
 (0)