xml version="1.0" encoding="utf-8"?>
id="assets_backend" name="project_workflow_assets" inherit_id="web.assets_backend">
expr="." position="inside">
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客戶關係
- e-Commerce
- 會計
- 庫存
- PoS
- Project
- MRP
此問題已被標幟
1
回覆
1368
瀏覽次數
Hi,
In odoo 15, you can't inherit web.assets_backend in view and can't add your js or css. You need to add it in manifest file.
'assets': {
'web.assets_backend': [
'module_name/static/src/js/yourjs.js',
],
},
Hope it helps