[IMP] pos_restaurant: update some paths due to module name change

This commit is contained in:
Frederic van der Essen 2014-08-07 14:05:30 +02:00
parent 81304870ba
commit 22676c7447
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
openerp.restaurant = function(instance){
openerp.pos_restaurant = function(instance){
var module = instance.point_of_sale;

View File

@ -6,16 +6,16 @@
<template id="index" inherit_id='point_of_sale.index' name="Restaurant Index">&lt;!DOCTYPE html&gt;
<xpath expr="//link[@id='pos-stylesheet']" position="after">
<link rel="stylesheet" href="/restaurant/static/src/css/restaurant.css" />
<link rel="stylesheet" href="/pos_restaurant/static/src/css/restaurant.css" />
</xpath>
</template>
<template id="assets_frontend" inherit_id="web.assets_common">
<xpath expr="." position="inside">
<script type="text/javascript" src="/restaurant/static/src/js/multiprint.js"></script>
<script type="text/javascript" src="/restaurant/static/src/js/splitbill.js"></script>
<script type="text/javascript" src="/restaurant/static/src/js/printbill.js"></script>
<script type="text/javascript" src="/restaurant/static/src/js/main.js"></script>
<script type="text/javascript" src="/pos_restaurant/static/src/js/multiprint.js"></script>
<script type="text/javascript" src="/pos_restaurant/static/src/js/splitbill.js"></script>
<script type="text/javascript" src="/pos_restaurant/static/src/js/printbill.js"></script>
<script type="text/javascript" src="/pos_restaurant/static/src/js/main.js"></script>
</xpath>
</template>