Skip to content

Commit

Permalink
[16.0][ADD] analytic_cleaning_database_operations: Cleaning all analy…
Browse files Browse the repository at this point in the history
…tic operations from database.
  • Loading branch information
Berezi committed Nov 28, 2024
1 parent ca27938 commit ecd93ac
Show file tree
Hide file tree
Showing 12 changed files with 209 additions and 0 deletions.
28 changes: 28 additions & 0 deletions analytic_cleaning_database_operations/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

=====================================
Analytic Cleaning Database Operations
=====================================

Cleaning all analytic operations from database.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/avanzosc/odoo-addons/issues>`_. In case of trouble,
please check there if your issue has already been reported. If you spotted
it first, help us smash it by providing detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Contributors
------------

* Berezi Amubieta <bereziamubieta@avanzosc.es>
* Ana Juaristi <anajuaristi@avanzosc.es>
2 changes: 2 additions & 0 deletions analytic_cleaning_database_operations/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models
from . import wizards
19 changes: 19 additions & 0 deletions analytic_cleaning_database_operations/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2024 Berezi Amubieta - AvanzOSC
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Analytic Cleaning Database Operations",
"version": "16.0.1.0.0",
"category": "Analytic",
"license": "AGPL-3",
"author": "AvanzOSC",
"website": "https://github.com/avanzosc/odoo-addons",
"depends": [
"cleaning_database_operations",
"analytic",
],
"data": [
"views/cleaning_database_view.xml",
],
"installable": True,
"auto_install": True,
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * analytic_cleaning_database_operations
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-28 14:21+0000\n"
"PO-Revision-Date: 2024-11-28 14:21+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: analytic_cleaning_database_operations
#: model:ir.model.fields.selection,name:analytic_cleaning_database_operations.selection__cleaning_database_warning_wizard__object_to_delete__analytic
msgid "Analytic"
msgstr ""

#. module: analytic_cleaning_database_operations
#: model_terms:ir.ui.view,arch_db:analytic_cleaning_database_operations.cleaning_database_form_view
msgid "Analytic: Account Analytic Line."
msgstr ""

#. module: analytic_cleaning_database_operations
#: model_terms:ir.ui.view,arch_db:analytic_cleaning_database_operations.cleaning_database_form_view
msgid "Cleaning Analytic Operations"
msgstr ""

#. module: analytic_cleaning_database_operations
#: model:ir.model,name:analytic_cleaning_database_operations.model_cleaning_database
msgid "Cleaning Database Operations"
msgstr ""

#. module: analytic_cleaning_database_operations
#: model:ir.model.fields,field_description:analytic_cleaning_database_operations.field_cleaning_database_warning_wizard__object_to_delete
msgid "Object To Delete"
msgstr ""

#. module: analytic_cleaning_database_operations
#: model:ir.model,name:analytic_cleaning_database_operations.model_cleaning_database_warning_wizard
msgid "Wizard for warning when cleaning database operations"
msgstr ""
46 changes: 46 additions & 0 deletions analytic_cleaning_database_operations/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * analytic_cleaning_database_operations
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-28 14:21+0000\n"
"PO-Revision-Date: 2024-11-28 14:21+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: analytic_cleaning_database_operations
#: model:ir.model.fields.selection,name:analytic_cleaning_database_operations.selection__cleaning_database_warning_wizard__object_to_delete__analytic
msgid "Analytic"
msgstr "Analítica"

#. module: analytic_cleaning_database_operations
#: model_terms:ir.ui.view,arch_db:analytic_cleaning_database_operations.cleaning_database_form_view
msgid "Analytic: Account Analytic Line."
msgstr "Analítica: Línea analítica."

#. module: analytic_cleaning_database_operations
#: model_terms:ir.ui.view,arch_db:analytic_cleaning_database_operations.cleaning_database_form_view
msgid "Cleaning Analytic Operations"
msgstr "Limpieza de operaciones de analítica"

#. module: analytic_cleaning_database_operations
#: model:ir.model,name:analytic_cleaning_database_operations.model_cleaning_database
msgid "Cleaning Database Operations"
msgstr "Limpieza de operaciones en base de datos"

#. module: analytic_cleaning_database_operations
#: model:ir.model.fields,field_description:analytic_cleaning_database_operations.field_cleaning_database_warning_wizard__object_to_delete
msgid "Object To Delete"
msgstr "Estado"

#. module: analytic_cleaning_database_operations
#: model:ir.model,name:analytic_cleaning_database_operations.model_cleaning_database_warning_wizard
msgid "Wizard for warning when cleaning database operations"
msgstr "Asistente para alertar al limpiar las operaciones de la base de datos"
1 change: 1 addition & 0 deletions analytic_cleaning_database_operations/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import cleaning_database
13 changes: 13 additions & 0 deletions analytic_cleaning_database_operations/models/cleaning_database.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2024 Berezi Amubieta - AvanzOSC
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo import models


class CleaningDatabase(models.Model):
_inherit = "cleaning.database"

def action_delete_analytic_operations(self):
self.env.cr.execute(
"DELETE FROM account_analytic_line WHERE company_id in %s",
[tuple(self.company_ids.ids)],
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="cleaning_database_form_view" model="ir.ui.view">
<field name="model">cleaning.database</field>
<field
name="inherit_id"
ref="cleaning_database_operations.cleaning_database_form_view"
/>
<field name="arch" type="xml">
<div position="inside">
<p>Analytic: Account Analytic Line.</p>
<p>
<button
name="action_open_delete_warning"
type="object"
string="Cleaning Analytic Operations"
class="oe_highlight"
context="{'default_object_to_delete':'analytic'}"
/>
</p>
</div>
</field>
</record>
</odoo>
1 change: 1 addition & 0 deletions analytic_cleaning_database_operations/wizards/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import cleaning_database_warning_wizard
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2023 Berezi Amubieta - AvanzOSC
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo import fields, models


class CleaningDatabaseWarningWizard(models.TransientModel):
_inherit = "cleaning.database.warning.wizard"

object_to_delete = fields.Selection(
selection_add=[
("analytic", "Analytic"),
],
ondelete={"analytic": "cascade"},
)

def continue_with_cleaning_database(self):
super().continue_with_cleaning_database()
cleaning_database = self.env["cleaning.database"].browse(
self.env.context.get("active_id")
)
if self.object_to_delete == "analytic":
return cleaning_database.action_delete_analytic_operations()
6 changes: 6 additions & 0 deletions setup/analytic_cleaning_database_operations/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

0 comments on commit ecd93ac

Please sign in to comment.