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.
41 lines
1.8 KiB
41 lines
1.8 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- product.rfq wizard form view-->
|
|
<record id="product_rfq_form" model="ir.ui.view">
|
|
<field name="name">product.rfq.form</field>
|
|
<field name="model">product.rfq</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<group>
|
|
<group>
|
|
<field name="partner_id"/>
|
|
<field name="date_order"/>
|
|
</group>
|
|
<group>
|
|
<field name="user_id"/>
|
|
<field name="company_id"/>
|
|
</group>
|
|
</group>
|
|
<notebook>
|
|
<page string="Products">
|
|
<field name="rfq_line_ids">
|
|
<tree editable="bottom">
|
|
<field name="product_rfq_id" invisible="1"/>
|
|
<field name="product_id"/>
|
|
<field name="product_qty"/>
|
|
<field name="price_unit"/>
|
|
</tree>
|
|
</field>
|
|
</page>
|
|
</notebook>
|
|
</sheet>
|
|
<footer>
|
|
<button string="Create RFQ" class="btn btn-primary" type="object" name="action_create_rfq" data-hotkey="q"/>
|
|
<button string="Create and View RFQ" class="btn btn-primary" type="object" name="action_create_view_rfq" data-hotkey="w"/>
|
|
<button string="Cancel" class="btn-secondary" special="cancel" data-hotkey="z" />
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|