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.

52 lines
2.5 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <!-- wizard action on res.partner -->
  4. <act_window id="customer_outstanding_statement_wizard_action"
  5. name="Partner Outstanding Statement"
  6. src_model="res.partner"
  7. res_model="customer.outstanding.statement.wizard"
  8. view_type="form" view_mode="form"
  9. key2="client_action_multi" target="new"
  10. groups="account.group_account_user"/>
  11. <!-- wizard view -->
  12. <record id="customer_outstanding_statement_wizard_view" model="ir.ui.view">
  13. <field name="name">Customer Outstanding Statement Wizard</field>
  14. <field name="model">customer.outstanding.statement.wizard</field>
  15. <field name="arch" type="xml">
  16. <form name="Report Options">
  17. <div style="text-align:justify">
  18. <label string="The outstanding statement provides details of all partner's outstanding
  19. receivables and payables up to a particular date. This includes all unpaid invoices, unclaimed
  20. refunds and outstanding payments. The list is displayed in chronological order and is
  21. split by currencies."/><br/><br/>
  22. <label string="Aging details can be shown in the report, expressed in aging
  23. buckets (30 days due, ...), so the customer or vendor can review how much is open, due or overdue."/>
  24. </div><hr/>
  25. <group name="main_info">
  26. <field name="company_id" options="{'no_create': True}" groups="base.group_multi_company"/>
  27. </group>
  28. <group name="account_type">
  29. <label for="account_type"/>
  30. <field name="account_type" nolabel="1" widget="radio"/>
  31. </group>
  32. <group name="dates">
  33. <field name="date_end"/>
  34. </group>
  35. <group name="aging_report">
  36. <field name="show_aging_buckets"/>
  37. </group>
  38. <group name="multiple_partners">
  39. <field name="number_partner_ids" readonly="1" invisible="1"/>
  40. <field name="filter_partners_non_due" attrs="{'invisible': [('number_partner_ids', '=', 1)]}"/>
  41. </group>
  42. <footer>
  43. <button name="button_export_pdf" string="Export PDF" type="object" default_focus="1" class="oe_highlight"/>
  44. or
  45. <button string="Cancel" class="oe_link" special="cancel" />
  46. </footer>
  47. </form>
  48. </field>
  49. </record>
  50. </odoo>