Skip to Main Content
Odoo 12 Development Cookbook - Third Edition
book

Odoo 12 Development Cookbook - Third Edition

by Parth Gajjar, Alexandre Fayolle, Holger Brunn, Daniel Reis
April 2019
Beginner to intermediate content levelBeginner to intermediate
774 pages
24h 59m
English
Packt Publishing
Content preview from Odoo 12 Development Cookbook - Third Edition

How to do it...

Follow these steps to generate a basic service module:

  1. Create a new iap_isbn_service module and add __init__.py:
from . import modelsfrom . import controllers
  1. Add __manifest__.py, with the following content:
{    'name': "IAP ISBN service",    'summary': "Get books information by ISBN number",    'website': "http://www.example.com",    'category': 'Uncategorized',    'version': '12.0.1',    'depends': ['iap', 'web', 'base_setup'],    'data': [        'security/ir.model.access.csv',        'views/book_info_views.xml',        'data/books_data.xml',    ]}
  1. Add a book.info model at models/book_info.py, with a method to fetch the book data:
from odoo import models, fields, apiclass BookInfo(models.Model):    _name = 'book.info' name = fields.Char('Books Name', required=True) ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Odoo 11 Development Cookbook - Second Edition - Second Edition

Odoo 11 Development Cookbook - Second Edition - Second Edition

Alexandre Fayolle, Holger Brunn
Odoo 14 Development Cookbook - Fourth Edition

Odoo 14 Development Cookbook - Fourth Edition

Parth Gajjar, Alexandre Fayolle, Holger Brunn, Daniel Reis

Publisher Resources

ISBN: 9781789618921Supplemental Content