-
Notifications
You must be signed in to change notification settings - Fork 2.3k
[ADD] estate: added a new Estate Module #844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
kdes-odoo
wants to merge
5
commits into
odoo:18.0
Choose a base branch
from
odoo-dev:18.0-training-kdes
base: 18.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+619
−0
Draft
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
90c491a
[ADD] estate: initial module creation
kdes-odoo c8c44a5
[ADD] estate: added access rights, field attributes and custom Views
kdes-odoo a152e62
[ADD] estate: added property type, Tags, offers and States
kdes-odoo 2f8df27
[IMP] estate: added constrains and made changes in all views
kdes-odoo 8a630eb
[ADD] estate: added invoicing and user Category
kdes-odoo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,3 +127,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
#VS CODE | ||
.vscode/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import models |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
'name': "Estate", | ||
'version': '1.0', | ||
'license': 'LGPL-3', | ||
'depends': ['base'], | ||
'author': "Kalpan Desai", | ||
'category': 'Estate/sales', | ||
'description': """ | ||
Module specifically designed for real estate business case. | ||
""", | ||
'installable': True, | ||
'application': True, | ||
'data': [ | ||
'security/ir.model.access.csv', | ||
'views/estate_property_views.xml', | ||
'views/estate_property_offer_views.xml', | ||
'views/estate_property_type_views.xml', | ||
'views/estate_property_tag_views.xml', | ||
'views/estate_res_user_views.xml', | ||
'views/estate_menus.xml', | ||
] | ||
|
||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from . import estate_property | ||
from . import estate_property_type | ||
from . import estate_property_tag | ||
from . import estate_property_offer | ||
from . import estate_res_user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
from odoo import api, fields, models | ||
from dateutil.relativedelta import relativedelta | ||
from odoo.exceptions import UserError, ValidationError | ||
from odoo.tools import float_utils, _ | ||
|
||
|
||
class EstateProperty(models.Model): | ||
_name = "estate.property" | ||
_description = "Real Estate Property" | ||
_order = "id desc" | ||
name = fields.Char('Name', required=True, default='Unknown Property') | ||
description = fields.Text('Description') | ||
postcode = fields.Char('Postcode') | ||
date_availability = fields.Date( | ||
"Date Availability", | ||
default=lambda self: fields.Date.to_string(fields.Date.context_today(self) + relativedelta(months=3)) | ||
) | ||
expected_price = fields.Float('Expected Price', required=True) | ||
selling_price = fields.Float('Selling Price', readonly=True, copy=False) | ||
bedrooms = fields.Integer('Bedrooms', default=2) | ||
living_area = fields.Integer('Living Area (sqm)') | ||
facades = fields.Integer('Facades') | ||
garage = fields.Boolean('Garage') | ||
garden = fields.Boolean('Garden') | ||
garden_area = fields.Integer('Garden Area (sqm)') | ||
garden_orientation = fields.Selection( | ||
[('north', 'North'), ('south', 'South'), ('east', 'East'), ('west', 'West')], | ||
string='Garden Orientation' | ||
) | ||
active = fields.Boolean('Active', default=True) | ||
state = fields.Selection( | ||
[('new', 'New'), ('offer_received', 'Offer Received'), ('offer_accepted', 'Offer Accepted'), | ||
('sold', 'Sold'), ('canceled', 'Canceled')], | ||
string='Status', default='new', required=True, copy=False | ||
) | ||
property_type_id = fields.Many2one("estate.property.type", string="Property Type", required=True) | ||
buyer_id = fields.Many2one("res.partner", string="Buyer", copy=False) | ||
salesperson_id = fields.Many2one("res.users", string="Salesperson", default=lambda self: self.env.user) | ||
tags_ids = fields.Many2many("estate.property.tag", string="Tags") | ||
offer_ids = fields.One2many("estate.property.offer", "property_id", string="Offers") | ||
total_area = fields.Float(compute="_compute_total_area", string="Total Area", readonly=True) | ||
best_price = fields.Float(compute="_compute_best_price", string="Best Price", readonly=True) | ||
|
||
_sql_constraints = [ | ||
('check_expected_price', 'CHECK(expected_price > 0)', 'The expected price must strictly be Positive.'), | ||
('check_selling_price', 'CHECK(selling_price > 0)', 'The selling price must strictly be positive.'), | ||
] | ||
|
||
@api.depends("garden_area", "living_area") | ||
def _compute_total_area(self): | ||
for record in self: | ||
record.total_area = record.garden_area + record.living_area | ||
|
||
@api.depends("offer_ids.price") | ||
def _compute_best_price(self): | ||
for record in self: | ||
prices = record.offer_ids.mapped("price") | ||
record.best_price = max(prices, default=0) | ||
|
||
@api.onchange("garden") | ||
def _onchange_garden(self): | ||
for record in self: | ||
if self.garden: | ||
record.garden_area = 10 | ||
record.garden_orientation = "north" | ||
else: | ||
record.garden_area = 0 | ||
record.garden_orientation = False | ||
|
||
def action_sold(self): | ||
for record in self: | ||
if record.state != "canceled": | ||
record.state = "sold" | ||
else: | ||
raise UserError("Canceled properties can't be sold") | ||
return True | ||
|
||
def action_cancel(self): | ||
for record in self: | ||
if record.state != "sold": | ||
record.state = "canceled" | ||
else: | ||
raise UserError("Sold properties can't be sold") | ||
return True | ||
|
||
@api.constrains('selling_price') | ||
def _check_price(self): | ||
for record in self: | ||
if not record.selling_price: | ||
continue | ||
|
||
if float_utils.float_compare(record.selling_price, record.expected_price * 0.9, precision_rounding=3) == -1: | ||
raise ValidationError(_('The selling cannot be lower than 90% of the expected price.')) | ||
|
||
@api.ondelete(at_uninstall=False) | ||
def _unlink_if_state_check(self): | ||
if any(record.state not in ('new', 'canceled') for record in self): | ||
raise UserError(_("You cannot delete a property that is not in the 'New' or 'Canceled' state.")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
from odoo import api, fields, models | ||
from datetime import timedelta | ||
from odoo.exceptions import UserError | ||
|
||
|
||
class EstatePropertyOffer(models.Model): | ||
_name = "estate.property.offer" | ||
_description = "Property Offer" | ||
_order = "price desc" | ||
|
||
price = fields.Float(string="Price", required=True) | ||
status = fields.Selection( | ||
string="Type", | ||
selection=[("accepted", "Accepted"), ("refused", "Refused")], | ||
copy=False, | ||
) | ||
partner_id = fields.Many2one("res.partner", string='salesperson', required=True) | ||
property_id = fields.Many2one("estate.property", required=True) | ||
validity = fields.Integer(default=7) | ||
date_deadline = fields.Date(compute="_compute_date_deadline", inverse="_inverse_date_deadline") | ||
|
||
property_type_id = fields.Many2one("estate.property.type", related="property_id.property_type_id", store=True) | ||
|
||
_sql_constraints = [ | ||
("check_price", "CHECK(price > 0)", "The price must be strictly positive.") | ||
] | ||
|
||
@api.depends("validity") | ||
def _compute_date_deadline(self): | ||
for record in self: | ||
if not record.create_date: | ||
today = fields.Datetime.today() | ||
record.date_deadline = today + timedelta(days=record.validity) | ||
else: | ||
record.date_deadline = record.create_date + timedelta(days=record.validity) | ||
|
||
def _inverse_date_deadline(self): | ||
for record in self: | ||
record.validity = (record.date_deadline - record.create_date.date()).days | ||
|
||
def action_accept_offer(self): | ||
for offer in self: | ||
if offer.property_id.state in {'accepted', 'sold'}: | ||
raise UserError('An offer has already been accepted for this property.') | ||
|
||
offer.write({'status': 'accepted'}) | ||
offer.property_id.write({ | ||
'selling_price': offer.price, | ||
'buyer_id': offer.partner_id.id, | ||
'state': 'offer_accepted', | ||
}) | ||
|
||
return True | ||
|
||
def action_refuse_offer(self): | ||
for record in self: | ||
record.status = "refused" | ||
return True | ||
|
||
@api.model_create_multi | ||
def create(self, vals_list): | ||
for vals in vals_list: | ||
property = self.env["estate.property"].browse(vals["property_id"]) | ||
property.state = "offer_received" | ||
if property.best_price > vals["price"]: | ||
raise UserError("The offer must be higher than the existing offer") | ||
return super().create(vals_list) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from odoo import fields, models | ||
|
||
|
||
class EstatePropertyTag(models.Model): | ||
_name = "estate.property.tag" | ||
_description = "Property Tags" | ||
_order = "name" | ||
|
||
name = fields.Char(string="Tag", required=True) | ||
color = fields.Integer("Color Index", default=0, help="Color index for the tag") | ||
|
||
_sql_constraints = [ | ||
('check_name', 'UNIQUE(name)', 'A tag must be unique.'), | ||
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from odoo import api, fields, models | ||
|
||
|
||
class EstatePropertyType(models.Model): | ||
_name = "estate.property.type" | ||
_description = "Types of properties available in the estate module." | ||
_order = "name" | ||
|
||
name = fields.Char('Name', required=True) | ||
property_ids = fields.One2many("estate.property", "property_type_id", string="Property") | ||
sequence = fields.Integer("Sequence", default=1, help="Used to order types. Lower is better.") | ||
offer_ids = fields.One2many("estate.property.offer", "property_type_id", string="Offers") | ||
offer_count = fields.Integer(compute="compute_offer_count", string="Offers Count", store=True, readonly=True) | ||
|
||
_sql_constraints = [ | ||
('check_proterty_type_name', 'UNIQUE(name)', 'A Type must be unique.'), | ||
] | ||
|
||
@api.depends('offer_ids') | ||
def compute_offer_count(self): | ||
for record in self: | ||
record.offer_count = len(record.offer_ids) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from odoo import fields, models | ||
|
||
|
||
class User(models.Model): | ||
_inherit = "res.users" | ||
|
||
property_ids = fields.One2many("estate.property", inverse_name="salesperson_id") | ||
domain = ["|", ("state", "=", "new"), ("state", "=", "offer_received")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||
access_estate_property_base_group,estate.property.basegroup,model_estate_property,base.group_user,1,1,1,1 | ||
access_estate_property_type_base_group,estate.property.type.basegroup,model_estate_property_type,base.group_user,1,1,1,1 | ||
access_estate_property_tag_base_group,estate.property.tag.basegroup,model_estate_property_tag,base.group_user,1,1,1,1 | ||
access_estate_property_offer_base_group,estate.property.offer.basegroup,model_estate_property_offer,base.group_user,1,1,1,1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<odoo> | ||
<menuitem id="menu_estate_root" name="Real Estate"/> | ||
|
||
<!-- Advertisement MENU --> | ||
<menuitem id="menu_estate_advertisements" | ||
name="Advertisements" | ||
parent="menu_estate_root"/> | ||
|
||
<menuitem id="menu_estate_property" | ||
name="Properties" | ||
parent="menu_estate_advertisements" | ||
action="action_estate_property"/> | ||
|
||
<!-- Settings MENU --> | ||
<menuitem id="menu_estate_settings" | ||
name="Settings" | ||
parent="menu_estate_root"/> | ||
|
||
<menuitem id="menu_estate_property_type" | ||
name="Properties Type" | ||
parent="menu_estate_settings" | ||
action="action_estate_property_type"/> | ||
|
||
<menuitem id="menu_estate_property_tag" | ||
name="Properties Tags" | ||
parent="menu_estate_settings" | ||
action="action_estate_property_tag"/> | ||
</odoo> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0"?> | ||
<odoo> | ||
<record id="estate_property_offer_action" model="ir.actions.act_window"> | ||
<field name="name">Property Offers</field> | ||
<field name="res_model">estate.property.offer</field> | ||
<field name="view_mode">list,form</field> | ||
<field name="domain">[('property_type_id', '=', active_id)]</field> | ||
</record> | ||
|
||
<record id="estate_property_offer_list" model="ir.ui.view"> | ||
<field name="name">estate.property.offer.list</field> | ||
<field name="model">estate.property.offer</field> | ||
<field name="arch" type="xml"> | ||
<list editable="bottom" decoration-success="status=='accepted'" decoration-danger="status=='refused'"> | ||
<field name="price" string="Price"/> | ||
<field name="partner_id" string="Partner"/> | ||
<field name="validity" string="Validity"/> | ||
<field name="date_deadline" string="Deadline"/> | ||
<!-- <field name="property_type_id" string="property ,"/> --> | ||
<button name="action_accept_offer" type="object" icon="fa-check" title="Accept" invisible="status"/> | ||
<button name="action_refuse_offer" type="object" icon="fa-times" title="Refuse" invisible="status"/> | ||
<field name="status" string="Status"/> | ||
</list> | ||
</field> | ||
</record> | ||
|
||
<record id="estate_property_offer_form" model="ir.ui.view"> | ||
<field name="name">estate.property.offer.form</field> | ||
<field name="model">estate.property.offer</field> | ||
<field name="arch" type="xml"> | ||
<form> | ||
<sheet> | ||
<group> | ||
<field name="price" width="40px" string="Price"/> | ||
<field name="partner_id" width="40px" string="Partner"/> | ||
<field name="validity" width="40px" string="Validity"/> | ||
<field name="date_deadline" width="40px" string="Deadline"/> | ||
<field name="status" width="40px" string="Status"/> | ||
</group> | ||
</sheet> | ||
</form> | ||
</field> | ||
</record> | ||
</odoo> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0"?> | ||
<odoo> | ||
<record id="action_estate_property_tag" model="ir.actions.act_window"> | ||
<field name="name">Tags</field> | ||
<field name="res_model">estate.property.tag</field> | ||
<field name="view_mode">list,form</field> | ||
</record> | ||
|
||
<record id="estate_property_tag_list" model="ir.ui.view"> | ||
<field name="name">estate.property.tag.list</field> | ||
<field name="model">estate.property.tag</field> | ||
<field name="arch" type="xml"> | ||
<list editable="bottom"> | ||
<field name="name" string="Title"/> | ||
</list> | ||
</field> | ||
</record> | ||
|
||
<record id="estate_property_tag_form" model="ir.ui.view"> | ||
<field name="name">estate.property.form</field> | ||
<field name="model">estate.property.tag</field> | ||
<field name="arch" type="xml"> | ||
<form> | ||
<sheet> | ||
<group> | ||
<field name="name" placeholder="e.g. cozy" string="Name"/> | ||
</group> | ||
</sheet> | ||
</form> | ||
</field> | ||
</record> | ||
</odoo> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.