Skip to content
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

18.0 gato tutorials #657

Open
wants to merge 12 commits into
base: 18.0
Choose a base branch
from
Open

Conversation

gato-odoo
Copy link

finished exercises

@robodoo
Copy link

robodoo commented Mar 20, 2025

Pull request status dashboard

@gato-odoo gato-odoo closed this Mar 20, 2025
@gato-odoo gato-odoo reopened this Mar 20, 2025
@gato-odoo gato-odoo force-pushed the 18.0-gato-tutorials branch from cea047a to da2ea25 Compare March 20, 2025 16:04
@gato-odoo
Copy link
Author

Rebased to reword some commit messages,
added components for frontend tutorials chapter 1

@gato-odoo gato-odoo force-pushed the 18.0-gato-tutorials branch from 27ab2cd to 979ca12 Compare March 24, 2025 08:47
@gato-odoo gato-odoo force-pushed the 18.0-gato-tutorials branch from 979ca12 to a10a151 Compare March 24, 2025 09:15
Copy link

@dbeguin dbeguin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I started a review but I see that there is still conflicts markers inside your commit, So I suggest to first get rid of them (edit commit by commit to see them) before I review the rest. :) ping me once done
again, if you have questions, feel free to ask :)

@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you can remove all the utf-8 header lines, not needed since we're in python3

@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-

from . import res_users
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alphabetical order

_order = 'sequence'
_order = 'id desc'
_sql_constraints = [
('check_expected_price_positive', 'CHECK (0 < expected_price)', 'Check that the expected price is strictly positive'),
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please fix your indentations (4 whitespaces per indent)

garden = fields.Boolean('Garden')
garden_area = fields.Integer('Garden Area')
garden_orientation = fields.Selection(string='Garden Orientation', selection=[
('N', 'North'),
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use lowercase for technical names, and be explicit, 'north' instead of 'N'. We always like explicit code more than super compacted code that is unreadable.

Comment on lines 12 to 15
status = fields.Selection(string='Status', selection=[
('accepted', 'Accepted'),
('refused', 'Refused')
], copy=False)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

usually, we define selection field by giving directly the selection param without naming it.

status = fields.Selection([
    ('accepted', 'Accepted'), 
    ('refused', 'Refused')
], string='Status', copy=False)

@@ -0,0 +1,56 @@
from odoo import api, exceptions, fields, models

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 empty lines before class. apply this everywhere

_name = 'estate.property.offer'
_description = 'estate property offer'
_order = 'price desc'
_sql_constraints = [
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_sql_constraints are put after field definitions

], copy=False)
partner_id = fields.Many2one('res.partner', string='Partner')
property_id = fields.Many2one('estate_property', string='Property')
validity = fields.Integer('Validity', default=7)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could be nice to add an helper (help='') to tell that validity is expressed in days.
or change validity field into validity_days

@@ -0,0 +1,54 @@
<?xml version="1.0"?>
<odoo>
<<<<<<< HEAD
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you have conflicts markers here.
check other files
maybe you don't see in final diff by working commit by commit will display you those markers
Each commit should be clean and contain changes as if they were the last commit of your branch. Like what if we revert the commits after this one ?

@gato-odoo gato-odoo force-pushed the 18.0-gato-tutorials branch from d486f83 to 2dcfb8f Compare March 24, 2025 16:43
Copy link

@dbeguin dbeguin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zblip !


def _inverse_deadline(self):
for record in self:
delta = record.date_deadline - record.creation_date
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no need a variable here

from . import estate_property_offer
from . import estate_property_tags
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

those changes should not be in that commit

_name = 'estate_property'
_description = 'real estate property'
_order = 'id desc'
_sql_constraints = [
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_sql_constraints are placed after field definition (that's the only exception for private attributes)

@@ -0,0 +1,109 @@
from odoo import api, exceptions, fields, models

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

two empty lines before class

selling_price = fields.Float('Selling Price', readonly=True, copy=False)
bedrooms = fields.Integer('Bedrooms', default=2)
living_area = fields.Integer('Living Area')
facades = fields.Integer('Facades')
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

usually when a field is basically a counter, you postfix with '_count'
because 'facade' only is not specific enough


@api.onchange('garden')
def _set_garden_properties(self):
for record in self:
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we try to be more explicit. record is too generic.
Here we are manipulating properties, so name it : for property in self.
apply this logic everywhere

record.property_id.buyer = record.partner_id
@api.model
def create(self, vals):
estate_property = self.env['estate_property'].browse(vals["property_id"])
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will if property_id not in vals (well here it's a mandatory field so it should always be set, but that should not blow up by you code, but by the ORM check on required fields instead)

Comment on lines 49 to 50
@api.model
def create(self, vals):
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

create methods should be multi.
see 'create_multi' for examples

Comment on lines 54 to 55
if estate_property.state == 'new':
estate_property.state = 'offer_received'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would do that after to write on every offer properties at the same time as this is the same value for all.

offer_ids = fields.One2many('estate.property.offer', 'property_type_id', string='Offers')
offer_count = fields.Integer(string='Offer Count', compute='_count_offers')


Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove useless empty line

def mark_cancelled(self):
for record in self:
if record.state == 'cancelled':
raise exceptions.UserError('This property is already cancelled.')
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

user errors should be translated. use _("yourtext") to allow translations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants