[HSCHA]: Estate Module Implementation - Tutorials - #1400
[HSCHA]: Estate Module Implementation - Tutorials#1400Hansil-Chapadiya wants to merge 17 commits into
Conversation
Add the initial structure of the estate module, including the manifest, basic model, menu, and application icon, as part of the Odoo Server Framework 101 training.
bit-odoo
left a comment
There was a problem hiding this comment.
Hello @Hansil-Chapadiya
Good Start!
why you created module name with 'app' ? Why are there two models one is ' estate.proper.model' and second one is ' estate.property'?
Also i have added some comments please look into it.
Thanks
| name = fields.Char(string="Property Name", required=True) | ||
| reference = fields.Char(string="Reference") | ||
| description = fields.Text(string="Description") | ||
|
|
| bedrooms = fields.Integer(string="Bedrooms") | ||
| living_area = fields.Float(string="Living Area (sqm)") | ||
| garden_area = fields.Float(string="Garden Area (sqm)") | ||
|
|
|
|
||
| expected_price = fields.Float(string="Expected Price") | ||
| selling_price = fields.Float(string="Selling Price") | ||
|
|
There was a problem hiding this comment.
Fixed in new version of estate module
| <field name="description"/> | ||
| </page> | ||
| </notebook> | ||
|
|
There was a problem hiding this comment.
Fixed in new version of estate
| 'application': True, | ||
| 'license': 'LGPL-3', | ||
| 'author': 'Hansil Chapadiya', | ||
| 'website': 'https://www.gstatic.com', |
There was a problem hiding this comment.
it was for testing and it has deleted now
964bfb6 to
18055be
Compare
It was for testing purpose, "estate" -> dummy module and "app" -> original module |
ca67b8a to
063179a
Compare
063179a to
4aa36fd
Compare
…added Extend the estate.property model by introducing Many2one links for Property Type, Buyer,Salesperson. Link Property Type with estate.property.type Link Buyer with res.partner Link Salesperson with res.users Create the required property type model Configure appropriate access permissions Add menus for managing property types Update the property form view to display and showcase the new relational fields

Description
Implementation of tutorial modules covering estate and app functionality:
estatemodule along with code formatting and security fixes.appmodule including initial setup, model fields with default values, and security configurations.app.