├── .gitignore ├── README.md ├── __init__.py ├── __manifest__.py ├── controllers ├── __init__.py └── controllers.py ├── demo └── demo.xml ├── models ├── __init__.py └── models.py ├── requirements.txt ├── security └── ir.model.access.csv ├── static └── description │ └── icon.png └── views ├── templates.xml └── views.xml /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | **/**.pyc 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/__init__.py -------------------------------------------------------------------------------- /__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/__manifest__.py -------------------------------------------------------------------------------- /controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/controllers/__init__.py -------------------------------------------------------------------------------- /controllers/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/controllers/controllers.py -------------------------------------------------------------------------------- /demo/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/demo/demo.xml -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/models/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pika -------------------------------------------------------------------------------- /security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/security/ir.model.access.csv -------------------------------------------------------------------------------- /static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/static/description/icon.png -------------------------------------------------------------------------------- /views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/views/templates.xml -------------------------------------------------------------------------------- /views/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfrank/odoo_rabbitmq/HEAD/views/views.xml --------------------------------------------------------------------------------