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.

32 lines
1.2 KiB

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