This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-10-04 04:43:35,131 13002 INFO ? openerp: OpenERP version 8.0 | |
2014-10-04 04:43:35,131 13002 INFO ? openerp: addons paths: ['/opt/odoo/.local/share/Odoo/addons/8.0', u'/opt/odoo/odoo-server/addons', u'/opt/odoo/custom/addons', u'/opt/odoo/custom/aeroo_reports/report_aeroo', u'/opt/odoo/custom/aeroo_reports/report_aeroo_ooo', u'/opt/odoo/custom/aeroo_reports/report_aeroo_sample', u'/opt/odoo/custom/server-tools', u'/opt/odoo/custom/community-management', '/opt/odoo/odoo-server/openerp/addons'] | |
2014-10-04 04:43:35,131 13002 INFO ? openerp: database hostname: localhost | |
2014-10-04 04:43:35,131 13002 INFO ? openerp: database port: 5432 | |
2014-10-04 04:43:35,131 13002 INFO ? openerp: database user: odoo | |
2014-10-04 04:43:35,226 13002 INFO ? openerp.service.server: Evented Service (longpolling) running on 0.0.0.0:8072 | |
2014-10-04 04:43:35,735 13002 INFO ? openerp.addons.report.models.report: Will use the Wkhtmltopdf binary at /usr/bin/wkhtmltopdf | |
2014-10-04 04:43:35,736 13002 INFO ? openerp.addons.bus.bus: Bus.loop l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-10-21 06:00:39,136 1387 CRITICAL AEG openerp.modules.module: Couldn't load module report_aeroo_ooo | |
2014-10-21 06:00:39,136 1387 CRITICAL AEG openerp.modules.module: exception() got an unexpected keyword argument 'exc_info' | |
2014-10-21 06:00:39,137 1387 ERROR AEG openerp.http: Exception during JSON request handling. | |
Traceback (most recent call last): | |
File "/opt/odoo/odoo-server/openerp/http.py", line 500, in _handle_exception | |
return super(JsonRequest, self)._handle_exception(exception) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 517, in dispatch | |
result = self._call_function(**self.params) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 283, in _call_function | |
return checked_call(self.db, *args, **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated by Percona Configuration Wizard (http://tools.percona.com/) version REL5-20120208 | |
# Configuration name server-1 generated for Luke at 2014-10-22 09:47:40 | |
[mysql] | |
# CLIENT # | |
port = 3306 | |
socket = /var/lib/mysql/mysql.sock | |
[mysqld] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# we need some fixes from 14.10 | |
# sudo add-apt-repository --enable-source ppa:libreoffice/libreoffice-4-3 | |
sudo add-apt-repository ppa:libreoffice/libreoffice-4-3 -y | |
# fetch this repository | |
sudo apt-get update -y | |
# update your libreoffice installation | |
sudo apt-get install libreoffice -y | |
# get all build dependencies for libreoffice | |
sudo apt-get build-dep libreoffice -y | |
# that strangely enough doesn't come with the above |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Odoo Server Error | |
Traceback (most recent call last): | |
File "/opt/odoo/odoo-server/openerp/http.py", line 524, in _handle_exception | |
return super(JsonRequest, self)._handle_exception(exception) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 545, in dispatch | |
result = self._call_function(**self.params) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 301, in _call_function | |
return checked_call(self.db, *args, **kwargs) | |
File "/opt/odoo/odoo-server/openerp/service/model.py", line 113, in wrapper | |
return f(dbname, *args, **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here's a link to my answer here: | |
https://github.com/OdooCommunityExamples/B2B_Add_To_Cart_Example | |
I've put together an incredibly basic module with only the functionality needed for what you have asked in this question. | |
I have added the view change (that snippet) into an xml file in a subdirectory called 'views' to organise it properly. Fundamentally you just need an __init__.py file, an __openerp__.py file with your dependencies (in this case website_sale, etc.), and your view definition (in this case /views/B2B_Add_To_Cart.xml). | |
Inside this XML file you just need to place your <template> tags nested inside the opening and closing <openerp> and <data> tags. Remember that you are working with XHTML/XML, and therefore opening and closing tags must be properly nested or you will run into problems. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/opt/odoo/odoo-server/openerp/http.py", line 530, in _handle_exception | |
return super(JsonRequest, self)._handle_exception(exception) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 567, in dispatch | |
result = self._call_function(**self.params) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 303, in _call_function | |
return checked_call(self.db, *args, **kwargs) | |
File "/opt/odoo/odoo-server/openerp/service/model.py", line 113, in wrapper | |
return f(dbname, *args, **kwargs) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 300, in checked_call |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/opt/odoo/odoo-server/openerp/http.py", line 530, in _handle_exception | |
return super(JsonRequest, self)._handle_exception(exception) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 567, in dispatch | |
result = self._call_function(**self.params) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 303, in _call_function | |
return checked_call(self.db, *args, **kwargs) | |
File "/opt/odoo/odoo-server/openerp/service/model.py", line 113, in wrapper | |
return f(dbname, *args, **kwargs) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 300, in checked_call |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/opt/odoo/odoo-server/openerp/http.py", line 530, in _handle_exception | |
return super(JsonRequest, self)._handle_exception(exception) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 567, in dispatch | |
result = self._call_function(**self.params) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 303, in _call_function | |
return checked_call(self.db, *args, **kwargs) | |
File "/opt/odoo/odoo-server/openerp/service/model.py", line 113, in wrapper | |
return f(dbname, *args, **kwargs) | |
File "/opt/odoo/odoo-server/openerp/http.py", line 300, in checked_call |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 530, in _handle_exception | |
return super(JsonRequest, self)._handle_exception(exception) | |
File "/usr/lib/python2.7/dist-packages/openerp/http.py", line 567, in dispatch | |
result = self._call_function(**self.params) |
OlderNewer