blob: 4c768bc1d11b05b9a3833a0781af1eeac0fb621f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="assets" inherit_id="point_of_sale.assets">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/pos_hr/static/src/css/pos.css"/>
<script type="text/javascript" src="/pos_hr/static/src/js/models.js"></script>
<script type="text/javascript" src="/pos_hr/static/src/js/useSelectEmployee.js"></script>
<script type="text/javascript" src="/pos_hr/static/src/js/Chrome.js"></script>
<script type="text/javascript" src="/pos_hr/static/src/js/HeaderLockButton.js"></script>
<script type="text/javascript" src="/pos_hr/static/src/js/CashierName.js"></script>
<script type="text/javascript" src="/pos_hr/static/src/js/LoginScreen.js"></script>
</xpath>
</template>
<template id="assets_tests" name="Pos Hr Assets Tests" inherit_id="web.assets_tests">
<xpath expr="." position="inside">
<script type="text/javascript" src="/pos_hr/static/tests/tours/PosHrTourMethods.js"></script>
<script type="text/javascript" src="/pos_hr/static/tests/tours/PosHrTour.js"></script>
</xpath>
</template>
</odoo>
|