How can I move the print symbol from the left to the right site in header? it should be displayed separately from all other menu items.
In addition, I would like to know how I can display the description in the sale.order.line table as a separate column. Currently the description is displayed directly below the product. However, it should be displayed to the right of the product column.
I would be very happy about your help. Many thanks in advance
For the first point- Did you tried in STUDIO
Hello,
yes I have, the description is always displayed underneath.
This allows me to omit the field, for example. Is that perhaps a Javascript behind it that sets the formatting? How can I work around this?
<record id="mymodul_sale_management_sale_order_form_quote" model="ir.ui.view">
<field name="name">mymodul.sale.management.sale.order.form.quote</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale_management.sale_order_form_quote"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='order_line']/list/field[@name='name']" position="attributes">
<attribute name="column_invisible">1</attribute>
</xpath>
</field>
</record>