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.
23 lines
925 B
23 lines
925 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Inherits Sale Order form view to add the new fields -->
|
|
<record id="sale_order_view_form" model="ir.ui.view">
|
|
<field name="name">sale.order.form.inherit.customer.order.comment</field>
|
|
<field name="model">sale.order</field>
|
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//notebook/page[@name='other_information']" position="after">
|
|
<page string="Customer Order Comment" name="customer_comment" >
|
|
<group>
|
|
<field name="comment" string="Comment" widget="text"/>
|
|
</group>
|
|
<group>
|
|
<field name="rating" string="Rating" widget="priority"/>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|