server-ux/base_tier_validation/wizard/comment_wizard_view.xml
2021-03-23 20:15:27 +01:00

27 lines
973 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2019 Ecosoft Co., Ltd. (http://ecosoft.co.th)
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<flectra>
<record id="view_comment_wizard" model="ir.ui.view">
<field name="name">Comment Wizard</field>
<field name="model">comment.wizard</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Comment">
<group>
<field name="comment" nolabel="1" />
</group>
<footer>
<button
name="add_comment"
string="Comment"
type="object"
class="oe_highlight"
/>
<button special="cancel" string="Cancel" class="oe_link" />
</footer>
</form>
</field>
</record>
</flectra>