forked from Mapan/odoo17e
35 lines
1.6 KiB
XML
35 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record model="ir.ui.view" id="account_move_send_inherit_l10n_ro_edi">
|
|
<field name="name">account.move.send.form.inherit.l10n_ro_edi</field>
|
|
<field name="model">account.move.send</field>
|
|
<field name="inherit_id" ref="account.account_move_send_form"/>
|
|
<field name="arch" type="xml">
|
|
|
|
<!--TODO: to be removed in master-->
|
|
<xpath expr="//div[@name='warnings']" position="inside">
|
|
<div class="alert alert-warning" role="alert" invisible="not l10n_ro_edi_warnings">
|
|
<field name="l10n_ro_edi_warnings"/>
|
|
</div>
|
|
</xpath>
|
|
|
|
<xpath expr="//div[@name='advanced_options']" position="inside">
|
|
<field name="l10n_ro_edi_send_enable" invisible="1"/>
|
|
<field name="l10n_ro_edi_send_readonly" invisible="1"/>
|
|
<div name="option_l10n_ro_edi" invisible="not l10n_ro_edi_send_enable">
|
|
<field name="l10n_ro_edi_send_checkbox" readonly="l10n_ro_edi_send_readonly"/>
|
|
<b><label for="l10n_ro_edi_send_checkbox"/></b>
|
|
<i class="fa fa-question-circle"
|
|
role="img"
|
|
aria-label="Warning"
|
|
title="You can't send now. Some move(s) are waiting for an answer."
|
|
invisible="not l10n_ro_edi_send_readonly"/>
|
|
</div>
|
|
</xpath>
|
|
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|