-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[ADD] estate : added the sprinkles. #214
base: 18.0
Are you sure you want to change the base?
Conversation
it contain information related to model. It is based on estate application.
It covers different chapters of real estate. It has various updated features.
It has various views with many to one and many to many fields.
It has information related to compute fields.
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.
Hello, can you please make the changes according to the comments?
Thanks!
estate/__init__.py
Outdated
|
||
|
||
|
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.
Remove
estate/__manifest__.py
Outdated
@@ -0,0 +1,24 @@ | |||
{ | |||
'name': 'estate', | |||
|
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.
Remove extra lines
estate/models/estate_property.py
Outdated
from odoo import models, fields | ||
from datetime import timedelta, date | ||
from odoo import models, fields, api | ||
from odoo.exceptions import UserError | ||
from odoo.exceptions import ValidationError | ||
from odoo.tools.float_utils import float_compare, float_is_zero |
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.
Remove duplicated code and use alphabetical order
estate/models/__init__.py
Outdated
from . import estate_property_type | ||
from . import estate_property_tags | ||
from . import estate_property_offer |
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.
arrange in alphabetical order
estate/__manifest__.py
Outdated
'data': [ | ||
'security/ir.model.access.csv', | ||
'views/estate_property_views.xml', | ||
'views/estate_property_type_views.xml', | ||
'views/estate_property_tags_views.xml', | ||
'views/estate_property_offer_views.xml', | ||
'views/estate_menus.xml' | ||
], | ||
|
||
} |
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.
Use proper format
<sheet> | ||
<group> | ||
<field name="name"/> | ||
<field name="tag_ids" widget="many2many_tags" /> |
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.
why tag_ids
<field name="tag_ids"/> | ||
|
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.
Same
<br /> | ||
<br /> | ||
<br /> |
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.
Why <br/>
<field name="selling_price"/> | ||
</group> | ||
<group> | ||
|
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.
Remove extra space
|
||
|
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.
Remove extra space
I have added demo data and started working on PDF reports.
Given some permission to the managers and given some restriction to the agents.
Task related to wizards are completed.
Task related to chatter and action helper are completed.
81b6f77
to
7454f12
Compare
Added multiple warranty on products . created invoice and sale order PDF.
Added views and models.
No description provided.