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.

54 lines
2.7 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="Partner 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 partner's outstanding
  21. receivables and payables 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 or vendor 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="account_type">
  31. <label for="account_type"/>
  32. <field name="account_type" nolabel="1" widget="radio"/>
  33. </group>
  34. <group name="dates">
  35. <field name="date_end"/>
  36. </group>
  37. <group name="aging_report">
  38. <field name="show_aging_buckets"/>
  39. </group>
  40. <group name="multiple_partners">
  41. <field name="number_partner_ids" readonly="1" invisible="1"/>
  42. <field name="filter_partners_non_due" attrs="{'invisible': [('number_partner_ids', '=', 1)]}"/>
  43. </group>
  44. <footer>
  45. <button name="button_export_pdf" string="Export PDF" type="object" default_focus="1" class="oe_highlight"/>
  46. or
  47. <button string="Cancel" class="oe_link" special="cancel" />
  48. </footer>
  49. </form>
  50. </field>
  51. </record>
  52. </odoo>