[ADD] url_attachment_search_fuzzy

pull/2703/head
mariadforgeflow 2023-03-06 08:28:41 +01:00 committed by PauBForgeFlow
parent 491d6e1a48
commit 99aeaa1a75
6 changed files with 39 additions and 0 deletions

View File

@ -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,
}

View File

@ -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>

View File

@ -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.

View File

@ -0,0 +1,2 @@
`ForgeFlow <https://www.forgeflow.com>`_:
* Maria de Luna <maria.de.luna@forgeflow.com>

View File

@ -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.

View File

@ -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).