constec 0.3.2__py3-none-any.whl → 0.3.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- constec/db/migrations/0003_remove_module_level.py +15 -0
- constec/db/models/__init__.py +1 -2
- constec/db/models/module.py +0 -10
- {constec-0.3.2.dist-info → constec-0.3.4.dist-info}/METADATA +1 -1
- {constec-0.3.2.dist-info → constec-0.3.4.dist-info}/RECORD +8 -7
- {constec-0.3.2.dist-info → constec-0.3.4.dist-info}/WHEEL +0 -0
- {constec-0.3.2.dist-info → constec-0.3.4.dist-info}/licenses/LICENSE +0 -0
- {constec-0.3.2.dist-info → constec-0.3.4.dist-info}/top_level.txt +0 -0
constec/db/models/__init__.py
CHANGED
|
@@ -24,7 +24,7 @@ from .person import Person
|
|
|
24
24
|
from .group import UserGroup
|
|
25
25
|
from .contact import ContactType, Contact, PersonContact
|
|
26
26
|
from .tag import TagCategory, PersonTag, PersonTagged
|
|
27
|
-
from .module import Module,
|
|
27
|
+
from .module import Module, CompanyModule, OrganizationModule
|
|
28
28
|
|
|
29
29
|
# ERP models (erp schema)
|
|
30
30
|
from .erp import System, CompanySystem, Connection
|
|
@@ -69,7 +69,6 @@ __all__ = [
|
|
|
69
69
|
'PersonTagged',
|
|
70
70
|
# Module
|
|
71
71
|
'Module',
|
|
72
|
-
'ModuleLevel',
|
|
73
72
|
'CompanyModule',
|
|
74
73
|
'OrganizationModule',
|
|
75
74
|
# ERP (erp schema)
|
constec/db/models/module.py
CHANGED
|
@@ -4,11 +4,6 @@ from .company import Company
|
|
|
4
4
|
from .organization import Organization
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
class ModuleLevel(models.TextChoices):
|
|
8
|
-
ORGANIZATION = 'organization', 'Organization Level'
|
|
9
|
-
COMPANY = 'company', 'Company Level'
|
|
10
|
-
|
|
11
|
-
|
|
12
7
|
class Module(UUIDModel):
|
|
13
8
|
"""Available modules in the platform."""
|
|
14
9
|
name = models.CharField(max_length=100)
|
|
@@ -16,11 +11,6 @@ class Module(UUIDModel):
|
|
|
16
11
|
description = models.TextField(blank=True, null=True)
|
|
17
12
|
version = models.CharField(max_length=20)
|
|
18
13
|
is_active = models.BooleanField(default=True)
|
|
19
|
-
level = models.CharField(
|
|
20
|
-
max_length=20,
|
|
21
|
-
choices=ModuleLevel.choices,
|
|
22
|
-
default=ModuleLevel.COMPANY,
|
|
23
|
-
)
|
|
24
14
|
|
|
25
15
|
class Meta:
|
|
26
16
|
app_label = 'constec_db'
|
|
@@ -3,8 +3,9 @@ constec/db/__init__.py,sha256=wou_y3aqCg1xP8Gr13FKRy0kEI2avV-19G3P2g3bzjs,287
|
|
|
3
3
|
constec/db/apps.py,sha256=zc-9lGNa049q9bvxV7957EwnZjuBozPLZq594cKAU24,221
|
|
4
4
|
constec/db/migrations/0001_initial.py,sha256=ru0auCkdz83Qu3e7hGX24WjZXAlM6fE7RZtgAnzANzQ,28979
|
|
5
5
|
constec/db/migrations/0002_module_level.py,sha256=Es27KUOuI_qrlyL8xBTjwsJJHVduAErNxn4Sdi0a-0w,1526
|
|
6
|
+
constec/db/migrations/0003_remove_module_level.py,sha256=3GX-VDLSZqqxaZf6KFtuc7U9nCkQ9EF8pSDxOnCz63g,275
|
|
6
7
|
constec/db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
constec/db/models/__init__.py,sha256=
|
|
8
|
+
constec/db/models/__init__.py,sha256=IPh5uRZXtL1iZ54vaM7yBIBVIgx2MjKkgXDAQBJjsDY,2178
|
|
8
9
|
constec/db/models/base.py,sha256=1t_eYXYyggoL5fKLcitRPKr1qUE1Ql3_sOmSHQMD3QE,359
|
|
9
10
|
constec/db/models/company.py,sha256=9Mr2Q9iSwu4bhp_4KPZqZy4ciJ62rI_AxFWSs1wGGhE,1097
|
|
10
11
|
constec/db/models/contact.py,sha256=VJ66YgzCqp09dzYM5IK9rZZV1jqBepJQO8YK28gA98k,2106
|
|
@@ -12,7 +13,7 @@ constec/db/models/erp.py,sha256=sN0U0XCMNW-pc9CNLZG_kPZeWXznq_XU3ML2zJ3arjA,3518
|
|
|
12
13
|
constec/db/models/erp_entity.py,sha256=aussrOd7kyNaP2tRJ5SS_WLzpXcZ-SyBa7KnSCkL89g,3954
|
|
13
14
|
constec/db/models/flow.py,sha256=K_UA7E4zJ2-UPNp5H9e-lfPeGn0wDEiOl0cRal4Dmb8,4414
|
|
14
15
|
constec/db/models/group.py,sha256=ueCOIfpmzR683ojWf5vLb6IG_jawfVRM7IJcGK05I3Y,897
|
|
15
|
-
constec/db/models/module.py,sha256=
|
|
16
|
+
constec/db/models/module.py,sha256=pKDTdbe0MUZWjgRFS6K1Jo5TMuy9mmdiw7OzrvG_gNw,1969
|
|
16
17
|
constec/db/models/organization.py,sha256=9dbsh5UBShtDRAeyMqqQEPEaflhzS3aiZpRWUiEluBU,1731
|
|
17
18
|
constec/db/models/person.py,sha256=B4BNdy2AgqmxrZrkWWvqnFxFHs4uO1n61Y_5sP6MsUo,848
|
|
18
19
|
constec/db/models/session.py,sha256=HeIk5rK25IaxKBRX-XNuJ75ndjJZ08rAdSGTLvTwlLE,2695
|
|
@@ -25,8 +26,8 @@ constec/shared/exceptions.py,sha256=8Bih40RWoH0gVhto09mH2ppSQV_drHPnGWITcoD-0J0,
|
|
|
25
26
|
constec/utils/__init__.py,sha256=brf-G4UvU-3CK_rKNPTaHwsVsxnoJSbml_QTZJSM7d0,458
|
|
26
27
|
constec/utils/cuit.py,sha256=dQKGlA4pRQ5DyR-N4BiV8ZsvAle2Vgjif7PU72zHx_A,2753
|
|
27
28
|
constec/utils/password.py,sha256=XNpTJ9xZQSoZNjXEAnexAEZuYkwW1dFgX4AY-B5Q0gA,1462
|
|
28
|
-
constec-0.3.
|
|
29
|
-
constec-0.3.
|
|
30
|
-
constec-0.3.
|
|
31
|
-
constec-0.3.
|
|
32
|
-
constec-0.3.
|
|
29
|
+
constec-0.3.4.dist-info/licenses/LICENSE,sha256=a1R51ONDGq0UQfV-n3ybsNL7EGhcC2sQ1sXvRANaFVI,1064
|
|
30
|
+
constec-0.3.4.dist-info/METADATA,sha256=A8m5zxLysSaSMsU33uBeDbdHfxrNR-h63Ki9ILPKXiY,2954
|
|
31
|
+
constec-0.3.4.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
32
|
+
constec-0.3.4.dist-info/top_level.txt,sha256=bQ9AydOLlthShsr7tA7t7ivbLvlLPdhHOo0BdWgnh_Y,8
|
|
33
|
+
constec-0.3.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|