├── .gitattributes ├── .gitignore ├── Chapter04_code ├── build_08.sh ├── ch04_r01_attrs │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r02_fields │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r03_decprecision │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r04_monetary │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r05_relational │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r06_hierarchy │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ ├── library_book.py │ │ └── library_book_categ.py │ └── views │ │ └── library_book.xml ├── ch04_r07_constrain │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r08_computed │ ├── __init__.py │ ├── __init__.pyc │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── library_book.py │ │ └── library_book.pyc │ └── views │ │ └── library_book.xml ├── ch04_r09_related │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r10_reference │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r11_inherit │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r12_abstract │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch04_r13_delegation │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml └── my_module │ ├── __init__.py │ ├── __init__.pyc │ ├── __openerp__.py │ ├── models │ ├── __init__.py │ ├── __init__.pyc │ ├── library_book.py │ └── library_book.pyc │ └── views │ └── library_book.xml ├── Chapter05_code ├── Ch05_R01 │ └── my_module_ch15r01 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R02 │ └── some_model_ch15r02 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R03 │ └── my_module_ch15r03 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R04 │ └── some_model_ch15r04 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R05 │ └── some_model_ch15r05 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R06 │ └── some_model_ch15r06 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R08 │ └── some_model_ch15r08 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R09 │ └── some_model_ch15r09 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R10 │ ├── library_loan_return_date │ │ ├── __openerp__.py │ │ └── models.py │ └── library_loan_wizard │ │ ├── __openerp__.py │ │ └── models.py ├── Ch05_R11 │ └── my_module_ch15r11 │ │ ├── __openerp__.py │ │ ├── models.py │ │ └── security │ │ └── ir.model.access.csv └── Ch05_R12 │ └── my_module_ch15r12 │ ├── __openerp__.py │ └── models.py ├── Chapter06_code ├── Ch06_R01 │ └── some_model_ch06r01 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch06_R02 │ └── some_model_ch06r02 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch06_R03 │ └── some_model_ch06r03 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch06_R04 │ └── some_model_ch06r04 │ │ ├── __openerp__.py │ │ ├── models.py │ │ └── views.xml ├── Ch06_R05 │ └── some_model_ch06r05 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch06_R06 │ └── some_model_ch06r06 │ │ ├── __openerp__.py │ │ └── models.py └── Ch06_R07 │ ├── my_module_new_api │ ├── __openerp__.py │ └── models.py │ └── some_model_ch06r07 │ ├── __openerp__.py │ └── models.py ├── Chapter07_code ├── Ch07_R01 │ └── module_ch07r01 │ │ ├── __openerp__.py │ │ └── models.py ├── Ch07_R04 │ └── my_module_ch07r04 │ │ ├── __openerp__.py │ │ ├── models.py │ │ └── test │ │ └── test_books.yml ├── Ch07_R05 │ └── my_module_ch07r05 │ │ ├── __openerp__.py │ │ ├── models.py │ │ └── tests │ │ ├── __init__.py │ │ └── test_library.py └── Ch07_R07 │ └── .travis.yml ├── Chapter08_code └── ch08 │ ├── __init__.py │ ├── __openerp__.py │ └── views │ ├── add_a_menu_item_and_window_action.xml │ ├── adding_content_and_widgets_to_a_form_view.xml │ ├── calendar_and_gantt_views.xml │ ├── changing_existing_views_view_inheritance.xml │ ├── defining_filters_on_record_lists_domain.xml │ ├── graph_and_pivot_views.xml │ ├── have_an_action_open_a_specific_view.xml │ ├── kanban_views.xml │ ├── list_views.xml │ ├── passing_parameters_to_forms_and_actions_context.xml │ ├── qweb_reports.xml │ ├── search_views.xml │ └── server_actions.xml ├── Chapter09_code ├── ch09_01_groups │ ├── __init__.py │ ├── __init__.pyc │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── library_book.py │ │ └── library_book.pyc │ ├── security │ │ └── library_security.xml │ └── views │ │ └── library_book.xml ├── ch09_02_acl │ ├── __init__.py │ ├── __init__.pyc │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── library_book.py │ │ └── library_book.pyc │ ├── security │ │ └── ir.model.access.csv │ └── views │ │ └── library_book.xml ├── ch09_03_field │ ├── __init__.py │ ├── __init__.pyc │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── library_book.py │ │ └── library_book.pyc │ └── views │ │ └── library_book.xml ├── ch09_04_record │ ├── __init__.py │ ├── __init__.pyc │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── library_book.py │ │ └── library_book.pyc │ ├── security │ │ ├── ir.model.access.csv │ │ └── library_security.xml │ └── views │ │ └── library_book.xml └── ch09_05_config │ ├── __init__.py │ ├── __init__.pyc │ ├── __openerp__.py │ ├── models │ ├── __init__.py │ ├── __init__.pyc │ ├── library_book.py │ ├── library_book.pyc │ ├── res_config_settings.py │ └── res_config_settings.pyc │ ├── security │ ├── ir.model.access.csv │ └── library_security.xml │ └── views │ ├── library_book.xml │ └── res_config_settings.xml ├── Chapter10_code ├── .gitignore ├── ch10_01_groups │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ ├── security │ │ └── library_security.xml │ └── views │ │ └── library_book.xml ├── ch10_02_acl │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ ├── security │ │ └── ir.model.access.csv │ └── views │ │ └── library_book.xml ├── ch10_03_field │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ └── views │ │ └── library_book.xml ├── ch10_04_record │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ │ ├── __init__.py │ │ └── library_book.py │ ├── security │ │ ├── ir.model.access.csv │ │ └── library_security.xml │ └── views │ │ └── library_book.xml └── ch10_05_config │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ ├── __init__.py │ ├── library_book.py │ └── res_config_settings.py │ ├── security │ ├── ir.model.access.csv │ └── library_security.xml │ └── views │ ├── library_book.xml │ └── res_config_settings.xml ├── Chapter12_code ├── .gitignore └── my_module │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ ├── __init__.py │ └── library_book.py │ └── views │ └── library_book.xml ├── Chapter13_code ├── .gitignore ├── LICENSE ├── ch13_r01_make_a_path_accessible_from_the_network │ ├── __init__.py │ ├── __openerp__.py │ └── controllers │ │ ├── __init__.py │ │ └── main.py ├── ch13_r02_restrict_access_to_web_accessible_paths │ ├── __init__.py │ ├── __openerp__.py │ ├── controllers │ │ ├── __init__.py │ │ └── main.py │ └── models │ │ ├── __init__.py │ │ └── ir_http.py ├── ch13_r03_consume_parameters_passed_to_your_handlers │ ├── __init__.py │ ├── __openerp__.py │ ├── controllers │ │ ├── __init__.py │ │ └── main.py │ └── models │ │ ├── __init__.py │ │ └── ir_http.py ├── ch13_r04_modify_an_existing_handler │ ├── __init__.py │ ├── __openerp__.py │ ├── controllers │ │ ├── __init__.py │ │ └── main.py │ └── views │ │ └── templates.xml ├── ch13_r05_using_the_rpc_api │ ├── jsonrpc.py │ └── xmlrpc.py └── my_module │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ ├── __init__.py │ └── library_book.py │ └── views │ └── library_book.xml ├── Chapter14_code ├── .gitignore ├── LICENSE ├── ch14_r01_extending_css_and_javascript_for_the_website │ ├── __init__.py │ ├── __openerp__.py │ ├── static │ │ └── src │ │ │ ├── css │ │ │ └── ch13_r01_extending_css_and_javascript_for_the_website.css │ │ │ └── js │ │ │ └── ch13_r01_extending_css_and_javascript_for_the_website.js │ └── views │ │ └── templates.xml ├── ch14_r02_creating_or_modifying_templates │ ├── __init__.py │ ├── __openerp__.py │ ├── controllers │ │ ├── __init__.py │ │ └── main.py │ ├── static │ │ └── src │ │ │ └── css │ │ │ └── ch13_r02_creating_or_modifying_templates.css │ └── views │ │ ├── library_book_templates.xml │ │ └── templates.xml ├── ch14_r03_offering_snippets_to_the_user │ ├── __init__.py │ ├── __openerp__.py │ ├── static │ │ └── src │ │ │ └── js │ │ │ └── ch13_r03_offering_snippets_to_the_user.js │ └── views │ │ ├── snippets.xml │ │ └── templates.xml └── my_module │ ├── __init__.py │ ├── __openerp__.py │ ├── models │ ├── __init__.py │ └── library_book.py │ └── views │ └── library_book.xml ├── Chapter15_code ├── .gitignore ├── LICENSE ├── ch15_r01 │ ├── __init__.py │ ├── __openerp__.py │ ├── static │ │ └── src │ │ │ ├── css │ │ │ └── ch14_r01.css │ │ │ └── js │ │ │ └── ch14_r01.js │ └── views │ │ ├── res_partner.xml │ │ └── templates.xml ├── ch15_r02 │ ├── __init__.py │ ├── __openerp__.py │ ├── static │ │ └── src │ │ │ ├── css │ │ │ └── ch14_r02.css │ │ │ ├── js │ │ │ └── ch14_r02.js │ │ │ └── xml │ │ │ └── ch14_r02.xml │ └── views │ │ ├── res_partner.xml │ │ └── templates.xml ├── ch15_r03 │ ├── __init__.py │ ├── __openerp__.py │ ├── static │ │ └── src │ │ │ ├── css │ │ │ └── ch14_r03.css │ │ │ ├── js │ │ │ └── ch14_r03.js │ │ │ └── xml │ │ │ └── ch14_r03.xml │ └── views │ │ ├── res_partner.xml │ │ └── templates.xml └── ch15_r04 │ ├── __init__.py │ ├── __openerp__.py │ ├── static │ ├── src │ │ ├── css │ │ │ └── ch14_r04.css │ │ ├── js │ │ │ └── ch14_r04.js │ │ └── xml │ │ │ └── ch14_r04.xml │ └── test │ │ └── ch14_r04.js │ └── views │ ├── res_partner.xml │ └── templates.xml ├── Chapter16_code ├── Ch16_R3 │ ├── odoo.init │ ├── odoo.service │ └── start-odoo ├── Ch16_R4 │ ├── odoo-443 │ └── odoo-80 └── Ch16_R5 │ ├── buildout.cfg │ ├── dev.cfg │ └── production.cfg ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter04_code/build_08.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/build_08.sh -------------------------------------------------------------------------------- /Chapter04_code/ch04_r01_attrs/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r01_attrs/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r01_attrs/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r01_attrs/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r01_attrs/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r01_attrs/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r01_attrs/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r01_attrs/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r02_fields/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r02_fields/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r02_fields/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r02_fields/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r02_fields/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r02_fields/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r02_fields/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r02_fields/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r03_decprecision/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r03_decprecision/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r03_decprecision/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r03_decprecision/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r03_decprecision/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r03_decprecision/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r03_decprecision/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r03_decprecision/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r04_monetary/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r04_monetary/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r04_monetary/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r04_monetary/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r04_monetary/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r04_monetary/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r04_monetary/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r04_monetary/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r05_relational/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r05_relational/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r05_relational/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r05_relational/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r05_relational/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r05_relational/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r05_relational/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r05_relational/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r06_hierarchy/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r06_hierarchy/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r06_hierarchy/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r06_hierarchy/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r06_hierarchy/models/__init__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r06_hierarchy/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r06_hierarchy/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r06_hierarchy/models/library_book_categ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r06_hierarchy/models/library_book_categ.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r06_hierarchy/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r06_hierarchy/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r07_constrain/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r07_constrain/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r07_constrain/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r07_constrain/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r07_constrain/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r07_constrain/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r07_constrain/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r07_constrain/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r08_computed/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r08_computed/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r08_computed/__init__.pyc -------------------------------------------------------------------------------- /Chapter04_code/ch04_r08_computed/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r08_computed/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r08_computed/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r08_computed/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r08_computed/models/__init__.pyc -------------------------------------------------------------------------------- /Chapter04_code/ch04_r08_computed/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r08_computed/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r08_computed/models/library_book.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r08_computed/models/library_book.pyc -------------------------------------------------------------------------------- /Chapter04_code/ch04_r08_computed/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r08_computed/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r09_related/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r09_related/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r09_related/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r09_related/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r09_related/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r09_related/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r09_related/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r09_related/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r10_reference/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r10_reference/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r10_reference/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r10_reference/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r10_reference/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r10_reference/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r10_reference/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r10_reference/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r11_inherit/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r11_inherit/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r11_inherit/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r11_inherit/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r11_inherit/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r11_inherit/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r11_inherit/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r11_inherit/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r12_abstract/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r12_abstract/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r12_abstract/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r12_abstract/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r12_abstract/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r12_abstract/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r12_abstract/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r12_abstract/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/ch04_r13_delegation/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r13_delegation/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r13_delegation/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r13_delegation/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/ch04_r13_delegation/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r13_delegation/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/ch04_r13_delegation/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/ch04_r13_delegation/views/library_book.xml -------------------------------------------------------------------------------- /Chapter04_code/my_module/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter04_code/my_module/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/my_module/__init__.pyc -------------------------------------------------------------------------------- /Chapter04_code/my_module/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/my_module/__openerp__.py -------------------------------------------------------------------------------- /Chapter04_code/my_module/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter04_code/my_module/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/my_module/models/__init__.pyc -------------------------------------------------------------------------------- /Chapter04_code/my_module/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/my_module/models/library_book.py -------------------------------------------------------------------------------- /Chapter04_code/my_module/models/library_book.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/my_module/models/library_book.pyc -------------------------------------------------------------------------------- /Chapter04_code/my_module/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter04_code/my_module/views/library_book.xml -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R01/my_module_ch15r01/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R01/my_module_ch15r01/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R01/my_module_ch15r01/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R01/my_module_ch15r01/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R02/some_model_ch15r02/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R02/some_model_ch15r02/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R02/some_model_ch15r02/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R02/some_model_ch15r02/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R03/my_module_ch15r03/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R03/my_module_ch15r03/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R03/my_module_ch15r03/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R03/my_module_ch15r03/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R04/some_model_ch15r04/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R04/some_model_ch15r04/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R04/some_model_ch15r04/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R04/some_model_ch15r04/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R05/some_model_ch15r05/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R05/some_model_ch15r05/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R05/some_model_ch15r05/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R05/some_model_ch15r05/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R06/some_model_ch15r06/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R06/some_model_ch15r06/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R06/some_model_ch15r06/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R06/some_model_ch15r06/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R08/some_model_ch15r08/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R08/some_model_ch15r08/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R08/some_model_ch15r08/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R08/some_model_ch15r08/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R09/some_model_ch15r09/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R09/some_model_ch15r09/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R09/some_model_ch15r09/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R09/some_model_ch15r09/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R10/library_loan_return_date/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R10/library_loan_return_date/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R10/library_loan_return_date/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R10/library_loan_return_date/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R10/library_loan_wizard/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R10/library_loan_wizard/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R10/library_loan_wizard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R10/library_loan_wizard/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R11/my_module_ch15r11/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R11/my_module_ch15r11/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R11/my_module_ch15r11/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R11/my_module_ch15r11/models.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R11/my_module_ch15r11/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R11/my_module_ch15r11/security/ir.model.access.csv -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R12/my_module_ch15r12/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R12/my_module_ch15r12/__openerp__.py -------------------------------------------------------------------------------- /Chapter05_code/Ch05_R12/my_module_ch15r12/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter05_code/Ch05_R12/my_module_ch15r12/models.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R01/some_model_ch06r01/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R01/some_model_ch06r01/__openerp__.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R01/some_model_ch06r01/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R01/some_model_ch06r01/models.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R02/some_model_ch06r02/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R02/some_model_ch06r02/__openerp__.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R02/some_model_ch06r02/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R02/some_model_ch06r02/models.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R03/some_model_ch06r03/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R03/some_model_ch06r03/__openerp__.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R03/some_model_ch06r03/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R03/some_model_ch06r03/models.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R04/some_model_ch06r04/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R04/some_model_ch06r04/__openerp__.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R04/some_model_ch06r04/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R04/some_model_ch06r04/models.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R04/some_model_ch06r04/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R04/some_model_ch06r04/views.xml -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R05/some_model_ch06r05/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R05/some_model_ch06r05/__openerp__.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R05/some_model_ch06r05/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R05/some_model_ch06r05/models.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R06/some_model_ch06r06/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R06/some_model_ch06r06/__openerp__.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R06/some_model_ch06r06/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R06/some_model_ch06r06/models.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R07/my_module_new_api/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R07/my_module_new_api/__openerp__.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R07/my_module_new_api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R07/my_module_new_api/models.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R07/some_model_ch06r07/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R07/some_model_ch06r07/__openerp__.py -------------------------------------------------------------------------------- /Chapter06_code/Ch06_R07/some_model_ch06r07/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter06_code/Ch06_R07/some_model_ch06r07/models.py -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R01/module_ch07r01/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R01/module_ch07r01/__openerp__.py -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R01/module_ch07r01/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R01/module_ch07r01/models.py -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R04/my_module_ch07r04/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R04/my_module_ch07r04/__openerp__.py -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R04/my_module_ch07r04/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R04/my_module_ch07r04/models.py -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R04/my_module_ch07r04/test/test_books.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R04/my_module_ch07r04/test/test_books.yml -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R05/my_module_ch07r05/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R05/my_module_ch07r05/__openerp__.py -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R05/my_module_ch07r05/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R05/my_module_ch07r05/models.py -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R05/my_module_ch07r05/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_library 2 | -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R05/my_module_ch07r05/tests/test_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R05/my_module_ch07r05/tests/test_library.py -------------------------------------------------------------------------------- /Chapter07_code/Ch07_R07/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter07_code/Ch07_R07/.travis.yml -------------------------------------------------------------------------------- /Chapter08_code/ch08/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/__init__.py -------------------------------------------------------------------------------- /Chapter08_code/ch08/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/__openerp__.py -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/add_a_menu_item_and_window_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/add_a_menu_item_and_window_action.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/adding_content_and_widgets_to_a_form_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/adding_content_and_widgets_to_a_form_view.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/calendar_and_gantt_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/calendar_and_gantt_views.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/changing_existing_views_view_inheritance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/changing_existing_views_view_inheritance.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/defining_filters_on_record_lists_domain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/defining_filters_on_record_lists_domain.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/graph_and_pivot_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/graph_and_pivot_views.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/have_an_action_open_a_specific_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/have_an_action_open_a_specific_view.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/kanban_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/kanban_views.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/list_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/list_views.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/passing_parameters_to_forms_and_actions_context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/passing_parameters_to_forms_and_actions_context.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/qweb_reports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/qweb_reports.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/search_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/search_views.xml -------------------------------------------------------------------------------- /Chapter08_code/ch08/views/server_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter08_code/ch08/views/server_actions.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_01_groups/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_01_groups/__openerp__.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_01_groups/models/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_01_groups/models/library_book.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/models/library_book.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_01_groups/models/library_book.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/security/library_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_01_groups/security/library_security.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_01_groups/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_01_groups/views/library_book.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_02_acl/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_02_acl/__openerp__.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_02_acl/models/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_02_acl/models/library_book.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/models/library_book.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_02_acl/models/library_book.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_02_acl/security/ir.model.access.csv -------------------------------------------------------------------------------- /Chapter09_code/ch09_02_acl/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_02_acl/views/library_book.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_03_field/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_03_field/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_03_field/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_03_field/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_03_field/__openerp__.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_03_field/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_03_field/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_03_field/models/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_03_field/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_03_field/models/library_book.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_03_field/models/library_book.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_03_field/models/library_book.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_03_field/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_03_field/views/library_book.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_04_record/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_04_record/__openerp__.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_04_record/models/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_04_record/models/library_book.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/models/library_book.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_04_record/models/library_book.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_04_record/security/ir.model.access.csv -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/security/library_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_04_record/security/library_security.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_04_record/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_04_record/views/library_book.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/__openerp__.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/models/__init__.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/models/__init__.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/models/library_book.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/models/library_book.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/models/library_book.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/models/res_config_settings.py -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/models/res_config_settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/models/res_config_settings.pyc -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/security/ir.model.access.csv -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/security/library_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/security/library_security.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/views/library_book.xml -------------------------------------------------------------------------------- /Chapter09_code/ch09_05_config/views/res_config_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter09_code/ch09_05_config/views/res_config_settings.xml -------------------------------------------------------------------------------- /Chapter10_code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/.gitignore -------------------------------------------------------------------------------- /Chapter10_code/ch10_01_groups/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_01_groups/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_01_groups/__openerp__.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_01_groups/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_01_groups/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_01_groups/models/library_book.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_01_groups/security/library_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_01_groups/security/library_security.xml -------------------------------------------------------------------------------- /Chapter10_code/ch10_01_groups/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_01_groups/views/library_book.xml -------------------------------------------------------------------------------- /Chapter10_code/ch10_02_acl/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_02_acl/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_02_acl/__openerp__.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_02_acl/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_02_acl/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_02_acl/models/library_book.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_02_acl/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_02_acl/security/ir.model.access.csv -------------------------------------------------------------------------------- /Chapter10_code/ch10_02_acl/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_02_acl/views/library_book.xml -------------------------------------------------------------------------------- /Chapter10_code/ch10_03_field/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_03_field/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_03_field/__openerp__.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_03_field/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_03_field/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_03_field/models/library_book.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_03_field/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_03_field/views/library_book.xml -------------------------------------------------------------------------------- /Chapter10_code/ch10_04_record/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_04_record/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_04_record/__openerp__.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_04_record/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_04_record/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_04_record/models/library_book.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_04_record/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_04_record/security/ir.model.access.csv -------------------------------------------------------------------------------- /Chapter10_code/ch10_04_record/security/library_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_04_record/security/library_security.xml -------------------------------------------------------------------------------- /Chapter10_code/ch10_04_record/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_04_record/views/library_book.xml -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_05_config/__openerp__.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_05_config/models/__init__.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_05_config/models/library_book.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_05_config/models/res_config_settings.py -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_05_config/security/ir.model.access.csv -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/security/library_security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_05_config/security/library_security.xml -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_05_config/views/library_book.xml -------------------------------------------------------------------------------- /Chapter10_code/ch10_05_config/views/res_config_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter10_code/ch10_05_config/views/res_config_settings.xml -------------------------------------------------------------------------------- /Chapter12_code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter12_code/.gitignore -------------------------------------------------------------------------------- /Chapter12_code/my_module/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter12_code/my_module/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter12_code/my_module/__openerp__.py -------------------------------------------------------------------------------- /Chapter12_code/my_module/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter12_code/my_module/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter12_code/my_module/models/library_book.py -------------------------------------------------------------------------------- /Chapter12_code/my_module/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter12_code/my_module/views/library_book.xml -------------------------------------------------------------------------------- /Chapter13_code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/.gitignore -------------------------------------------------------------------------------- /Chapter13_code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/LICENSE -------------------------------------------------------------------------------- /Chapter13_code/ch13_r01_make_a_path_accessible_from_the_network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r01_make_a_path_accessible_from_the_network/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r01_make_a_path_accessible_from_the_network/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r01_make_a_path_accessible_from_the_network/__openerp__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r01_make_a_path_accessible_from_the_network/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r01_make_a_path_accessible_from_the_network/controllers/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r01_make_a_path_accessible_from_the_network/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r01_make_a_path_accessible_from_the_network/controllers/main.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/__openerp__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/controllers/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/controllers/main.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/models/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/models/ir_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r02_restrict_access_to_web_accessible_paths/models/ir_http.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/__openerp__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/controllers/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/controllers/main.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/models/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/models/ir_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r03_consume_parameters_passed_to_your_handlers/models/ir_http.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r04_modify_an_existing_handler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r04_modify_an_existing_handler/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r04_modify_an_existing_handler/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r04_modify_an_existing_handler/__openerp__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r04_modify_an_existing_handler/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r04_modify_an_existing_handler/controllers/__init__.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r04_modify_an_existing_handler/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r04_modify_an_existing_handler/controllers/main.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r04_modify_an_existing_handler/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r04_modify_an_existing_handler/views/templates.xml -------------------------------------------------------------------------------- /Chapter13_code/ch13_r05_using_the_rpc_api/jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r05_using_the_rpc_api/jsonrpc.py -------------------------------------------------------------------------------- /Chapter13_code/ch13_r05_using_the_rpc_api/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/ch13_r05_using_the_rpc_api/xmlrpc.py -------------------------------------------------------------------------------- /Chapter13_code/my_module/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter13_code/my_module/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/my_module/__openerp__.py -------------------------------------------------------------------------------- /Chapter13_code/my_module/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter13_code/my_module/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/my_module/models/library_book.py -------------------------------------------------------------------------------- /Chapter13_code/my_module/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter13_code/my_module/views/library_book.xml -------------------------------------------------------------------------------- /Chapter14_code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/.gitignore -------------------------------------------------------------------------------- /Chapter14_code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/LICENSE -------------------------------------------------------------------------------- /Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/__init__.py -------------------------------------------------------------------------------- /Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/__openerp__.py -------------------------------------------------------------------------------- /Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/static/src/css/ch13_r01_extending_css_and_javascript_for_the_website.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | background: yellow; 4 | } 5 | -------------------------------------------------------------------------------- /Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/static/src/js/ch13_r01_extending_css_and_javascript_for_the_website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/static/src/js/ch13_r01_extending_css_and_javascript_for_the_website.js -------------------------------------------------------------------------------- /Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r01_extending_css_and_javascript_for_the_website/views/templates.xml -------------------------------------------------------------------------------- /Chapter14_code/ch14_r02_creating_or_modifying_templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r02_creating_or_modifying_templates/__init__.py -------------------------------------------------------------------------------- /Chapter14_code/ch14_r02_creating_or_modifying_templates/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r02_creating_or_modifying_templates/__openerp__.py -------------------------------------------------------------------------------- /Chapter14_code/ch14_r02_creating_or_modifying_templates/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r02_creating_or_modifying_templates/controllers/__init__.py -------------------------------------------------------------------------------- /Chapter14_code/ch14_r02_creating_or_modifying_templates/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r02_creating_or_modifying_templates/controllers/main.py -------------------------------------------------------------------------------- /Chapter14_code/ch14_r02_creating_or_modifying_templates/static/src/css/ch13_r02_creating_or_modifying_templates.css: -------------------------------------------------------------------------------- 1 | .book-even 2 | { 3 | background: lightgray; 4 | } 5 | -------------------------------------------------------------------------------- /Chapter14_code/ch14_r02_creating_or_modifying_templates/views/library_book_templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r02_creating_or_modifying_templates/views/library_book_templates.xml -------------------------------------------------------------------------------- /Chapter14_code/ch14_r02_creating_or_modifying_templates/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r02_creating_or_modifying_templates/views/templates.xml -------------------------------------------------------------------------------- /Chapter14_code/ch14_r03_offering_snippets_to_the_user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r03_offering_snippets_to_the_user/__init__.py -------------------------------------------------------------------------------- /Chapter14_code/ch14_r03_offering_snippets_to_the_user/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r03_offering_snippets_to_the_user/__openerp__.py -------------------------------------------------------------------------------- /Chapter14_code/ch14_r03_offering_snippets_to_the_user/static/src/js/ch13_r03_offering_snippets_to_the_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r03_offering_snippets_to_the_user/static/src/js/ch13_r03_offering_snippets_to_the_user.js -------------------------------------------------------------------------------- /Chapter14_code/ch14_r03_offering_snippets_to_the_user/views/snippets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r03_offering_snippets_to_the_user/views/snippets.xml -------------------------------------------------------------------------------- /Chapter14_code/ch14_r03_offering_snippets_to_the_user/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/ch14_r03_offering_snippets_to_the_user/views/templates.xml -------------------------------------------------------------------------------- /Chapter14_code/my_module/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /Chapter14_code/my_module/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/my_module/__openerp__.py -------------------------------------------------------------------------------- /Chapter14_code/my_module/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import library_book 2 | -------------------------------------------------------------------------------- /Chapter14_code/my_module/models/library_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/my_module/models/library_book.py -------------------------------------------------------------------------------- /Chapter14_code/my_module/views/library_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter14_code/my_module/views/library_book.xml -------------------------------------------------------------------------------- /Chapter15_code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/.gitignore -------------------------------------------------------------------------------- /Chapter15_code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/LICENSE -------------------------------------------------------------------------------- /Chapter15_code/ch15_r01/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r01/__init__.py -------------------------------------------------------------------------------- /Chapter15_code/ch15_r01/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r01/__openerp__.py -------------------------------------------------------------------------------- /Chapter15_code/ch15_r01/static/src/css/ch14_r01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r01/static/src/css/ch14_r01.css -------------------------------------------------------------------------------- /Chapter15_code/ch15_r01/static/src/js/ch14_r01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r01/static/src/js/ch14_r01.js -------------------------------------------------------------------------------- /Chapter15_code/ch15_r01/views/res_partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r01/views/res_partner.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r01/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r01/views/templates.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r02/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r02/__init__.py -------------------------------------------------------------------------------- /Chapter15_code/ch15_r02/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r02/__openerp__.py -------------------------------------------------------------------------------- /Chapter15_code/ch15_r02/static/src/css/ch14_r02.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r02/static/src/css/ch14_r02.css -------------------------------------------------------------------------------- /Chapter15_code/ch15_r02/static/src/js/ch14_r02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r02/static/src/js/ch14_r02.js -------------------------------------------------------------------------------- /Chapter15_code/ch15_r02/static/src/xml/ch14_r02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r02/static/src/xml/ch14_r02.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r02/views/res_partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r02/views/res_partner.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r02/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r02/views/templates.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r03/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r03/__init__.py -------------------------------------------------------------------------------- /Chapter15_code/ch15_r03/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r03/__openerp__.py -------------------------------------------------------------------------------- /Chapter15_code/ch15_r03/static/src/css/ch14_r03.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r03/static/src/css/ch14_r03.css -------------------------------------------------------------------------------- /Chapter15_code/ch15_r03/static/src/js/ch14_r03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r03/static/src/js/ch14_r03.js -------------------------------------------------------------------------------- /Chapter15_code/ch15_r03/static/src/xml/ch14_r03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r03/static/src/xml/ch14_r03.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r03/views/res_partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r03/views/res_partner.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r03/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r03/views/templates.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r04/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r04/__init__.py -------------------------------------------------------------------------------- /Chapter15_code/ch15_r04/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r04/__openerp__.py -------------------------------------------------------------------------------- /Chapter15_code/ch15_r04/static/src/css/ch14_r04.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r04/static/src/css/ch14_r04.css -------------------------------------------------------------------------------- /Chapter15_code/ch15_r04/static/src/js/ch14_r04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r04/static/src/js/ch14_r04.js -------------------------------------------------------------------------------- /Chapter15_code/ch15_r04/static/src/xml/ch14_r04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r04/static/src/xml/ch14_r04.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r04/static/test/ch14_r04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r04/static/test/ch14_r04.js -------------------------------------------------------------------------------- /Chapter15_code/ch15_r04/views/res_partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r04/views/res_partner.xml -------------------------------------------------------------------------------- /Chapter15_code/ch15_r04/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter15_code/ch15_r04/views/templates.xml -------------------------------------------------------------------------------- /Chapter16_code/Ch16_R3/odoo.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter16_code/Ch16_R3/odoo.init -------------------------------------------------------------------------------- /Chapter16_code/Ch16_R3/odoo.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter16_code/Ch16_R3/odoo.service -------------------------------------------------------------------------------- /Chapter16_code/Ch16_R3/start-odoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter16_code/Ch16_R3/start-odoo -------------------------------------------------------------------------------- /Chapter16_code/Ch16_R4/odoo-443: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter16_code/Ch16_R4/odoo-443 -------------------------------------------------------------------------------- /Chapter16_code/Ch16_R4/odoo-80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter16_code/Ch16_R4/odoo-80 -------------------------------------------------------------------------------- /Chapter16_code/Ch16_R5/buildout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter16_code/Ch16_R5/buildout.cfg -------------------------------------------------------------------------------- /Chapter16_code/Ch16_R5/dev.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter16_code/Ch16_R5/dev.cfg -------------------------------------------------------------------------------- /Chapter16_code/Ch16_R5/production.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/Chapter16_code/Ch16_R5/production.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Odoo-Development-Cookbook/HEAD/README.md --------------------------------------------------------------------------------