-
Notifications
You must be signed in to change notification settings - Fork 25
/
web_module.xml
22 lines (19 loc) · 889 Bytes
/
web_module.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<!-- Ce fichier doit être défini dans la clé 'data' de __openerp__.py -->
<!-- Les fichiers JS -->
<template id="assets_backend" name="point_of_sale assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<script type="text/javascript" src="/pos_payment_terminal/static/src/js/pos_payment_terminal.js"></script>
<script type="text/javascript" src="/pos_payment_terminal/static/lib/fastclick.js"></script>
</xpath>
</template>
<!-- Les fichiers CSS -->
<template id="index" name="pos_payment_terminal index" inherit_id="point_of_sale.index">
<xpath expr="//link[@id='pos-stylesheet']" position="after">
<link rel="stylesheet" href="/pos_payment_terminal/static/src/css/pos_payment_terminal.css" id="pos_payment_terminal-stylesheet"/>
</xpath>
</template>
</data>
</odoo>