We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de99de7 commit ed3d58fCopy full SHA for ed3d58f
estate/models/estate_property.py
@@ -92,6 +92,9 @@ def _compute_best_price(self):
92
def _onchange_expected_price(self):
93
self._check_selling_price()
94
95
+ def print_stuff(self):
96
+ print("Hello, I handled a conflict")
97
+
98
@api.onchange('garden')
99
def _onchange_garden(self):
100
self.garden_area = 10 if self.garden else 0
@@ -120,6 +123,3 @@ def _check_state(self):
120
123
raise exceptions.UserError(
121
124
'You cannot delete a property that is not sold or canceled.'
122
125
)
-
- def print_stuff(self):
- print("Hello, I handled a conflict")
0 commit comments