Wrong asset path in brand_external_report_layout
Problem
Reports fail while compiling web.report_assets_common:
Could not get content for /brand_external_report_layout/static/src/legacy/scss/asset_styles_brand_report.scss.
Cause
The asset path has a leading slash in __manifest__.py and views/report_template.xml:
Errore nel caricamento dei CSS.
/brand_external_report_layout/static/src/legacy/scss/asset_styles_brand_report.scss
Actual manifest:
"web.report_assets_common": [
"/brand_external_report_layout/"
"static/src/legacy/scss/asset_styles_brand_report.scss"
]
Solution
Remove the leading slash:
Manifest update:
brand_external_report_layout/static/src/legacy/scss/asset_styles_brand_report.scss
"web.report_assets_common": [
"brand_external_report_layout/static/src/legacy/scss/asset_styles_brand_report.scss"
]
Wrong asset path in
brand_external_report_layoutProblem
Reports fail while compiling
web.report_assets_common:Could not get content for /brand_external_report_layout/static/src/legacy/scss/asset_styles_brand_report.scss.Cause
The asset path has a leading slash in
__manifest__.pyandviews/report_template.xml:Errore nel caricamento dei CSS.
/brand_external_report_layout/static/src/legacy/scss/asset_styles_brand_report.scssActual manifest:
Solution
Remove the leading slash:
Manifest update:
brand_external_report_layout/static/src/legacy/scss/asset_styles_brand_report.scss