Odoo 10.0更改POS徽标

时间:2017-01-11 02:38:28

标签: openerp odoo-9 odoo-view odoo-website

我已经能够通过激活开发者模式来更改General Odoo徽标。并点击自己的徽标和"编辑公司数据",选择徽标。

但这不适用于POS。徽标仍然是默认的Odoo徽标。怎么改呢?

如何更改POS /销售点的徽标?

2 个答案:

答案 0 :(得分:6)

我认为为它创建一个模块比编辑核心代码更好。

创建一个模块,例如:test_pos

  

中添加以下代码      

<强> test_pos / __的OpenERP __。PY

{
    'name': 'Company POS LOGO',
    'version': '1.0.0',
    'category': 'web',
    'sequence': 3,
    'author': 'LOYAL',
    'depends': ['web','point_of_sale','mail'
    ],
    'data': [
        # 'change_view.xml',
        'templates.xml',

    ],
    'qweb':['static/src/xml/poschange.xml'],
    'installable': True,
    'application': True,
    'auto_install': False,
}
  

创建poschange.xml及以下代码

      test_pos / static / src / xml / poschange.xml

<?xml version="1.0" encoding="utf-8"?>
<templates id='template' xmlspace='preserve'>
<t t-extend="Chrome">
    <t t-jquery=".pos-logo" t-operation="replace">
      <img class="pos-logo" src="/test_pos/static/src/img/logo.png" />  
    </t>
  </t>

</templates>
  

中添加要用pos徽标替换的图像      

<强> / test_pos /静态/ SRC / IMG /

答案 1 :(得分:1)

enter image description here

  

这是解决这个问题的简单方法。

     

只需要在 point_of_sale module.

中的路径上替换logo.png文件
**point_of_sale/static/src/img/logo.png**