扩展css文件销售点odoo 9

时间:2017-06-21 06:39:32

标签: openerp odoo-9

我想在销售点添加新的类referenc-tag

在mycss.css中我有:

#include<stdio.h>
#include<stdlib.h>
#include<string.h>

void stringg(char s[],int size)
{
        int i=1;
        char r[size];
        r[0]=s[0];
        int j;
        for(j=0;j<size;j++)
        {

                if(s[j]==' ')
                {
                        printf("Space Test \n");
                        r[i]=s[j+1];
                        i++;
                }
        }
        r[i]='\0';
        printf("\n The Returned String is %s",&r);
        return;
}
int main()
{
        char ss[100];
        scanf("%s",&ss);
        int size;
        size=sizeof(ss)/sizeof(ss[0]);
        stringg(ss,size);
        return 0;
}

在xml中

.referenc-tag {
    color: #FFF;
    background: #000;
    margin-bottom:10px;
}

在向元素和安装模块添加类之后,我的元素无法获得样式。

2 个答案:

答案 0 :(得分:2)

xml中的模板应如下所示:

<template id="assets_backend" name="pos_odoo assets" inherit_id="web.assets_backend">
        <xpath expr="." position="inside">
             <link rel="stylesheet" href="/pos_odoo/static/src/css/mycss.css"/>
        </xpath>
    </template>

在此之后,您需要将class =“referenc-tag”添加到您喜欢的xml文件,表单,树或其他内容中,以获得新样式。

不要忘记将所有xml文件添加到openerp.py文件中。

答案 1 :(得分:1)

您的示例是正确的,请尝试清除缓存并添加到openerp.py xml

<template id="assets" name="pos_odoo assets" inherit_id="point_of_sale.assets">
        <xpath expr="." position="inside">
            <link rel="stylesheet" href="/pos_odoo/static/src/css/mycss.css" />
        </xpath>
</template>

到openerp.py

&#39;数据&#39;:[         &#39;你的xml&#39;     ],