[ADD] url_attachment_search_fuzzy
parent
491d6e1a48
commit
99aeaa1a75
|
@ -0,0 +1,18 @@
|
|||
# Copyright 2023 ForgeFlow S.L.
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
{
|
||||
"name": "Fuzzy Search of URL in Attachments",
|
||||
"version": "14.0.1.0.0",
|
||||
"depends": [
|
||||
"base_search_fuzzy",
|
||||
],
|
||||
"website": "https://github.com/OCA/server-tools",
|
||||
"author": "ForgeFlow, Odoo Community Association (OCA)",
|
||||
"category": "Tools",
|
||||
"license": "AGPL-3",
|
||||
"maintainers": ["mariadforgelow"],
|
||||
"data": [
|
||||
"data/url_attachment_index.xml",
|
||||
],
|
||||
"installable": True,
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="trgm_index_gin_url_attacment" model="trgm.index">
|
||||
<field name="field_id" ref="base.field_ir_attachment__url" />
|
||||
<field name="index_type">gin</field>
|
||||
</record>
|
||||
</odoo>
|
|
@ -0,0 +1,2 @@
|
|||
You just have to install this module and the Index for 'url' field in ir_attachment
|
||||
model will be automatically created.
|
|
@ -0,0 +1,2 @@
|
|||
`ForgeFlow <https://www.forgeflow.com>`_:
|
||||
* Maria de Luna <maria.de.luna@forgeflow.com>
|
|
@ -0,0 +1,3 @@
|
|||
This module creates a trigram index for the field url in ir_attachment in order to make
|
||||
more efficient sql searches with like operand and this field.
|
||||
In large dbs it can speed up a lot interface loading, for example when logging in.
|
|
@ -0,0 +1,7 @@
|
|||
(same as the base module)
|
||||
|
||||
#. The PostgreSQL extension ``pg_trgm`` should be available. In debian based
|
||||
distribution you have to install the `postgresql-contrib` module.
|
||||
#. Install the ``pg_trgm`` extension to your database or give your postgresql
|
||||
user the ``SUPERUSER`` right (this allows the odoo module to install the
|
||||
extension to the database).
|
Loading…
Reference in New Issue