Is OpenERP available?

I looked at the OpenERP and Google sites and did not find links to skins for OpenERP. I understand that the logo must be supported, but if I want to improve their appearance, is there a way to create skins?

Thanks in advance for your answers.

+4
source share
4 answers

In the layout of web client 6.0 (images and css) are located in a folder like ...\openerp\web-client\addons\openerp\static . In 6.1, you can find equivalent content somewhere like ...\openerp\openerp-web\addons\web\static .

I believe that a ZIP file with a replacement for these folders could be considered a skin.

+3
source

override css classes. you can override css for each module if you want. main css here-> OpenERP-7.0 \ OpenERP \ Addons \ Web \ static \ SRC \ CSS

after the add-ons folder, each module can have its own CSS,

OpenERP-7.0 \ OpenERP \ Addons \ SOME_MODULE \ static \ SRC \ CSS

it overrides the core css.

+4
source

modifying existing css and images may lead to incompatibility updates. in openerp 6.1 you can add a module to web add-ons. and change the behavior of existing css images.

during server startup, you just need to pass "--load = web, WEB_THEME_MODULE"

+3
source

Using the web framework in version 6.1. I decided to write a simple module for changing basic CSS and images. You can find this module here http://apps.openerp.com/addon/7961 .

Basic works well, but it's work in progress, as I hope to expand it in scope and eliminate minor issues. The source code is available on Launchpad so that someone reports errors or, even better, contributes some code. Find web_theme here.

+1
source

Source: https://habr.com/ru/post/1386455/


All Articles