This error appears when i try to install a module.odoo.tools.convert.ParseError: while parsing None:3, somewhere inside
What am I done wrong here?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
In Odoo 15, there is no more assets template override. it's all done in the __manifest__.py files so If you want to add assets to assets_backend in Odoo 15 you have to do it through manifest file as you can see in the below link of account module:
odoo/__manifest__.py at 15.0 · odoo/odoo (github.com)
Read how the assets added in Odoo 15 in the below article link:
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
6
thg 9 24
|
52480 | ||
|
0
thg 2 24
|
1421 | ||
|
0
thg 12 22
|
2122 | ||
|
2
thg 6 20
|
20109 | ||
|
0
thg 3 16
|
6033 |
Please post the code to get the help.
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="assets_backend" name="mail_tracking assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/mail_tracking/static/src/css/mail_tracking.css"/>
<link rel="stylesheet" href="/mail_tracking/static/src/css/failed_message.css"/>
<script type="text/javascript" src="/mail_tracking/static/src/js/mail_tracking.js"/>
<script type="text/javascript" src="/mail_tracking/static/src/js/message.js"/>
<script type="text/javascript" src="/mail_tracking/static/src/js/failed_message/mail_failed_box.js"/>
<script type="text/javascript" src="/mail_tracking/static/src/js/failed_message/thread.js"/>
<script type="text/javascript" src="/mail_tracking/static/src/js/models/thread.js"/>
<script type="text/javascript" src="/mail_tracking/static/src/js/chatter.js"/>
<script type="text/javascript" src="/mail_tracking/static/src/js/discuss/discuss.js"/>
</xpath>
</template>
</odoo>