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. <filter name="group_res_model" string="Attached Document Model" context="{'group_by': 'res_model'}" />
  32. <filter name="group_res_field" string="Attached Document Field" context="{'group_by': 'res_field'}" />
  33. </xpath>
  34. </field>
  35. </record>
  36. <record id="view_attachment_tree" model="ir.ui.view">
  37. <field name="name">ir_attachment.tree</field>
  38. <field name="model">ir.attachment</field>
  39. <field name="inherit_id" ref="base.view_attachment_tree"/>
  40. <field name="arch" type="xml">
  41. <xpath expr="//field[@name='name']" position="after">
  42. <field name="mimetype" />
  43. </xpath>
  44. </field>
  45. </record>
  46. <record id="view_attachment_form" model="ir.ui.view">
  47. <field name="name">ir_attachment.form</field>
  48. <field name="model">ir.attachment</field>
  49. <field name="inherit_id" ref="base.view_attachment_form"/>
  50. <field name="arch" type="xml">
  51. <xpath expr="//group[@name='description_group']" position="before">
  52. <group string="Storage" name="storage" groups="base.group_no_one">
  53. <field name="db_datas" readonly="1" attrs="{'invisible':[('db_datas','=',False)]}"/>
  54. <field name="store_fname" readonly="1" attrs="{'invisible':[('store_fname','=',False)]}"/>
  55. </group>
  56. </xpath>
  57. </field>
  58. </record>
  59. </odoo>