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