blob: 5c33cfc280cd7f2b744ba54aa4a6dfd2931c5b1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="assets_backend" name="Product assets backend" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<script type="text/javascript" src="/product/static/src/js/product_pricelist_report.js"></script>
</xpath>
</template>
<template id="qunit_suite" name="Product pricelist report tests" inherit_id="web.qunit_suite_tests">
<xpath expr="." position="inside">
<script type="text/javascript" src="/product/static/tests/product_pricelist_report_test.js"></script>
</xpath>
</template>
</odoo>
|