diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2026-01-14 03:32:56 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2026-01-14 03:32:56 +0000 |
| commit | d7cafd5a4db30b08dceabf8999a0903b6871368d (patch) | |
| tree | a464c57c47fa80101933faaec0b7458cba605d8a /fixco_custom/views/purchase_order_line_wizard.xml | |
| parent | 7eb25a9ae2ef304503749f8023b8d2f5e2a2e58f (diff) | |
| parent | c4a4653e4065789a9c1baa97e91709ea52a6131e (diff) | |
Merged in bills_add_item_po (pull request #3)
Bills add item po
Diffstat (limited to 'fixco_custom/views/purchase_order_line_wizard.xml')
| -rw-r--r-- | fixco_custom/views/purchase_order_line_wizard.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/fixco_custom/views/purchase_order_line_wizard.xml b/fixco_custom/views/purchase_order_line_wizard.xml new file mode 100644 index 0000000..bce3667 --- /dev/null +++ b/fixco_custom/views/purchase_order_line_wizard.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <data> + + <record id="view_po_line_wizard_form" model="ir.ui.view"> + <field name="name">purchase.order.line.wizard.form</field> + <field name="model">purchase.order.line.wizard</field> + <field name="arch" type="xml"> + <form string="Select PO Items"> + <group> + <field name="line_ids"> + <tree editable="bottom"> + <field name="order_id" readonly="1"/> + <field name="product_id" readonly="1"/> + <field name="bill_remain" readonly="1"/> + <field name="qty_invoiced" readonly="1"/> + <field name="product_qty" readonly="1"/> + </tree> + </field> + </group> + + <footer> + <button string="Add" + type="object" + name="action_add_lines" + class="btn-primary"/> + <button string="Cancel" + class="btn-secondary" + special="cancel"/> + </footer> + </form> + </field> + </record> + + </data> +</odoo> + |
