You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.3 KiB
32 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Account move views for adding a field-->
|
|
<record id="view_move_form" model="ir.ui.view">
|
|
<field name="name">
|
|
account.move.view.form.inherit.advanced.vat.invoice
|
|
</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//notebook/page[@id='other_tab']" position="after">
|
|
<page string="QR Code"
|
|
invisible="qr_page != True">
|
|
<group>
|
|
<group>
|
|
<label for="qr"/>
|
|
<field name="qr" widget='image' nolabel="1"
|
|
invisible="state != 'posted'"/>
|
|
<field name="qr_button" invisible="1"/>
|
|
<field name="qr_page" invisible="1"/>
|
|
</group>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
<xpath expr="header" position="inside">
|
|
<button name="generate_qr_button" string="Generate QR"
|
|
type="object"
|
|
invisible="qr_button == False or state != 'posted'"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|