1
- from odoo import api , fields , models , exceptions
1
+ """Odoo modules"""
2
2
from dateutil .relativedelta import relativedelta
3
+ from odoo import api , fields , models , exceptions
3
4
from odoo .exceptions import ValidationError
4
5
from odoo .tools import float_utils as fu
5
6
6
7
class EstateProperty (models .Model ):
8
+ '''Estate property'''
7
9
_name = "estate.property"
8
10
_description = "Property of an estate"
9
11
_order = "sequence, id desc"
@@ -28,7 +30,7 @@ class EstateProperty(models.Model):
28
30
garden_orientation = fields .Selection (
29
31
string = "Orientation" ,
30
32
selection = [('north' , 'North' ), ('east' , 'East' ), ('south' , 'South' ), ('west' , 'West' )]
31
- )
33
+ )
32
34
active = fields .Boolean ("Active" , default = True )
33
35
state = fields .Selection (
34
36
string = "Status" ,
@@ -54,9 +56,6 @@ class EstateProperty(models.Model):
54
56
55
57
56
58
57
- def _default_date_availability (self ):
58
- return fields .Date .context_today (self ) + relativedelta (months = 3 )
59
-
60
59
@api .depends ("living_area" , "garden_area" )
61
60
def _compute_area (self ):
62
61
for record in self :
@@ -66,48 +65,50 @@ def _compute_area(self):
66
65
@api .depends ("offer_ids" )
67
66
def _compute_best_price (self ):
68
67
for record in self :
69
- if ( len ( record .offer_ids ) > 0 ) :
68
+ if record .offer_ids :
70
69
record .best_price = max (record .offer_ids .mapped ('price' ))
71
70
else :
72
71
record .best_price = 0
73
-
72
+
74
73
@api .onchange ("garden" )
75
74
def _onchange_garden (self ):
76
75
self .garden_area = 10 if self .garden else 0
77
76
self .garden_orientation = 'north' if self .garden else ''
78
77
78
+ def _default_date_availability (self ):
79
+ return fields .Date .context_today (self ) + relativedelta (months = 3 )
80
+
79
81
80
82
81
83
def cancel_property (self ):
84
+ '''Cancel a property selling'''
82
85
for record in self :
83
- if ( record .state == 'sold' ) :
86
+ if record .state == 'sold' :
84
87
raise exceptions .UserError ("Sold property cannot be cancelled" )
85
- continue
86
- else :
87
- record .state = 'cancelled'
88
+
89
+ record .state = 'cancelled'
88
90
89
91
return True
90
-
92
+
91
93
def sell_property (self ):
94
+ '''Mark an estate property as sold'''
92
95
for record in self :
93
- if ( record .state == 'cancelled' ) :
96
+ if record .state == 'cancelled' :
94
97
raise exceptions .UserError ("Cancelled property cannot be sold" )
95
- continue
96
-
98
+
97
99
record .state = 'sold'
98
100
99
101
return True
100
-
102
+
101
103
@api .constrains ('selling_price' , 'expected_price' )
102
104
def _expected_price (self ):
103
105
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" )
108
109
109
110
@api .ondelete (at_uninstall = False )
110
111
def _prevent_detete (self ):
111
112
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" )
0 commit comments