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.

47 lines
2.3 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="Aging 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">Aging 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 outstanding
  19. customer receivables 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 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="dates">
  29. <field name="date_end"/>
  30. </group>
  31. <group name="aging_report">
  32. <field name="show_aging_buckets"/>
  33. </group>
  34. <group name="multiple_partners">
  35. <field name="number_partner_ids" readonly="1" invisible="1"/>
  36. <field name="filter_partners_non_due" attrs="{'invisible': [('number_partner_ids', '=', 1)]}"/>
  37. </group>
  38. <footer>
  39. <button name="button_export_pdf" string="Export PDF" type="object" default_focus="1" class="oe_highlight"/>
  40. or
  41. <button string="Cancel" class="oe_link" special="cancel" />
  42. </footer>
  43. </form>
  44. </field>
  45. </record>
  46. </odoo>