Hello all,
If I change the CSS code in this file : /home/odoo/addons/point_of_sale/static/src/css/pos.css
I automatically see my changes on the POS.
But if I make this changes in my custom module css : /home/odoo/addons/report_lapagept/static/src/css/pos_as.css
impossible to override the original CSS. I never see the changes. Only if they are in the original pos.css.
I have tried 2 ways to import my pos_as.css file in my custom module :
- I put it in my __openerp__.py
'css': [
'static/src/css/pos_as.css',
],
- I also tried with a xml file (like usually), but I'm not sure of my declaration
<template id="assets_pos_as" name="Assets POS - AS" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/report_lapagept/static/src/css/pos_as.css"/>
</xpath>
</template>
So, what is the best way TO OVERRIDE the original CSS in the point of sale of Odoo v8?
Thanks all
