看看这个奇怪的事情。 我的代码在这里运作良好。
<openerp>
<data>
<template id="index" inherit_id='point_of_sale.index' name="Restaurant Index"><!DOCTYPE html>
<xpath expr="//title" position="after">
<title>Odoo POS - AS</title>
</xpath>
<xpath expr="//link[@id='pos-stylesheet']" position="after">
<link rel="stylesheet" href="/pos_lapagept/static/src/css/pos_as.css" />
</xpath>
</template>
</data>
</openerp>
但如果我用这段代码替换:
<xpath expr="//title" position="replace">
<title>Odoo POS - AS</title>
</xpath>
它取代了标题。它什么都不做......你明白吗?
答案 0 :(得分:2)
尝试以下,
<xpath expr="//title" position="attributes">
<attribute name="title">Odoo POS - AS</attribute>
</xpath>