How to create a new module in odoo

How to create a new module in odoo

1. Create a new module

1
$ odoo scaffold shipping_cne /www/odoo/addons

2. Create a new model

1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-
from odoo import models, fields, api

class ShippingCne(models.Model):
_name = 'shipping.cne'
_description = 'Shipping CNE'

name = fields.Char(string='Name', required=True)
code = fields.Char(string='Code', required=True)
description = fields.Text(string='Description')
active = fields.Boolean(string='Active', default=True)

3. Create a new view

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_shipping_cne_form" model="ir.ui.view">
<field name="name">shipping.cne.form</field>
<field name="model">shipping.cne</field>
<field name="arch" type="xml">
<form string="Shipping CNE">
<sheet>
<group>
<field name="name"/>
<field name="code"/>
<field name="description"/>
<field name="active"/>
</group>
</sheet>
</form>
</field>
</record>

<record id="view_shipping_cne_tree" model="ir.ui.view">
<field name="name">shipping.cne.tree</field>
<field name="model">shipping.cne</field>
<field name="arch" type="xml">
<tree string="Shipping CNE">
<field name="name"/>
<field name="code"/>
<field name="description"/>
<field name="active"/>
</tree>
</field>
</record>

<record id="action_shipping_cne" model="ir.actions.act_window">
<field name="name">Shipping CNE</field>
<field name="res_model">shipping.cne</field>
<field name="view_mode">tree,form</field>
</record>

<menuitem id="menu_shipping_cne" name="Shipping CNE" parent="base.menu_sales" action="action_shipping_cne"/>
</data>
</odoo>

4. Update the manifest file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
'name': 'Shipping CNE',
'version': '1.0',
'author': 'Steve Liu',
'website': 'https://www.modeles.net.cn',
'category': 'Sales',
'depends': ['base'],
'data': [
'views/shipping_cne_views.xml',
],
'installable': True,
'application': True,
'auto_install': False,
}

5. Update the security file

1
2
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_shipping_cne,shipping.cne,model_shipping_cne,base.group_user,1,1,1,1

6. Update the __init__.py file

1
from . import models

7. Update the __manifest__.py file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
'name': 'Shipping CNE',
'version': '1.0',
'author': 'Steve Liu',
'website': 'https://www.modeles.net.cn',
'category': 'Sales',
'depends': ['base'],
'data': [
'security/ir.model.access.csv',
'views/shipping_cne_views.xml',
],
'installable': True,
'application': True,
'auto_install': False,
}

8. Install the module

1
$ odoo -d odoo -i shipping_cne

9. Check the module

1
$ odoo -d odoo -u shipping_cne

Conclusion

In this article, we have learned how to create a new module in odoo. We have learned how to create a new model, how to create a new view, how to update the manifest file, how to update the security file, how to update the __init__.py file, how to update the __manifest__.py file, how to install the module, how to check the module. I hope this article will help you to create a new module in odoo.

Reference

Server framework 101 Odoo