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.

49 lines
2.5 KiB

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