mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
20 lines
646 B
XML
20 lines
646 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- VIEWS -->
|
|
|
|
<record id="app_view_move_form" model="ir.ui.view">
|
|
<field name="name">app.account.move.form</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<!-- 过帐操作-->
|
|
<xpath expr="//header//button[@name='action_post']" position="attributes">
|
|
<attribute name="string">Post Entry</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|