Skip to content

Commit 67f789e

Browse files
committed
Correction
1 parent f68c4cb commit 67f789e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

estate/models/estate_property_type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class PropertyType(models.Model):
99
name = fields.Char(required=True)
1010
property_ids = fields.One2many('estate.property', 'property_type_id', string='Properties')
1111
sequence = fields.Integer(string="Sequence", default=10)
12-
offer_ids = fields.One2many("estate.property.offer", "property_type_id" ,string="Offers")
12+
offer_ids = fields.One2many("estate.property.offer", "property_type_id", string="Offers")
1313
offer_count = fields.Integer(string="Offer Count", compute="_compute_offer_count")
1414

1515
@api.depends("offer_ids")

0 commit comments

Comments
 (0)