blob: bd2c99987fcf7c65e4ec417bbcb7f68c5bd7ec11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="assets_backend_inherit_sale" inherit_id="web.assets_backend" name="Sale Grid assets">
<xpath expr="script[last()]" position="after">
<script type="text/javascript" src="/sale_product_matrix/static/src/js/product_matrix_configurator.js"/>
</xpath>
</template>
<template id="qunit_suite" name="sale_product_matrix tests" inherit_id="web.qunit_suite_tests">
<xpath expr="." position="inside">
<script type="text/javascript" src="/sale_product_matrix/static/tests/section_and_note_widget_tests.js"></script>
</xpath>
</template>
<template id="assets_tests" name="Sale Product Matrix Assets Tests" inherit_id="web.assets_tests">
<xpath expr="." position="inside">
<script type="text/javascript" src="/sale_product_matrix/static/tests/tours/sale_product_matrix_tour.js"/>
</xpath>
</template>
</odoo>
|