跳至內容
選單
此問題已被標幟
1 回覆
5616 瀏覽次數

in Point Of Sale interface,we have openerp logo in upper left corner.I want to change it but that too in my custom module.I do not want to modify original code in pos.xml file in Point Of Sale module.Please suggest me some solution.

頭像
捨棄
最佳答案

Hello !

You can create new module and in that module you have to write xml code to override main xml code like :

<t t-extend="PosWidget">
    <t t-jquery="div#branding img" t-operation="replace">
            <img src="/new_image_path" />
    </t>
</t>

Thanks,
info@acespritech.com

頭像
捨棄
作者

Thanks a lot........It is really working now