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

change #54

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .gitignore
100644 → 100755
Empty file.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# Odoo 12.0 - Technical Training
# Odoo 16.0 - Technical Training

The Technical Training of Odoo 16.0 is available on the
[Tutorial](https://www.odoo.com/documentation/master/developer/howtos/rdtraining.html)
3 changes: 3 additions & 0 deletions estate/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-

from . import models
12 changes: 12 additions & 0 deletions estate/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
{
'name': "helb_project",
'summary': """Project for HELB Student""",
'author': "My Company",
'website': "http://www.yourcompany.com",
'category': 'Uncategorized',
'version': '15.0.0.1',
'depends': ['base', 'sale_management', 'calendar', 'hr'],
'data': [
]
}
6 changes: 6 additions & 0 deletions estate/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-

from . import sale_order_line
from . import sale_order
from . import res_groups
from . import res_partner
4 changes: 4 additions & 0 deletions estate/models/res_groups.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from odoo import fields, models

class ResGroups(models.Model):
_inherit = 'res.groups'
4 changes: 4 additions & 0 deletions estate/models/res_partner.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from odoo import fields, models

class ResPartner(models.Model):
_inherit = 'res.partner'
5 changes: 5 additions & 0 deletions estate/models/sale_order.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from odoo import api, models, _, fields
from odoo.exceptions import ValidationError

class SaleOrder(models.Model):
_inherit = 'sale.order'
4 changes: 4 additions & 0 deletions estate/models/sale_order_line.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from odoo import fields, models, Command

class SaleOrderLine(models.Model):
_inherit = 'sale.order.line'
8 changes: 8 additions & 0 deletions estate/reports/sale_report_templates.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<template id="report_saleorder_document" inherit_id="sale.report_saleorder_document">

</template>
</data>
</odoo>
6 changes: 6 additions & 0 deletions estate/views/res_groups.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>

</data>
</odoo>
6 changes: 6 additions & 0 deletions estate/views/res_partner.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>

</data>
</odoo>
6 changes: 6 additions & 0 deletions estate/views/sale_order.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>

</data>
</odoo>