From 9a7a95e00f8dab9f66a8dafda7cdf586fc369069 Mon Sep 17 00:00:00 2001 From: camilogs Date: Sat, 5 Aug 2023 16:41:13 -0500 Subject: [PATCH] chore: Se renombra carpeta util y archivo municipalities --- call.py | 6 +++--- locations/{municipalities.xml => city.xml} | 0 prospect_trace.py | 2 +- {Util => selections}/__init__.py | 0 {Util => selections}/call_results.py | 0 {Util => selections}/call_types.py | 0 {Util => selections}/interest.py | 0 7 files changed, 4 insertions(+), 4 deletions(-) rename locations/{municipalities.xml => city.xml} (100%) rename {Util => selections}/__init__.py (100%) rename {Util => selections}/call_results.py (100%) rename {Util => selections}/call_types.py (100%) rename {Util => selections}/interest.py (100%) diff --git a/call.py b/call.py index ee1a96b..c7d4f8e 100644 --- a/call.py +++ b/call.py @@ -2,9 +2,9 @@ from trytond.model import ModelSQL, ModelView, fields from datetime import date -from .Util.interest import Interest -from .Util.call_types import CallTypes -from .Util.call_results import CallResults +from .selections.interest import Interest +from .selections.call_types import CallTypes +from .selections.call_results import CallResults class Call(ModelSQL, ModelView): diff --git a/locations/municipalities.xml b/locations/city.xml similarity index 100% rename from locations/municipalities.xml rename to locations/city.xml diff --git a/prospect_trace.py b/prospect_trace.py index 7013e88..6d6e9df 100644 --- a/prospect_trace.py +++ b/prospect_trace.py @@ -1,7 +1,7 @@ # This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. from trytond.model import ModelSQL, ModelView, fields -from .Util.interest import Interest +from .selections.interest import Interest class ProspectTrace(ModelSQL, ModelView): diff --git a/Util/__init__.py b/selections/__init__.py similarity index 100% rename from Util/__init__.py rename to selections/__init__.py diff --git a/Util/call_results.py b/selections/call_results.py similarity index 100% rename from Util/call_results.py rename to selections/call_results.py diff --git a/Util/call_types.py b/selections/call_types.py similarity index 100% rename from Util/call_types.py rename to selections/call_types.py diff --git a/Util/interest.py b/selections/interest.py similarity index 100% rename from Util/interest.py rename to selections/interest.py