summaryrefslogtreecommitdiff
path: root/fixco_custom/views/wizard_purchase_pricelist.xml
diff options
context:
space:
mode:
Diffstat (limited to 'fixco_custom/views/wizard_purchase_pricelist.xml')
-rw-r--r--fixco_custom/views/wizard_purchase_pricelist.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/fixco_custom/views/wizard_purchase_pricelist.xml b/fixco_custom/views/wizard_purchase_pricelist.xml
new file mode 100644
index 0000000..85ec528
--- /dev/null
+++ b/fixco_custom/views/wizard_purchase_pricelist.xml
@@ -0,0 +1,29 @@
+<!-- file: views/purchase_pricelist_wizard_view.xml -->
+<odoo>
+ <record id="purchase_pricelist_wizard_form" model="ir.ui.view">
+ <field name="name">purchase.pricelist.wizard.form</field>
+ <field name="model">purchase.pricelist.wizard</field>
+ <field name="arch" type="xml">
+
+ <form string="Create Purchase Pricelist">
+ <group>
+ <field name="product_id" readonly="1"/>
+ <field name="vendor_id"/>
+ <field name="price"/>
+ </group>
+
+ <footer>
+ <button string="Create"
+ type="object"
+ name="action_create_pricelist"
+ class="btn-primary"/>
+
+ <button string="Cancel"
+ class="btn-secondary"
+ special="cancel"/>
+ </footer>
+ </form>
+
+ </field>
+ </record>
+</odoo>