trytondo-sale_order/view/order_form.xml
2025-02-09 20:05:22 -05:00

33 lines
1014 B
XML

<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form col="6">
<label name="party"/>
<field name="party"/>
<label name="number"/>
<field name="number"/>
<newline/>
<label name="order_address"/>
<field name="order_address"/>
<label name="order_mobile"/>
<field name="order_mobile"/>
<newline/>
<label name="date"/>
<field name="date"/>
<label name="pickup_location"/>
<field name="pickup_location"/>
<notebook colspan="6">
<page string="Order" id="Orders">
<field name="lines" colspan="4"
view_ids="sale_order.order_line_view_tree,sale_order.order_line_view_form"/>
<label name="total_order"/>
<field name="total_order"/>
</page>
</notebook>
<label name="state"/>
<field name="state"/>
<group col="-1" colspan="3" id="buttons">
<button name="confirm" string="Confirm" icon="tryton-forward"/>
</group>
</form>