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.

29 lines
1.1 KiB

  1. <?xml version="1.0"?>
  2. <!-- Copyright 2016-2018 Sylvain LE GAL (https://twitter.com/legalsylvain)
  3. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-->
  4. <odoo>
  5. <record id="view_partial_return_wizard_form" model="ir.ui.view">
  6. <field name="model">pos.partial.return.wizard</field>
  7. <field name="arch" type="xml">
  8. <form string="Partial Return">
  9. <group string="Lines to Return">
  10. <field name="line_ids" nolabel="1">
  11. <tree editable="bottom">
  12. <field name="pos_order_line_id" force_save="1"/>
  13. <field name="initial_qty"/>
  14. <field name="max_returnable_qty"/>
  15. <field name="qty"/>
  16. </tree>
  17. </field>
  18. </group>
  19. <footer>
  20. <button string="Confirm" name="confirm" type="object" class="btn-primary"/>
  21. <button string="Cancel" special="cancel" class="btn-default"/>
  22. </footer>
  23. </form>
  24. </field>
  25. </record>
  26. </odoo>