-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Simple Commit for Creating a PR #192
Open
cgun-odoo
wants to merge
23
commits into
odoo:18.0
Choose a base branch
from
cgun-odoo:18.0-tutorial-cgun
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.
Open
Changes from 16 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
c593d6b
Simple Commit for Creating a PR
cgun-odoo e05bc7f
[REF] Simple Commit for Creating a PR
cgun-odoo f44a6e4
Merge branch '18.0-tutorial-cgun' of github.com:cemalfarukguney/tutor…
cgun-odoo 37780a7
Chapter 2 (cgun)
cgun-odoo a0f723c
Chapter 3 (cgun)
cgun-odoo 89481d1
Chapter 4 (cgun)
cgun-odoo f60d9ac
Chapter 5 (cgun)
cgun-odoo d7a89dd
Chapter 6 (cgun)
cgun-odoo c74f6c2
Chapter 7 (cgun)
cgun-odoo 797dbfc
Chapter 8 (cgun)
cgun-odoo a9d598a
Chapter 9 (cgun) - With formatting updates
cgun-odoo a8e1201
Chapter 10 (cgun)
cgun-odoo 15a6c45
Delete IDE specific file
cgun-odoo 1d4f394
Chapter 11 and Format Changes (cgun)
cgun-odoo b6eab69
Chapter 12 (cgun)
cgun-odoo 12efc30
Chapter 13 (cgun)
cgun-odoo 9939b32
Chapter 14 (cgun)
cgun-odoo 7097d24
Changes after remarks
cgun-odoo 2707059
Revert unnecessary changes
cgun-odoo 01e8ab9
Define Module Data (cgun)
cgun-odoo 3bcf4a3
Restrict Access to Data (cgun)
cgun-odoo 208d9e4
Safeguard your code with unit tests (cgun)
cgun-odoo bf2157e
Build PDF Reports (cgun)
cgun-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 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 |
---|---|---|
@@ -1,26 +1,24 @@ | ||
# -*- coding: utf-8 -*- | ||
{ | ||
'name': "Awesome Kanban", | ||
'summary': """ | ||
"name": "Awesome Kanban", | ||
"summary": """ | ||
Starting module for "Master the Odoo web framework, chapter 4: Customize a kanban view" | ||
""", | ||
|
||
'description': """ | ||
"description": """ | ||
Starting module for "Master the Odoo web framework, chapter 4: Customize a kanban view. | ||
""", | ||
|
||
'version': '0.1', | ||
'application': True, | ||
'category': 'Tutorials/AwesomeKanban', | ||
'installable': True, | ||
'depends': ['web', 'crm'], | ||
'data': [ | ||
'views/views.xml', | ||
"version": "0.1", | ||
"application": True, | ||
"category": "Tutorials/AwesomeKanban", | ||
"installable": True, | ||
"depends": ["web", "crm"], | ||
"data": [ | ||
"views/views.xml", | ||
], | ||
'assets': { | ||
'web.assets_backend': [ | ||
'awesome_kanban/static/src/**/*', | ||
"assets": { | ||
"web.assets_backend": [ | ||
"awesome_kanban/static/src/**/*", | ||
], | ||
}, | ||
'license': 'AGPL-3' | ||
"license": "AGPL-3", | ||
} | ||
This file contains 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,2 @@ | ||
# -*- coding: utf-8 -*- | ||
cgun-odoo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
from . import models |
This file contains 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,25 @@ | ||
# -*- coding: utf-8 -*- | ||
{ | ||
"name": "Estate", | ||
"summary": """ | ||
Tutorial starting module | ||
""", | ||
"description": """ | ||
Tutorial starting module | ||
""", | ||
"author": "Cemal Faruk Guney", | ||
cgun-odoo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"category": "Tutorials/Estate", | ||
"version": "0.1", | ||
"depends": ["base"], | ||
"application": True, | ||
"data": [ | ||
"security/ir.model.access.csv", | ||
"views/estate_property_tag_views.xml", | ||
"views/estate_property_offer_views.xml", | ||
"views/estate_property_type_views.xml", | ||
"views/estate_property_views.xml", | ||
"views/estate_salesperson_views.xml", | ||
"views/estate_menus.xml", | ||
], | ||
"license": "AGPL-3", | ||
} |
This file contains 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 res_users |
This file contains 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,155 @@ | ||
from odoo import fields, models, api | ||
from dateutil.relativedelta import relativedelta | ||
from odoo.exceptions import UserError, ValidationError | ||
from odoo.tools import float_compare, float_is_zero | ||
|
||
|
||
class EstateProperty(models.Model): | ||
_name = 'estate.property' | ||
_description = "Estate Property" | ||
_order = 'id desc' | ||
_sql_constraints = [ | ||
( | ||
'check_expected_price_strictly_positive', | ||
'CHECK(expected_price > 0)', | ||
"The expected price should be strictly positive.", | ||
), | ||
( | ||
'check_selling_price_positive', | ||
'CHECK(selling_price >= 0)', | ||
"The selling price should be positive.", | ||
), | ||
] | ||
|
||
name = fields.Char("Title", required=True) | ||
|
||
description = fields.Text("Description") | ||
|
||
postcode = fields.Char("Postcode") | ||
|
||
date_availability = fields.Date( | ||
"Available From", | ||
copy=False, | ||
default=lambda self: fields.Date.today() + 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( | ||
string="Garden Orientation", | ||
selection=[ | ||
('north', "North"), | ||
('south', "South"), | ||
('east', "East"), | ||
('west', "West"), | ||
], | ||
) | ||
|
||
state = fields.Selection( | ||
string="Status", | ||
required=True, | ||
copy=False, | ||
default="new", | ||
selection=[ | ||
('new', "New"), | ||
('received', "Offer Received"), | ||
('accepted', "Offer Accepted"), | ||
('sold', "Sold"), | ||
('cancelled', "Cancelled"), | ||
], | ||
) | ||
|
||
active = fields.Boolean("Active", default=True) | ||
|
||
property_type_id = fields.Many2one('estate.property.type', "Property Type") | ||
|
||
buyer_id = fields.Many2one('res.partner', "Buyer", copy=False) | ||
|
||
salesperson_id = fields.Many2one( | ||
'res.users', "Salesperson", default=lambda self: self.env.user | ||
) | ||
|
||
tag_ids = fields.Many2many('estate.property.tag') | ||
|
||
offer_ids = fields.One2many('estate.property.offer', 'property_id') | ||
|
||
total_area = fields.Float(string="Total Area (sqm)", compute='_compute_total_area') | ||
|
||
best_price = fields.Float(string="Best Price", compute='_compute_best_price') | ||
|
||
@api.depends('living_area', 'garden_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: | ||
record.best_price = max(record.offer_ids.mapped("price"), default=0) | ||
|
||
@api.onchange('garden') | ||
def _onchange_garden(self): | ||
if self.garden: | ||
self.garden_area = 10 | ||
self.garden_orientation = 'north' | ||
else: | ||
self.garden_area = 0 | ||
self.garden_orientation = "" | ||
|
||
def action_sold(self): | ||
for record in self: | ||
if record.state == 'cancelled': | ||
raise UserError(self.env._("Cancelled properties cannot be sold!")) | ||
else: | ||
record.state = 'sold' | ||
return True | ||
|
||
def action_cancel(self): | ||
for record in self: | ||
if record.state == 'sold': | ||
raise UserError(self.env._("Sold properties cannot be cancelled!")) | ||
else: | ||
record.state = 'cancelled' | ||
return True | ||
|
||
@api.constrains('selling_price') | ||
def _check_compare_selling_price_to_expected_price(self): | ||
for record in self: | ||
if ( | ||
not float_is_zero(record.selling_price, precision_digits=5) | ||
and float_compare( | ||
record.selling_price, | ||
record.expected_price * 0.9, | ||
precision_digits=5, | ||
) | ||
< 0 | ||
): | ||
raise ValidationError( | ||
self.env._( | ||
"Selling price of a property must not be less than 90 percent of the expected price." | ||
) | ||
) | ||
|
||
@api.ondelete(at_uninstall=False) | ||
def _unlink_if_correct_states(self): | ||
for record in self: | ||
if record.state not in ('new', 'cancelled'): | ||
raise UserError( | ||
self.env._( | ||
"Only records with status New and Cancelled may be deleted." | ||
) | ||
) |
This file contains 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,84 @@ | ||
from odoo import models, fields, api | ||
from datetime import date, timedelta | ||
from odoo.exceptions import UserError | ||
|
||
|
||
class EstatePropertyOffer(models.Model): | ||
_name = 'estate.property.offer' | ||
_description = "Estate Property Offer" | ||
_order = 'price desc' | ||
_sql_constraints = [ | ||
( | ||
'check_price_positive', | ||
'CHECK(price > 0)', | ||
"An offer price must be strictly positive.", | ||
) | ||
] | ||
|
||
price = fields.Float("Price") | ||
status = fields.Selection( | ||
[('accepted', "Accepted"), ('refused', "Refused")], copy=False | ||
) | ||
partner_id = fields.Many2one('res.partner', "Partner", required=True) | ||
property_id = fields.Many2one('estate.property', "Property", required=True) | ||
validity = fields.Integer("Validity (days)", default=7) | ||
date_deadline = fields.Date( | ||
string="Deadline", | ||
compute='_compute_date_deadline', | ||
inverse='_inverse_date_deadline', | ||
) | ||
property_type_id = fields.Many2one( | ||
related='property_id.property_type_id', store=True | ||
) | ||
|
||
@api.depends('validity', 'create_date') | ||
def _compute_date_deadline(self): | ||
for record in self: | ||
if record.create_date: | ||
record.date_deadline = record.create_date + timedelta( | ||
days=record.validity | ||
) | ||
else: | ||
record.date_deadline = date.today() + timedelta(days=record.validity) | ||
|
||
def _inverse_date_deadline(self): | ||
for record in self: | ||
td = record.date_deadline - record.create_date.date() | ||
record.validity = td.days | ||
|
||
def action_refuse(self): | ||
for record in self: | ||
if record.status == 'accepted': | ||
record.property_id.selling_price = None | ||
record.property_id.buyer_id = None | ||
record.status = 'refused' | ||
|
||
def action_accept(self): | ||
for record in self: | ||
if record.property_id.selling_price: | ||
raise UserError( | ||
self.env._("There is already an accepted offer for this property.") | ||
) | ||
else: | ||
record.status = 'accepted' | ||
record.property_id.state = 'accepted' | ||
record.property_id.buyer_id = record.partner_id | ||
record.property_id.selling_price = record.price | ||
|
||
@api.model_create_multi | ||
def create(self, vals): | ||
estate = self.env['estate.property'].browse(vals['property_id']) | ||
cgun-odoo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if estate is None: | ||
raise UserError(self.env._("The property does not exist.")) | ||
|
||
current_offers = self.env['estate.property.offer'].browse( | ||
estate.offer_ids.mapped('id') | ||
) | ||
cgun-odoo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if any(x.price > vals['price'] for x in current_offers): | ||
raise UserError(self.env._("There are already offer/s with higher price.")) | ||
|
||
if estate.state == 'new': | ||
estate.state = 'received' | ||
return super().create(vals) |
This file contains 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,13 @@ | ||
from odoo import models, fields | ||
|
||
|
||
class EstatePropertyTag(models.Model): | ||
_name = 'estate.property.tag' | ||
_description = "Estate Property Tag" | ||
_order = 'name' | ||
_sql_constraints = [ | ||
('unique_tag_name', 'UNIQUE(name)', "Property tag name must be unique.") | ||
] | ||
|
||
name = fields.Char("Name", required=True) | ||
color = fields.Integer("Color") |
This file contains 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 @@ | ||
from odoo import fields, models, api | ||
|
||
|
||
class EstatePropertyType(models.Model): | ||
_name = 'estate.property.type' | ||
_description = "Estate Property Type" | ||
_order = 'name' | ||
_sql_constraints = [ | ||
('unique_type_name', 'UNIQUE(name)', "Property type name must be unique.") | ||
] | ||
|
||
name = fields.Char("Type", required=True) | ||
property_ids = fields.One2many('estate.property', "property_type_id") | ||
sequence = fields.Integer( | ||
'Sequence', default=1, help="Used to order stages. Lower is better." | ||
) | ||
offer_ids = fields.One2many('estate.property.offer', 'property_type_id') | ||
offer_count = fields.Integer(compute='_compute_offer_count') | ||
|
||
@api.depends('offer_ids') | ||
def _compute_offer_count(self): | ||
for record in self: | ||
record.offer_count = len(record.offer_ids) |
This file contains 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,12 @@ | ||
from odoo import models, fields | ||
|
||
|
||
class User(models.Model): | ||
_inherit = 'res.users' | ||
|
||
property_ids = fields.One2many( | ||
'estate.property', | ||
'salesperson_id', | ||
domain=[('state', 'in', ('new', 'received'))], | ||
readonly=True, | ||
) |
This file contains 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,access_estate_property,model_estate_property,base.group_user,1,1,1,1 | ||
access_estate_property_type,access_estate_property_type,model_estate_property_type,base.group_user,1,1,1,1 | ||
access_estate_property_tag,access_estate_property_tag,model_estate_property_tag,base.group_user,1,1,1,1 | ||
access_estate_property_offer,access_estate_property_offer,model_estate_property_offer,base.group_user,1,1,1,1 |
This file contains 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,12 @@ | ||
<?xml version="1.0"?> | ||
<odoo> | ||
<menuitem id="estate_menu_root" name="Estate"> | ||
<menuitem id="estate_first_level_menu" name="Advertisements"> | ||
<menuitem id="estate_menu_action" action="estate_property_action"/> | ||
</menuitem> | ||
<menuitem id="estate_settings_menu" name="Settings"> | ||
<menuitem id="estate_settings_menu_type_action" action="estate_property_type_action"/> | ||
<menuitem id="estate_settings_menu_tag_action" action="estate_property_tag_action"/> | ||
</menuitem> | ||
</menuitem> | ||
</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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider avoiding formatting-only changes in a file, as they can clutter the commit history and increase the likelihood of merge conflicts.