proteus 7.0.1__py3-none-any.whl → 7.2.1__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.
Potentially problematic release.
This version of proteus might be problematic. Click here for more details.
- proteus/__init__.py +5 -1
- proteus/config.py +3 -0
- proteus/tests/test_model.py +1 -2
- proteus/tests/test_readme.py +1 -0
- {proteus-7.0.1.dist-info → proteus-7.2.1.dist-info}/METADATA +7 -7
- proteus-7.2.1.dist-info/RECORD +17 -0
- {proteus-7.0.1.dist-info → proteus-7.2.1.dist-info}/WHEEL +1 -1
- proteus-7.0.1.dist-info/RECORD +0 -17
- {proteus-7.0.1.dist-info → proteus-7.2.1.dist-info}/LICENSE +0 -0
- {proteus-7.0.1.dist-info → proteus-7.2.1.dist-info}/top_level.txt +0 -0
- {proteus-7.0.1.dist-info → proteus-7.2.1.dist-info}/zip-safe +0 -0
proteus/__init__.py
CHANGED
|
@@ -10,7 +10,7 @@ from decimal import Decimal
|
|
|
10
10
|
|
|
11
11
|
import proteus.config
|
|
12
12
|
|
|
13
|
-
__version__ = "7.
|
|
13
|
+
__version__ = "7.2.1"
|
|
14
14
|
__all__ = ['Model', 'Wizard', 'Report']
|
|
15
15
|
|
|
16
16
|
_MODELS = threading.local()
|
|
@@ -925,6 +925,7 @@ class Model(object):
|
|
|
925
925
|
else:
|
|
926
926
|
record, = records
|
|
927
927
|
values = record._on_change_args(change)
|
|
928
|
+
values['id'] = record.id
|
|
928
929
|
changes = getattr(proxy, button)(values, context)
|
|
929
930
|
record._set_on_change(changes)
|
|
930
931
|
|
|
@@ -1151,6 +1152,7 @@ class Model(object):
|
|
|
1151
1152
|
on_change)
|
|
1152
1153
|
values.update(self._on_change_args(on_change))
|
|
1153
1154
|
if values:
|
|
1155
|
+
values['id'] = self.id
|
|
1154
1156
|
context = self._context
|
|
1155
1157
|
change = getattr(self._proxy, 'on_change')(values, names, context)
|
|
1156
1158
|
self._set_on_change(change)
|
|
@@ -1171,6 +1173,7 @@ class Model(object):
|
|
|
1171
1173
|
to_change.add(field)
|
|
1172
1174
|
values.update(self._on_change_args(on_change_with + [field]))
|
|
1173
1175
|
if to_change:
|
|
1176
|
+
values['id'] = self.id
|
|
1174
1177
|
context = self._context
|
|
1175
1178
|
changes = getattr(self._proxy, 'on_change_with')(values,
|
|
1176
1179
|
list(to_change), context)
|
|
@@ -1180,6 +1183,7 @@ class Model(object):
|
|
|
1180
1183
|
for field in later:
|
|
1181
1184
|
on_change_with = self._fields[field]['on_change_with']
|
|
1182
1185
|
values.update(self._on_change_args(on_change_with + [field]))
|
|
1186
|
+
values['id'] = self.id
|
|
1183
1187
|
context = self._context
|
|
1184
1188
|
changes = getattr(self._proxy, 'on_change_with')(
|
|
1185
1189
|
values, list(later), context)
|
proteus/config.py
CHANGED
|
@@ -202,6 +202,8 @@ class _TrytondMethod(object):
|
|
|
202
202
|
(c_args, c_kwargs,
|
|
203
203
|
transaction.context, transaction.timestamp) \
|
|
204
204
|
= rpc.convert(self._object, *args, **kwargs)
|
|
205
|
+
if self._config.skip_warning:
|
|
206
|
+
transaction.context['_skip_warnings'] = True
|
|
205
207
|
meth = getattr(self._object, self._name)
|
|
206
208
|
if (rpc.instantiate is None
|
|
207
209
|
or not is_instance_method(
|
|
@@ -276,6 +278,7 @@ class TrytondConfig(Config):
|
|
|
276
278
|
self.database_name = database_name
|
|
277
279
|
self._user = user
|
|
278
280
|
self.config_file = config_file
|
|
281
|
+
self.skip_warning = False
|
|
279
282
|
|
|
280
283
|
Pool.start()
|
|
281
284
|
self.pool = Pool(database_name)
|
proteus/tests/test_model.py
CHANGED
|
@@ -196,9 +196,8 @@ class TestModel(ProteusTestCase):
|
|
|
196
196
|
group.save()
|
|
197
197
|
|
|
198
198
|
ModelAccess = Model.get('ir.model.access')
|
|
199
|
-
Model_ = Model.get('ir.model')
|
|
200
199
|
model_access = ModelAccess()
|
|
201
|
-
model_access.model =
|
|
200
|
+
model_access.model = 'res.group'
|
|
202
201
|
model_access.perm_read = True
|
|
203
202
|
model_access.perm_write = True
|
|
204
203
|
model_access.perm_create = True
|
proteus/tests/test_readme.py
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: proteus
|
|
3
|
-
Version: 7.
|
|
3
|
+
Version: 7.2.1
|
|
4
4
|
Summary: Library to access Tryton server as a client
|
|
5
5
|
Home-page: http://www.tryton.org/
|
|
6
|
-
Download-URL: http://downloads.tryton.org/7.
|
|
6
|
+
Download-URL: http://downloads.tryton.org/7.2/
|
|
7
7
|
Author: Tryton
|
|
8
8
|
Author-email: foundation@tryton.org
|
|
9
9
|
License: LGPL-3
|
|
10
10
|
Project-URL: Bug Tracker, https://bugs.tryton.org/
|
|
11
|
-
Project-URL: Documentation, https://docs.tryton.org/
|
|
11
|
+
Project-URL: Documentation, https://docs.tryton.org/latest/client-library/
|
|
12
12
|
Project-URL: Forum, https://www.tryton.org/forum
|
|
13
13
|
Project-URL: Source Code, https://code.tryton.org/tryton
|
|
14
14
|
Keywords: tryton library cli
|
|
@@ -33,11 +33,11 @@ Requires-Python: >=3.8
|
|
|
33
33
|
License-File: LICENSE
|
|
34
34
|
Requires-Dist: defusedxml
|
|
35
35
|
Requires-Dist: python-dateutil
|
|
36
|
-
Provides-Extra: test
|
|
37
|
-
Requires-Dist: trytond <7.1,>=7.0 ; extra == 'test'
|
|
38
|
-
Requires-Dist: trytond-party <7.1,>=7.0 ; extra == 'test'
|
|
39
36
|
Provides-Extra: trytond
|
|
40
|
-
Requires-Dist: trytond
|
|
37
|
+
Requires-Dist: trytond<7.3,>=7.2; extra == "trytond"
|
|
38
|
+
Provides-Extra: test
|
|
39
|
+
Requires-Dist: trytond<7.3,>=7.2; extra == "test"
|
|
40
|
+
Requires-Dist: trytond_party<7.3,>=7.2; extra == "test"
|
|
41
41
|
|
|
42
42
|
=======================
|
|
43
43
|
Tryton Scripting Client
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
proteus/__init__.py,sha256=ArkZx6V3vQ0hlsnejgtXhA8Py-lpIpuLWYba0tPlxEo,49573
|
|
2
|
+
proteus/config.py,sha256=IfH1s7Dhenga6tZXtntRX6zgKnwQpzf8NkTLr9Mvw_s,13493
|
|
3
|
+
proteus/pyson.py,sha256=R4K1oyt2EpbxfsnXEM7EEU-nWclgbQnOPo9tJHoyWQM,22081
|
|
4
|
+
proteus/tests/__init__.py,sha256=ntQJf_2grlorGbYPXySORFaXIlMhvSGhJ9rB2rrhE7g,366
|
|
5
|
+
proteus/tests/common.py,sha256=rrNCNEyXHLP1Qevs7dkHRkro931hQkMFmk012K-jzIo,454
|
|
6
|
+
proteus/tests/test_config.py,sha256=0c97M4kSP6YEcDunFn-4BAqRTTk077-Ee0dHSbTY4Rg,1484
|
|
7
|
+
proteus/tests/test_context.py,sha256=cDN-v7PgkYegYFNEJ9XfIc4T0eVFjOX-rgDWNV1SAlI,564
|
|
8
|
+
proteus/tests/test_model.py,sha256=zcZBFwDZ0kQVYEVBMulAK6tGk2fJzRvqwnGHHmfow88,12463
|
|
9
|
+
proteus/tests/test_readme.py,sha256=Uhm7QhQiia00qWGhQUqri7_-SYAyNSQfNv74sNb6ReQ,817
|
|
10
|
+
proteus/tests/test_report.py,sha256=OaDSNQIAyiDM_26glyZPSq2t7xzMDUto6h0EVXmAoZ0,793
|
|
11
|
+
proteus/tests/test_wizard.py,sha256=vxEhnE578KBxu5ls-rcMA_m8lRUZF8A-vItxWiGsa_I,2150
|
|
12
|
+
proteus-7.2.1.dist-info/LICENSE,sha256=LVyRoc66HRMBoJdRqIQRlJtpzzrgb4eBWrlJwhcC9fc,42788
|
|
13
|
+
proteus-7.2.1.dist-info/METADATA,sha256=3TT5jvI23BIv0PSY43oHFUL_EMgcRQ1-1uxNb2YXywM,5799
|
|
14
|
+
proteus-7.2.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
15
|
+
proteus-7.2.1.dist-info/top_level.txt,sha256=7LjMNpvlVFgsEJnTt9d28ZE5oRrsViu9ZyORIWB9QeQ,8
|
|
16
|
+
proteus-7.2.1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
17
|
+
proteus-7.2.1.dist-info/RECORD,,
|
proteus-7.0.1.dist-info/RECORD
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
proteus/__init__.py,sha256=frXoVEyUBS-CbEGKNDib1iGH-3ez_kquIIg1QhsoGgw,49431
|
|
2
|
-
proteus/config.py,sha256=5ho8EOC8YA_cFneZ5wPo4p241fprYW3BfcmDG1wKFxg,13340
|
|
3
|
-
proteus/pyson.py,sha256=R4K1oyt2EpbxfsnXEM7EEU-nWclgbQnOPo9tJHoyWQM,22081
|
|
4
|
-
proteus/tests/__init__.py,sha256=ntQJf_2grlorGbYPXySORFaXIlMhvSGhJ9rB2rrhE7g,366
|
|
5
|
-
proteus/tests/common.py,sha256=rrNCNEyXHLP1Qevs7dkHRkro931hQkMFmk012K-jzIo,454
|
|
6
|
-
proteus/tests/test_config.py,sha256=0c97M4kSP6YEcDunFn-4BAqRTTk077-Ee0dHSbTY4Rg,1484
|
|
7
|
-
proteus/tests/test_context.py,sha256=cDN-v7PgkYegYFNEJ9XfIc4T0eVFjOX-rgDWNV1SAlI,564
|
|
8
|
-
proteus/tests/test_model.py,sha256=mz1DwvCGrdZS1TJg3vFSrLNF_b5e2XY96wzrUglzH_4,12536
|
|
9
|
-
proteus/tests/test_readme.py,sha256=5Qr58eFjuLYzj-U9FiNG8VXplKUP31DXkPf79vE2UOc,800
|
|
10
|
-
proteus/tests/test_report.py,sha256=OaDSNQIAyiDM_26glyZPSq2t7xzMDUto6h0EVXmAoZ0,793
|
|
11
|
-
proteus/tests/test_wizard.py,sha256=vxEhnE578KBxu5ls-rcMA_m8lRUZF8A-vItxWiGsa_I,2150
|
|
12
|
-
proteus-7.0.1.dist-info/LICENSE,sha256=LVyRoc66HRMBoJdRqIQRlJtpzzrgb4eBWrlJwhcC9fc,42788
|
|
13
|
-
proteus-7.0.1.dist-info/METADATA,sha256=XrvMBxByRb1pPmqf43okLzZs024BvUmeg0uH-rQLPxA,5783
|
|
14
|
-
proteus-7.0.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
15
|
-
proteus-7.0.1.dist-info/top_level.txt,sha256=7LjMNpvlVFgsEJnTt9d28ZE5oRrsViu9ZyORIWB9QeQ,8
|
|
16
|
-
proteus-7.0.1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
17
|
-
proteus-7.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|