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.

71 lines
2.9 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2017-2019 MuK IT GmbH.
  4. This file is part of MuK Utils
  5. (see https://mukit.at).
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Lesser General Public License as published by
  8. the Free Software Foundation, either version 3 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU Lesser General Public License for more details.
  14. You should have received a copy of the GNU Lesser General Public License
  15. along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. -->
  17. <odoo>
  18. <record id="view_attachment_search" model="ir.ui.view">
  19. <field name="name">ir_attachment.search</field>
  20. <field name="model">ir.attachment</field>
  21. <field name="inherit_id" ref="base.view_attachment_search"/>
  22. <field name="arch" type="xml">
  23. <xpath expr="//filter[@name='url_filter']" position="before">
  24. <separator/>
  25. <filter name="all" string="All Data" domain="['|',('res_field', '=', False),('res_field', '!=', False)]"/>
  26. <filter name="set_res_field" string="Field Data" domain="[('res_field', '!=', False)]"/>
  27. <filter name="no_res_field" string="Attachments" domain="[('res_field', '=', False)]"/>
  28. <separator/>
  29. </xpath>
  30. <xpath expr="//group//filter[last()]" position="before">
  31. <separator/>
  32. <filter name="group_res_model" string="Attached Document Model" context="{'group_by': 'res_model'}" />
  33. <filter name="group_res_field" string="Attached Document Field" context="{'group_by': 'res_field'}" />
  34. </xpath>
  35. </field>
  36. </record>
  37. <record id="view_attachment_tree" model="ir.ui.view">
  38. <field name="name">ir_attachment.tree</field>
  39. <field name="model">ir.attachment</field>
  40. <field name="inherit_id" ref="base.view_attachment_tree"/>
  41. <field name="arch" type="xml">
  42. <xpath expr="//field[@name='datas_fname']" position="after">
  43. <field name="mimetype" />
  44. </xpath>
  45. </field>
  46. </record>
  47. <record id="view_attachment_form" model="ir.ui.view">
  48. <field name="name">ir_attachment.form</field>
  49. <field name="model">ir.attachment</field>
  50. <field name="inherit_id" ref="base.view_attachment_form"/>
  51. <field name="arch" type="xml">
  52. <xpath expr="//group[@name='description_group']" position="before">
  53. <group string="Storage" name="storage" groups="base.group_no_one">
  54. <field name="db_datas" readonly="1" attrs="{'invisible':[('db_datas','=',False)]}"/>
  55. <field name="store_fname" readonly="1" attrs="{'invisible':[('store_fname','=',False)]}"/>
  56. </group>
  57. </xpath>
  58. </field>
  59. </record>
  60. </odoo>