tryton 6.0.51__py3-none-any.whl → 6.0.53__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 tryton might be problematic. Click here for more details.

Files changed (36) hide show
  1. tryton/__init__.py +1 -1
  2. tryton/common/domain_parser.py +8 -6
  3. tryton/data/locale/bg/LC_MESSAGES/tryton.mo +0 -0
  4. tryton/data/locale/ca/LC_MESSAGES/tryton.mo +0 -0
  5. tryton/data/locale/cs/LC_MESSAGES/tryton.mo +0 -0
  6. tryton/data/locale/de/LC_MESSAGES/tryton.mo +0 -0
  7. tryton/data/locale/es/LC_MESSAGES/tryton.mo +0 -0
  8. tryton/data/locale/es_419/LC_MESSAGES/tryton.mo +0 -0
  9. tryton/data/locale/et/LC_MESSAGES/tryton.mo +0 -0
  10. tryton/data/locale/fa/LC_MESSAGES/tryton.mo +0 -0
  11. tryton/data/locale/fi/LC_MESSAGES/tryton.mo +0 -0
  12. tryton/data/locale/fr/LC_MESSAGES/tryton.mo +0 -0
  13. tryton/data/locale/hu/LC_MESSAGES/tryton.mo +0 -0
  14. tryton/data/locale/id/LC_MESSAGES/tryton.mo +0 -0
  15. tryton/data/locale/it/LC_MESSAGES/tryton.mo +0 -0
  16. tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
  17. tryton/data/locale/lo/LC_MESSAGES/tryton.mo +0 -0
  18. tryton/data/locale/lt/LC_MESSAGES/tryton.mo +0 -0
  19. tryton/data/locale/nl/LC_MESSAGES/tryton.mo +0 -0
  20. tryton/data/locale/pl/LC_MESSAGES/tryton.mo +0 -0
  21. tryton/data/locale/pt/LC_MESSAGES/tryton.mo +0 -0
  22. tryton/data/locale/ro/LC_MESSAGES/tryton.mo +0 -0
  23. tryton/data/locale/ru/LC_MESSAGES/tryton.mo +0 -0
  24. tryton/data/locale/sl/LC_MESSAGES/tryton.mo +0 -0
  25. tryton/data/locale/tr/LC_MESSAGES/tryton.mo +0 -0
  26. tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo +0 -0
  27. tryton/gui/window/view_form/model/field.py +5 -1
  28. tryton/gui/window/view_form/screen/screen.py +1 -1
  29. tryton/gui/window/view_form/view/list.py +1 -1
  30. tryton/gui/window/view_form/view/list_gtk/generictreemodel.py +426 -0
  31. {tryton-6.0.51.dist-info → tryton-6.0.53.dist-info}/METADATA +4 -3
  32. {tryton-6.0.51.dist-info → tryton-6.0.53.dist-info}/RECORD +36 -35
  33. {tryton-6.0.51.dist-info → tryton-6.0.53.dist-info}/WHEEL +1 -1
  34. {tryton-6.0.51.data → tryton-6.0.53.data}/scripts/tryton +0 -0
  35. {tryton-6.0.51.dist-info → tryton-6.0.53.dist-info/licenses}/LICENSE +0 -0
  36. {tryton-6.0.51.dist-info → tryton-6.0.53.dist-info}/top_level.txt +0 -0
tryton/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # This file is part of Tryton. The COPYRIGHT file at the top level of
2
2
  # this repository contains the full copyright notices and license terms.
3
- __version__ = "6.0.51"
3
+ __version__ = "6.0.53"
4
4
  import gi
5
5
  import locale
6
6
 
@@ -1,5 +1,6 @@
1
1
  # This file is part of Tryton. The COPYRIGHT file at the top level of
2
2
  # this repository contains the full copyright notices and license terms.
3
+ import math
3
4
  from shlex import shlex
4
5
  from types import GeneratorType
5
6
  import gettext
@@ -334,17 +335,18 @@ def format_value(field, value, target=None, context=None, _quote_empty=False):
334
335
  or isinstance(value, bool))):
335
336
  return ''
336
337
  digit = 0
337
- if isinstance(value, Decimal):
338
- cast = Decimal
339
- else:
340
- cast = float
341
- factor = cast(field.get('factor', 1))
342
- string_ = str(value * factor)
338
+ string_ = str(value)
343
339
  if 'e' in string_:
344
340
  string_, exp = string_.split('e')
345
341
  digit -= int(exp)
346
342
  if '.' in string_:
347
343
  digit += len(string_.rstrip('0').split('.')[1])
344
+ if isinstance(value, Decimal):
345
+ cast = Decimal
346
+ else:
347
+ cast = float
348
+ factor = cast(field.get('factor', 1))
349
+ digit -= round(math.log10(factor))
348
350
  return locale.localize(
349
351
  '{0:.{1}f}'.format(value * factor or 0, digit), True)
350
352
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -798,6 +798,7 @@ class O2MField(Field):
798
798
  force_remove=False)
799
799
 
800
800
  if value and (value.get('add') or value.get('update', [])):
801
+ vals_to_set = {}
801
802
  # First set already added fields to prevent triggering a
802
803
  # second on_change call
803
804
  for vals in value.get('update', []):
@@ -825,7 +826,10 @@ class O2MField(Field):
825
826
  continue
826
827
  record2 = group.get(vals['id'])
827
828
  if record2 is not None:
828
- record2.set_on_change(vals)
829
+ to_set = {
830
+ k: v for k, v in vals.items
831
+ if k not in vals_to_set}
832
+ record2.set_on_change(to_set)
829
833
 
830
834
  def validation_domains(self, record, pre_validate=None):
831
835
  screen_domain, attr_domain = self.domains_get(record, pre_validate)
@@ -853,7 +853,7 @@ class Screen(SignalEvent):
853
853
  view.expand_nodes(expanded_nodes)
854
854
  view.select_nodes(selected_nodes)
855
855
  else:
856
- if selected_nodes:
856
+ if selected_nodes and not self.current_record:
857
857
  record = None
858
858
  for node in selected_nodes[0]:
859
859
  new_record = self.group.get(node)
@@ -7,7 +7,6 @@ import gettext
7
7
  from functools import wraps
8
8
 
9
9
  from gi.repository import Gdk, GLib, GObject, Gtk
10
- from pygtkcompat.generictreemodel import GenericTreeModel
11
10
 
12
11
  from tryton.config import CONFIG
13
12
  from tryton.common.cellrendererbutton import CellRendererButton
@@ -19,6 +18,7 @@ from tryton.pyson import PYSONDecoder
19
18
  import tryton.common as common
20
19
  from . import View, XMLViewParser
21
20
  from .list_gtk.editabletree import EditableTreeView, TreeView
21
+ from .list_gtk.generictreemodel import GenericTreeModel
22
22
  from .list_gtk.widget import (Affix, Char, Text, Int, Boolean, URL, Date,
23
23
  Time, Float, TimeDelta, Binary, M2O, O2O, O2M, M2M, Selection,
24
24
  MultiSelection, Reference, Dict, ProgressBar, Button, Image)
@@ -0,0 +1,426 @@
1
+ # -*- Mode: Python; py-indent-offset: 4 -*-
2
+ # generictreemodel - GenericTreeModel implementation for pygtk compatibility.
3
+ # Copyright (C) 2013 Simon Feltman
4
+ #
5
+ # generictreemodel.py: GenericTreeModel implementation for pygtk compatibility
6
+ #
7
+ # This library is free software; you can redistribute it and/or
8
+ # modify it under the terms of the GNU Lesser General Public
9
+ # License as published by the Free Software Foundation; either
10
+ # version 2.1 of the License, or (at your option) any later version.
11
+ #
12
+ # This library is distributed in the hope that it will be useful,
13
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
+ # Lesser General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU Lesser General Public
18
+ # License along with this library; if not, see <http://www.gnu.org/licenses/>.
19
+
20
+
21
+ # System
22
+ import sys
23
+ import random
24
+ import collections
25
+ import ctypes
26
+ import platform
27
+ import warnings
28
+
29
+ # GObject
30
+ import gi
31
+ from gi.repository import GObject
32
+ from gi.repository import Gtk
33
+
34
+
35
+ class _CTreeIter(ctypes.Structure):
36
+ _fields_ = [('stamp', ctypes.c_int),
37
+ ('user_data', ctypes.c_void_p),
38
+ ('user_data2', ctypes.c_void_p),
39
+ ('user_data3', ctypes.c_void_p)]
40
+
41
+ @classmethod
42
+ def from_iter(cls, iter):
43
+ offset = sys.getsizeof(object()) # size of PyObject_HEAD
44
+ return ctypes.POINTER(cls).from_address(id(iter) + offset)
45
+
46
+
47
+ if platform.python_implementation() == "PyPy":
48
+ def _get_user_data_as_pyobject(iter):
49
+ raise NotImplementedError("Not yet supported under PyPy")
50
+ else:
51
+ def _get_user_data_as_pyobject(iter):
52
+ citer = _CTreeIter.from_iter(iter)
53
+ return ctypes.cast(citer.contents.user_data, ctypes.py_object).value
54
+
55
+
56
+ def handle_exception(default_return):
57
+ """Returns a function which can act as a decorator for wrapping exceptions and
58
+ returning "default_return" upon an exception being thrown.
59
+
60
+ This is used to wrap Gtk.TreeModel "do_" method implementations so we can return
61
+ a proper value from the override upon an exception occurring with client code
62
+ implemented by the "on_" methods.
63
+ """
64
+ def decorator(func):
65
+ def wrapped_func(*args, **kargs):
66
+ try:
67
+ return func(*args, **kargs)
68
+ except:
69
+ # Use excepthook directly to avoid any printing to the screen
70
+ # if someone installed an except hook.
71
+ sys.excepthook(*sys.exc_info())
72
+ return default_return
73
+ return wrapped_func
74
+ return decorator
75
+
76
+
77
+ class GenericTreeModel(GObject.GObject, Gtk.TreeModel):
78
+ """A base implementation of a Gtk.TreeModel for python.
79
+
80
+ The GenericTreeModel eases implementing the Gtk.TreeModel interface in Python.
81
+ The class can be subclassed to provide a TreeModel implementation which works
82
+ directly with Python objects instead of iterators.
83
+
84
+ All of the on_* methods should be overridden by subclasses to provide the
85
+ underlying implementation a way to access custom model data. For the purposes of
86
+ this API, all custom model data supplied or handed back through the overridable
87
+ API will use the argument names: node, parent, and child in regards to user data
88
+ python objects.
89
+
90
+ The create_tree_iter, set_user_data, invalidate_iters, iter_is_valid methods are
91
+ available to help manage Gtk.TreeIter objects and their Python object references.
92
+
93
+ GenericTreeModel manages a pool of user data nodes that have been used with iters.
94
+ This pool stores a references to user data nodes as a dictionary value with the
95
+ key being the integer id of the data. This id is what the Gtk.TreeIter objects
96
+ use to reference data in the pool.
97
+ References will be removed from the pool when the model is deleted or explicitly
98
+ by using the optional "node" argument to the "row_deleted" method when notifying
99
+ the model of row deletion.
100
+ """
101
+
102
+ leak_references = GObject.Property(default=True, type=bool,
103
+ blurb="If True, strong references to user data attached to iters are "
104
+ "stored in a dictionary pool (default). Otherwise the user data is "
105
+ "stored as a raw pointer to a python object without a reference.")
106
+
107
+ #
108
+ # Methods
109
+ #
110
+ def __init__(self):
111
+ """Initialize. Make sure to call this from derived classes if overridden."""
112
+ warnings.warn("pygtkcompat is deprecated, see https://pygobject.gnome.org for migration instructions", gi.PyGIDeprecationWarning)
113
+ super(GenericTreeModel, self).__init__()
114
+ self.stamp = 0
115
+
116
+ #: Dictionary of (id(user_data): user_data), used when leak-references=False
117
+ self._held_refs = dict()
118
+
119
+ # Set initial stamp
120
+ self.invalidate_iters()
121
+
122
+ def iter_depth_first(self):
123
+ """Depth-first iteration of the entire TreeModel yielding the python nodes."""
124
+ stack = collections.deque([None])
125
+ while stack:
126
+ it = stack.popleft()
127
+ if it is not None:
128
+ yield self.get_user_data(it)
129
+ children = [self.iter_nth_child(it, i) for i in range(self.iter_n_children(it))]
130
+ stack.extendleft(reversed(children))
131
+
132
+ def invalidate_iter(self, iter):
133
+ """Clear user data and its reference from the iter and this model."""
134
+ iter.stamp = 0
135
+ if iter.user_data:
136
+ if iter.user_data in self._held_refs:
137
+ del self._held_refs[iter.user_data]
138
+ iter.user_data = None
139
+
140
+ def invalidate_iters(self):
141
+ """
142
+ This method invalidates all TreeIter objects associated with this custom tree model
143
+ and frees their locally pooled references.
144
+ """
145
+ self.stamp = random.randint(-2147483648, 2147483647)
146
+ self._held_refs.clear()
147
+
148
+ def iter_is_valid(self, iter):
149
+ """
150
+ :Returns:
151
+ True if the gtk.TreeIter specified by iter is valid for the custom tree model.
152
+ """
153
+ return iter.stamp == self.stamp
154
+
155
+ def get_user_data(self, iter):
156
+ """Get the user_data associated with the given TreeIter.
157
+
158
+ GenericTreeModel stores arbitrary Python objects mapped to instances of Gtk.TreeIter.
159
+ This method allows to retrieve the Python object held by the given iterator.
160
+ """
161
+ if self.leak_references:
162
+ return self._held_refs[iter.user_data]
163
+ else:
164
+ return _get_user_data_as_pyobject(iter)
165
+
166
+ def set_user_data(self, iter, user_data):
167
+ """Applies user_data and stamp to the given iter.
168
+
169
+ If the models "leak_references" property is set, a reference to the
170
+ user_data is stored with the model to ensure we don't run into bad
171
+ memory problems with the TreeIter.
172
+ """
173
+ iter.user_data = id(user_data)
174
+
175
+ if user_data is None:
176
+ self.invalidate_iter(iter)
177
+ else:
178
+ iter.stamp = self.stamp
179
+ if self.leak_references:
180
+ self._held_refs[iter.user_data] = user_data
181
+
182
+ def create_tree_iter(self, user_data):
183
+ """Create a Gtk.TreeIter instance with the given user_data specific for this model.
184
+
185
+ Use this method to create Gtk.TreeIter instance instead of directly calling
186
+ Gtk.Treeiter(), this will ensure proper reference managment of wrapped used_data.
187
+ """
188
+ iter = Gtk.TreeIter()
189
+ self.set_user_data(iter, user_data)
190
+ return iter
191
+
192
+ def _create_tree_iter(self, data):
193
+ """Internal creation of a (bool, TreeIter) pair for returning directly
194
+ back to the view interfacing with this model."""
195
+ if data is None:
196
+ return (False, None)
197
+ else:
198
+ it = self.create_tree_iter(data)
199
+ return (True, it)
200
+
201
+ def row_deleted(self, path, node=None):
202
+ """Notify the model a row has been deleted.
203
+
204
+ Use the node parameter to ensure the user_data reference associated
205
+ with the path is properly freed by this model.
206
+
207
+ :Parameters:
208
+ path : Gtk.TreePath
209
+ Path to the row that has been deleted.
210
+ node : object
211
+ Python object used as the node returned from "on_get_iter". This is
212
+ optional but ensures the model will not leak references to this object.
213
+ """
214
+ super(GenericTreeModel, self).row_deleted(path)
215
+ node_id = id(node)
216
+ if node_id in self._held_refs:
217
+ del self._held_refs[node_id]
218
+
219
+ #
220
+ # GtkTreeModel Interface Implementation
221
+ #
222
+ @handle_exception(0)
223
+ def do_get_flags(self):
224
+ """Internal method."""
225
+ return self.on_get_flags()
226
+
227
+ @handle_exception(0)
228
+ def do_get_n_columns(self):
229
+ """Internal method."""
230
+ return self.on_get_n_columns()
231
+
232
+ @handle_exception(GObject.TYPE_INVALID)
233
+ def do_get_column_type(self, index):
234
+ """Internal method."""
235
+ return self.on_get_column_type(index)
236
+
237
+ @handle_exception((False, None))
238
+ def do_get_iter(self, path):
239
+ """Internal method."""
240
+ return self._create_tree_iter(self.on_get_iter(path))
241
+
242
+ @handle_exception(False)
243
+ def do_iter_next(self, iter):
244
+ """Internal method."""
245
+ if iter is None:
246
+ next_data = self.on_iter_next(None)
247
+ else:
248
+ next_data = self.on_iter_next(self.get_user_data(iter))
249
+
250
+ self.set_user_data(iter, next_data)
251
+ return next_data is not None
252
+
253
+ @handle_exception(None)
254
+ def do_get_path(self, iter):
255
+ """Internal method."""
256
+ path = self.on_get_path(self.get_user_data(iter))
257
+ if path is None:
258
+ return None
259
+ else:
260
+ return Gtk.TreePath(path)
261
+
262
+ @handle_exception(None)
263
+ def do_get_value(self, iter, column):
264
+ """Internal method."""
265
+ return self.on_get_value(self.get_user_data(iter), column)
266
+
267
+ @handle_exception((False, None))
268
+ def do_iter_children(self, parent):
269
+ """Internal method."""
270
+ data = self.get_user_data(parent) if parent else None
271
+ return self._create_tree_iter(self.on_iter_children(data))
272
+
273
+ @handle_exception(False)
274
+ def do_iter_has_child(self, parent):
275
+ """Internal method."""
276
+ return self.on_iter_has_child(self.get_user_data(parent))
277
+
278
+ @handle_exception(0)
279
+ def do_iter_n_children(self, iter):
280
+ """Internal method."""
281
+ if iter is None:
282
+ return self.on_iter_n_children(None)
283
+ return self.on_iter_n_children(self.get_user_data(iter))
284
+
285
+ @handle_exception((False, None))
286
+ def do_iter_nth_child(self, parent, n):
287
+ """Internal method."""
288
+ if parent is None:
289
+ data = self.on_iter_nth_child(None, n)
290
+ else:
291
+ data = self.on_iter_nth_child(self.get_user_data(parent), n)
292
+ return self._create_tree_iter(data)
293
+
294
+ @handle_exception((False, None))
295
+ def do_iter_parent(self, child):
296
+ """Internal method."""
297
+ return self._create_tree_iter(self.on_iter_parent(self.get_user_data(child)))
298
+
299
+ @handle_exception(None)
300
+ def do_ref_node(self, iter):
301
+ self.on_ref_node(self.get_user_data(iter))
302
+
303
+ @handle_exception(None)
304
+ def do_unref_node(self, iter):
305
+ self.on_unref_node(self.get_user_data(iter))
306
+
307
+ #
308
+ # Python Subclass Overridables
309
+ #
310
+ def on_get_flags(self):
311
+ """Overridable.
312
+
313
+ :Returns Gtk.TreeModelFlags:
314
+ The flags for this model. See: Gtk.TreeModelFlags
315
+ """
316
+ raise NotImplementedError
317
+
318
+ def on_get_n_columns(self):
319
+ """Overridable.
320
+
321
+ :Returns:
322
+ The number of columns for this model.
323
+ """
324
+ raise NotImplementedError
325
+
326
+ def on_get_column_type(self, index):
327
+ """Overridable.
328
+
329
+ :Returns:
330
+ The column type for the given index.
331
+ """
332
+ raise NotImplementedError
333
+
334
+ def on_get_iter(self, path):
335
+ """Overridable.
336
+
337
+ :Returns:
338
+ A python object (node) for the given TreePath.
339
+ """
340
+ raise NotImplementedError
341
+
342
+ def on_iter_next(self, node):
343
+ """Overridable.
344
+
345
+ :Parameters:
346
+ node : object
347
+ Node at current level.
348
+
349
+ :Returns:
350
+ A python object (node) following the given node at the current level.
351
+ """
352
+ raise NotImplementedError
353
+
354
+ def on_get_path(self, node):
355
+ """Overridable.
356
+
357
+ :Returns:
358
+ A TreePath for the given node.
359
+ """
360
+ raise NotImplementedError
361
+
362
+ def on_get_value(self, node, column):
363
+ """Overridable.
364
+
365
+ :Parameters:
366
+ node : object
367
+ column : int
368
+ Column index to get the value from.
369
+
370
+ :Returns:
371
+ The value of the column for the given node."""
372
+ raise NotImplementedError
373
+
374
+ def on_iter_children(self, parent):
375
+ """Overridable.
376
+
377
+ :Returns:
378
+ The first child of parent or None if parent has no children.
379
+ If parent is None, return the first node of the model.
380
+ """
381
+ raise NotImplementedError
382
+
383
+ def on_iter_has_child(self, node):
384
+ """Overridable.
385
+
386
+ :Returns:
387
+ True if the given node has children.
388
+ """
389
+ raise NotImplementedError
390
+
391
+ def on_iter_n_children(self, node):
392
+ """Overridable.
393
+
394
+ :Returns:
395
+ The number of children for the given node. If node is None,
396
+ return the number of top level nodes.
397
+ """
398
+ raise NotImplementedError
399
+
400
+ def on_iter_nth_child(self, parent, n):
401
+ """Overridable.
402
+
403
+ :Parameters:
404
+ parent : object
405
+ n : int
406
+ Index of child within parent.
407
+
408
+ :Returns:
409
+ The child for the given parent index starting at 0. If parent None,
410
+ return the top level node corresponding to "n".
411
+ If "n" is larger then available nodes, return None.
412
+ """
413
+ raise NotImplementedError
414
+
415
+ def on_iter_parent(self, child):
416
+ """Overridable.
417
+
418
+ :Returns:
419
+ The parent node of child or None if child is a top level node."""
420
+ raise NotImplementedError
421
+
422
+ def on_ref_node(self, node):
423
+ pass
424
+
425
+ def on_unref_node(self, node):
426
+ pass
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: tryton
3
- Version: 6.0.51
3
+ Version: 6.0.53
4
4
  Summary: Tryton desktop client
5
5
  Home-page: http://www.tryton.org/
6
6
  Download-URL: http://downloads.tryton.org/6.0/
@@ -50,7 +50,7 @@ Requires-Python: >=3.6
50
50
  License-File: LICENSE
51
51
  Requires-Dist: pycairo
52
52
  Requires-Dist: python-dateutil
53
- Requires-Dist: PyGObject<3.51,>=3.19
53
+ Requires-Dist: PyGObject>=3.19
54
54
  Provides-Extra: calendar
55
55
  Requires-Dist: GooCalendar>=0.7; extra == "calendar"
56
56
  Dynamic: author
@@ -61,6 +61,7 @@ Dynamic: download-url
61
61
  Dynamic: home-page
62
62
  Dynamic: keywords
63
63
  Dynamic: license
64
+ Dynamic: license-file
64
65
  Dynamic: platform
65
66
  Dynamic: project-url
66
67
  Dynamic: provides-extra
@@ -1,4 +1,4 @@
1
- tryton/__init__.py,sha256=QQD_rE5tYM5uVxFhms5wHOzhRrB1Uf7hNRCYfuQczKE,1467
1
+ tryton/__init__.py,sha256=Yc10MTMaMGqgmkw3loLt1IR-351pd5OiEl6Rs0ivh0s,1467
2
2
  tryton/bus.py,sha256=eoR1nqzmeYL62DXouxpc_X8rHkyt-2ic6c7itwGIC5Y,2829
3
3
  tryton/client.py,sha256=8TWN1MHmIjpYTMtMoMrtcqAVSmmOmFjAR5OnyhnBopQ,2969
4
4
  tryton/config.py,sha256=23zHApZr8tMfgwwv486KOwP4Rs92tltr0YXLQo4Jw6M,6285
@@ -26,7 +26,7 @@ tryton/common/common.py,sha256=hPMqvzbssG3w34-TEVnTjnCzFBLK_P9hi-MWVlG3bxQ,42819
26
26
  tryton/common/completion.py,sha256=KGlLm271YnbBB0_l3z9YvNeDHvzkpAQ-DlCDnRlMnzg,2747
27
27
  tryton/common/datetime_.py,sha256=TIV1PhcdHigBculOPKQttmQxTHko-CwNAQX6B5RemYI,19881
28
28
  tryton/common/domain_inversion.py,sha256=E9oFQlVWb1rDqwS6G59O_YBGmKHWsk60wb_M7ov7kkI,15630
29
- tryton/common/domain_parser.py,sha256=NsSCcHBI2hJuL7bHyaQ0Pn9DYZxcinthGrtKSZ7ucdg,29548
29
+ tryton/common/domain_parser.py,sha256=wlLdsu53QaPGt1yeVU_4PEiQhn-lNGU4NzaEhJQWX8A,29594
30
30
  tryton/common/entry_position.py,sha256=lKX3T8day_BQmpKRx7isuj-yieBKUqVmthZsfrtsu4M,281
31
31
  tryton/common/environment.py,sha256=ocAWoBXvnsWODut5-kJr6zhM1fhAFcYLLN7qUK_c8Eg,1848
32
32
  tryton/common/focus.py,sha256=8lR6Ej4KXdH9iOPS7sqSpIFa1YOR2OINRbe96jPz-eA,2471
@@ -39,53 +39,53 @@ tryton/common/timedelta.py,sha256=z3EXjKUzssaYHNFhngUIcc2sVaeNUVp4urQjm3JFJUw,31
39
39
  tryton/common/treeviewcontrol.py,sha256=SBKf-q5emDFI4oaSndtKODPpJO5ciF1BP6RPT3fG4KI,1007
40
40
  tryton/common/underline.py,sha256=cEGiOH27VN0IFIBcV1xFYC1QESHVybd3SzDI5R79-8s,260
41
41
  tryton/common/widget_style.py,sha256=YiS-FnCZm0Kesdw-vx9gWD7QKXMpasoUzHe-UPX2_e0,335
42
- tryton/data/locale/bg/LC_MESSAGES/tryton.mo,sha256=X6932VvDLN-lJkNgDuNG2pyBeFBtrFamVPYvOocotOs,8911
42
+ tryton/data/locale/bg/LC_MESSAGES/tryton.mo,sha256=67zt9-pXeN0UXdhrJ1coTk7moTaeVgatMvbd6oE-u8I,8911
43
43
  tryton/data/locale/bg/LC_MESSAGES/tryton.po,sha256=MfnH-XlvLZmCOd9ohmkF_ZiAeHURmZhF8WiwgZCe3Ow,21477
44
- tryton/data/locale/ca/LC_MESSAGES/tryton.mo,sha256=gD1Z8qIJyhY0sUDQ7moCBBPSxhom0d9HlT6W-XpY0tQ,18889
44
+ tryton/data/locale/ca/LC_MESSAGES/tryton.mo,sha256=25C3b4WwOOfKZmt9j2-xvs6b2oGHiEDsBhxv9POZ324,18889
45
45
  tryton/data/locale/ca/LC_MESSAGES/tryton.po,sha256=MDE_e8vYM3s_KY43t3UTnu0-ANZfWDGF5NGPu5d-M3I,20095
46
- tryton/data/locale/cs/LC_MESSAGES/tryton.mo,sha256=NsuxD4vzLH4WJmMXPZhA3J9CEvfMlH0zh0RIQgmvBLY,4684
46
+ tryton/data/locale/cs/LC_MESSAGES/tryton.mo,sha256=mMM0ViE3VAnF3rr_l24H07H0d8EYxvz0Yx_1fxbWos8,4684
47
47
  tryton/data/locale/cs/LC_MESSAGES/tryton.po,sha256=dcaO2QMGXGj3ZwajN9XhFeXETWXVUe7fj6_6uCUAIHY,17742
48
- tryton/data/locale/de/LC_MESSAGES/tryton.mo,sha256=nmS5OFYvXMeUadYzg7dTZK4ranlQxWnOG-qkNPg6gNo,19508
48
+ tryton/data/locale/de/LC_MESSAGES/tryton.mo,sha256=VHjlEq9hbKr0xYwehFrzLsTHLxhuu1lOxtp7yPuiSAg,19508
49
49
  tryton/data/locale/de/LC_MESSAGES/tryton.po,sha256=a1qx9wj1bR50TY9o9WdrosyMXjqfWwOjzKrSOg_yRQU,20731
50
- tryton/data/locale/es/LC_MESSAGES/tryton.mo,sha256=rqJD29yx8BxgoIT-W58HBcqx7tu2BzpzHimzEpMOTCU,19180
50
+ tryton/data/locale/es/LC_MESSAGES/tryton.mo,sha256=Qum0tI5fHrpztitaYLuiOuJSMd4JxDHPhbtlV36bga8,19180
51
51
  tryton/data/locale/es/LC_MESSAGES/tryton.po,sha256=D96SowoRpQrFNrSK4B6KgaTHA_3qqpau7B8WKIhgWsM,20595
52
- tryton/data/locale/es_419/LC_MESSAGES/tryton.mo,sha256=hB9OSYwyo5HNhwxBcUolCsjy-Cz9bKvh9iprdlSkwDU,605
52
+ tryton/data/locale/es_419/LC_MESSAGES/tryton.mo,sha256=G76xUVHku7uUJlCOE5G93nbTw9_bmbTzPXxbnY_H8t8,605
53
53
  tryton/data/locale/es_419/LC_MESSAGES/tryton.po,sha256=al4dG3YSGdVYAg3LNIrvdda2riKCzFzxWkToVksEbvE,13627
54
- tryton/data/locale/et/LC_MESSAGES/tryton.mo,sha256=npE88xDc94CB2Omb987JaYOxl0qyyl2hml7vtX062CM,14026
54
+ tryton/data/locale/et/LC_MESSAGES/tryton.mo,sha256=_nE8zz61FxNUmG7drUhpGaEHPUSmxyqc0K4TbsQMYj4,14026
55
55
  tryton/data/locale/et/LC_MESSAGES/tryton.po,sha256=BFHkmQ8GNBzgnXiHgZ45uyNP6sEXg8JMnTuafthgGG4,18306
56
- tryton/data/locale/fa/LC_MESSAGES/tryton.mo,sha256=G3rLoDIvCNcix8M1zn5o7tM6PUw-W6Hy2IbQuCJlHro,17468
56
+ tryton/data/locale/fa/LC_MESSAGES/tryton.mo,sha256=79p04GaN8w08NewbzY9g-ihzD4mkabmFXDTQWcX6S0Y,17468
57
57
  tryton/data/locale/fa/LC_MESSAGES/tryton.po,sha256=zOu2gUvrANp5emOc3-XzpFXS_9eYD924-7U7eJnXnSk,22303
58
- tryton/data/locale/fi/LC_MESSAGES/tryton.mo,sha256=ED4Ja8fi45zR44nG8bnh7Kk7bTJc8d99o1T0sEwm64I,445
58
+ tryton/data/locale/fi/LC_MESSAGES/tryton.mo,sha256=YhU72_1IyY4nUxvxq9GnpRZ9uNew9CESfmtcN9yToWw,445
59
59
  tryton/data/locale/fi/LC_MESSAGES/tryton.po,sha256=Ks_VXKmggigwXgRum0gisP_u62bIuXq079YJm3tYxLk,13486
60
- tryton/data/locale/fr/LC_MESSAGES/tryton.mo,sha256=92n9iHfM-_wPGXPZMzAGYzsJKG40168IvB-U_qKtlNs,19557
60
+ tryton/data/locale/fr/LC_MESSAGES/tryton.mo,sha256=f3rFAklu8c0zEOJR55bCi3LjuqxPapQFBdgyegpYDpo,19557
61
61
  tryton/data/locale/fr/LC_MESSAGES/tryton.po,sha256=Twt-D_hIlDC6sqFVuTFPFj-LBCxcT5J_xwznisNZlNs,20718
62
- tryton/data/locale/hu/LC_MESSAGES/tryton.mo,sha256=OpYyne04aicOwzRTYzrS8kJzz9KauPUeodO1HrFL14A,17539
62
+ tryton/data/locale/hu/LC_MESSAGES/tryton.mo,sha256=-U-pFy-ioPBbQyDu5Qmt_AskBDXJprXtistm5KzcF70,17539
63
63
  tryton/data/locale/hu/LC_MESSAGES/tryton.po,sha256=eOzM0iHImrLnuSJRZehkzgzNtSOcwTb963YrOtgaaxY,20338
64
- tryton/data/locale/id/LC_MESSAGES/tryton.mo,sha256=3rVMNO1rOixHtpnPsAVAId1pSezwZLIrEDom1OVoG9U,5754
64
+ tryton/data/locale/id/LC_MESSAGES/tryton.mo,sha256=VIx-Pq8VDde3k9AKNF0gXf9OhLqtcTMC79l7Etz6OA4,5754
65
65
  tryton/data/locale/id/LC_MESSAGES/tryton.po,sha256=qSeWIfnL_ymkMYP0VPQsGAet-fcO-NMGW95cgxYaGU8,14976
66
- tryton/data/locale/it/LC_MESSAGES/tryton.mo,sha256=t8RiDuM7QI1zxeuAGeph3LmSRETWnfy39OkVH3LugLA,15093
66
+ tryton/data/locale/it/LC_MESSAGES/tryton.mo,sha256=p0qseu1UAIUM7hn32FKwt0lwwwbU1qFNWbMOW3QyC2g,15093
67
67
  tryton/data/locale/it/LC_MESSAGES/tryton.po,sha256=oIPiBKifgoX2yUKM5490QghDfbVr4gsQRtxGbnAImUA,19260
68
- tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo,sha256=DsGLiqTNWpLdBBO9U1yvyWdpoPSRtLlcs3rR6drg2Es,7061
68
+ tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo,sha256=bGBsM_z0WIVLTArEbRpyR7jzqGi5GyVLtLQ8fMkzGUs,7061
69
69
  tryton/data/locale/ja_JP/LC_MESSAGES/tryton.po,sha256=Ku2Rg_pOo3lzBZMzzSB-fsMMI6PGP-Gk6dF9zd8ktqQ,36736
70
- tryton/data/locale/lo/LC_MESSAGES/tryton.mo,sha256=S3x-HZuqR7XpO2tYomlJQFgiUmtRBs094KTdB3lSZYI,19020
70
+ tryton/data/locale/lo/LC_MESSAGES/tryton.mo,sha256=MJUWsbw6NZoLEz1ZOnFWUlYSQ7AqhLxpqWsVuSq6ZHQ,19020
71
71
  tryton/data/locale/lo/LC_MESSAGES/tryton.po,sha256=P6SJ9z5WLjjP4-i1cO2Lejr6v-uupyjwNMp_v2-SmJg,26821
72
- tryton/data/locale/lt/LC_MESSAGES/tryton.mo,sha256=mdvBr_5lNCQ-yXn2BfT1lBP8bwYlM8UG0T_-XlemZbo,17120
72
+ tryton/data/locale/lt/LC_MESSAGES/tryton.mo,sha256=p3-2p2RSV9RuDUud6xJ8AdpzZZNzwmWm2wp8usR2Cew,17120
73
73
  tryton/data/locale/lt/LC_MESSAGES/tryton.po,sha256=LqjP5OElVzY6El32VwIgBrT42WJZWqAyJJCcpEfBRwk,20340
74
- tryton/data/locale/nl/LC_MESSAGES/tryton.mo,sha256=6eTF1cCiXF4-xzwYx6LTGXyGXjV5oPvwCiFg_kq-lDA,18525
74
+ tryton/data/locale/nl/LC_MESSAGES/tryton.mo,sha256=4LkE8UXEI2JH8nPh-_QUhIl-LwtgtbcoBBAVlgnyTzU,18525
75
75
  tryton/data/locale/nl/LC_MESSAGES/tryton.po,sha256=-quSH9RVQuO6_OKQbCUdyPdIcDJxq465F0IyOlLZUyE,19824
76
- tryton/data/locale/pl/LC_MESSAGES/tryton.mo,sha256=LGNE6YRYAatbXhc7sbIQbXQ8183z_wK9rnSmZq05IcE,18464
76
+ tryton/data/locale/pl/LC_MESSAGES/tryton.mo,sha256=WSC4ThwMO_3gQkQALfxSigue0IbVjugaKZgV-8J2VSg,18464
77
77
  tryton/data/locale/pl/LC_MESSAGES/tryton.po,sha256=sdYkJiw6uaJOziGY_ViuiZbSLFLh5QTbnulTGVFQ4sI,19704
78
- tryton/data/locale/pt/LC_MESSAGES/tryton.mo,sha256=QqVThd23JCKq6-uMd2lmXUVRoBfY2U6ldz2hYDq9ge0,15876
78
+ tryton/data/locale/pt/LC_MESSAGES/tryton.mo,sha256=WERzm34YHipWU30qZoY0y35wL0GsUIHW7i7oQwAbVuY,15876
79
79
  tryton/data/locale/pt/LC_MESSAGES/tryton.po,sha256=wyAyocsU1tOxtWxZNEwOJnqN5BXHpw2no0etQi5GhNA,19862
80
- tryton/data/locale/ro/LC_MESSAGES/tryton.mo,sha256=dz5jtBFp2K6JFtNU2GefaTyvhMJnvfp_0gXMrAgFUEE,19157
80
+ tryton/data/locale/ro/LC_MESSAGES/tryton.mo,sha256=Z8i3m-tsslSCmeBn2tmDVS0jNZACc-JJUBpar9kDfiY,19157
81
81
  tryton/data/locale/ro/LC_MESSAGES/tryton.po,sha256=3wwfLY152NBO9BDUIO2N-NMl6e0R67NzV8SIcwj8WdI,20065
82
- tryton/data/locale/ru/LC_MESSAGES/tryton.mo,sha256=KSyHkn0wNNTE2ub_Mda8LVg9wioRpZFthAEB-mJtJ6Q,10130
82
+ tryton/data/locale/ru/LC_MESSAGES/tryton.mo,sha256=yPiLUR7UdovAMgOKAEQLlgUdsAGwiT5s2JQqFORH66g,10130
83
83
  tryton/data/locale/ru/LC_MESSAGES/tryton.po,sha256=BUz7OIIc9JFKxv-N3E5bVfiumSxsETopcFmEpZ_fyHI,21808
84
- tryton/data/locale/sl/LC_MESSAGES/tryton.mo,sha256=PquddEhhKEkvWUVZxGdloxEKIRIKOr6_3OaZH3oiKJ4,12605
84
+ tryton/data/locale/sl/LC_MESSAGES/tryton.mo,sha256=T-9bj4b5-wwdNixseed_twuqzydPT9alANAYagK4Grk,12605
85
85
  tryton/data/locale/sl/LC_MESSAGES/tryton.po,sha256=sehhqql-gJ6Q47N8jwRh7l3diie9QVff3Ncg2LrboOY,18707
86
- tryton/data/locale/tr/LC_MESSAGES/tryton.mo,sha256=DYQo85K4IiBjwNHHGo7GXvQgHOFMsv_VZy1SAA6-ErU,1735
86
+ tryton/data/locale/tr/LC_MESSAGES/tryton.mo,sha256=-Z6teLq3ljY_fUGFhd9w1YoOR3_mILJl3Bjk31C32oA,1735
87
87
  tryton/data/locale/tr/LC_MESSAGES/tryton.po,sha256=HlkdjSItw4WsYqstTEBvnSYsLUVQcq1Oq7gFEw5gdcc,14040
88
- tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo,sha256=a4MCa5iy0KizUwSiuISIgOmfNdc6JyjtpKH57OhoSs8,17413
88
+ tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo,sha256=jYcnNbH6Hg6pK6zZbeFbZPI-ii-W-ViHAM0mxYXxrPs,17413
89
89
  tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po,sha256=HMQLeaVuJSvsRoQLs0yV0dtfMuEFn3ipYX40UEbWttE,18702
90
90
  tryton/data/pixmaps/tryton/tryton-add.svg,sha256=qIk1ewmNjSHqD8vRqCv0kT7v6hbHnY0KNU-M1jrxb4s,185
91
91
  tryton/data/pixmaps/tryton/tryton-archive.svg,sha256=9MO4wyp1SyYh3-FuoIrHhKb-9ywyql2bExsnz0XX9x0,382
@@ -175,16 +175,16 @@ tryton/gui/window/view_board/action.py,sha256=7g7g9IXhnzwfjnFJ83tdrV39B827YfmOI9
175
175
  tryton/gui/window/view_board/view_board.py,sha256=3zEw1kfevVoL8LwRZH166RiDZwNxzHV76MmzdId5sjQ,1925
176
176
  tryton/gui/window/view_form/__init__.py,sha256=KpO5XlSYKEB3rxVNiloUx1I9xYQr_VEGw-D915kX_Ho,185
177
177
  tryton/gui/window/view_form/model/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
178
- tryton/gui/window/view_form/model/field.py,sha256=cM7IWiK0lq5lK-nSOiRiNzbBO3lr4KDFtN7RqWVZ8gE,43065
178
+ tryton/gui/window/view_form/model/field.py,sha256=_TEs1r169myz2tBVhza8LWMbcy2zy7eg9p2zns4nlJU,43228
179
179
  tryton/gui/window/view_form/model/group.py,sha256=LBHQB5O-nNIPqW6JXjIErjGryyf3cZWqeEqtpQ_JzK8,19033
180
180
  tryton/gui/window/view_form/model/record.py,sha256=rnx-dH9LWsltEIiid72lZSyi5kjnQwmw3MPsrCPZZos,24385
181
181
  tryton/gui/window/view_form/screen/__init__.py,sha256=ws2wA8SsyQoZDbIjDpQF9-zP-BiLgVQyUSDVq8pvovo,191
182
- tryton/gui/window/view_form/screen/screen.py,sha256=fScjQFn0hkifbbSCj_msPJ8UrAFkEbHZoy1nFyplzjc,53452
182
+ tryton/gui/window/view_form/screen/screen.py,sha256=VrhcJg4Iu5DL49hCOBfZZfJrNqLPPu1kMZutVm--bNc,53480
183
183
  tryton/gui/window/view_form/view/__init__.py,sha256=au9iaJC_1fa1iJhlj29cm5D_TI7KEiWDPhmuLIsDDjA,4343
184
184
  tryton/gui/window/view_form/view/calendar_.py,sha256=itsRvjh51ZLBW_ZCOcTBNm9sULIwlZjtQQkW1l4uzGs,5558
185
185
  tryton/gui/window/view_form/view/form.py,sha256=AoeeXVVL46l9xqMA8CZBzbjUabvWEpG-6cTRgBypMsY,21385
186
186
  tryton/gui/window/view_form/view/graph.py,sha256=eeQ7qyEDM_J-7deOgrgLBXi1COYO2AVC_NPeNO9C4mo,6542
187
- tryton/gui/window/view_form/view/list.py,sha256=W1VP_L1pIk8WFbh1w-3ePBRz4KLaHO9ZmI_BCiQm4kE,48826
187
+ tryton/gui/window/view_form/view/list.py,sha256=Enh2mKrPLmMc5GnqDSHX7Te7saNBh1M2GTe1KmM2NM0,48824
188
188
  tryton/gui/window/view_form/view/list_form.py,sha256=Pl70c2WDI-lhh3VR8EQfo2lmmqzJITw3zl94K7MnnMs,4915
189
189
  tryton/gui/window/view_form/view/screen_container.py,sha256=-NcDeS62rUaCUleS2j5QOJQ20sG0LZa8D6FoSA9HLf8,25784
190
190
  tryton/gui/window/view_form/view/calendar_gtk/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
@@ -223,6 +223,7 @@ tryton/gui/window/view_form/view/graph_gtk/line.py,sha256=RrpMhcvwWPjJO12BobK1oq
223
223
  tryton/gui/window/view_form/view/graph_gtk/pie.py,sha256=xPm5rA7rB9EsukS2AbwLXlUl433TfT_OL6_xxP5HtH8,7240
224
224
  tryton/gui/window/view_form/view/list_gtk/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
225
225
  tryton/gui/window/view_form/view/list_gtk/editabletree.py,sha256=ZXDUcXLhc3Ggj6zfo_vWzv3eVIOAxLfPDWiTiXAUgQA,13370
226
+ tryton/gui/window/view_form/view/list_gtk/generictreemodel.py,sha256=Quy6RNbSLkYwOYvB7SL2gCu5fwE3vIcv0CdU6bTw7EY,14365
226
227
  tryton/gui/window/view_form/view/list_gtk/widget.py,sha256=HN3DY3AYTUqWdMiePix6elt5wGAaB3RcrCt0IisaKz0,48046
227
228
  tryton/plugins/__init__.py,sha256=LZAzEyRzXXJr1vTKMGh_1Qb922PR1SF4CqSZpXFJESo,1449
228
229
  tryton/plugins/translation/__init__.py,sha256=hyGVzFjh9t3UIU9LrdXVBNJ1UueqPv4QeWK1jmgjbEM,697
@@ -230,9 +231,9 @@ tryton/tests/__init__.py,sha256=EzbzLAe2ypdgf1obs2Njs6VK_fFkd16EkfFyZDAFFbg,892
230
231
  tryton/tests/test_common_domain_parser.py,sha256=fhnS9ogapvlPF0R7nTCu9DCe5rfAe-2ClPL2RApqsSk,43632
231
232
  tryton/tests/test_common_selection.py,sha256=1vvP7qfgCaqBhgADqbcCOI5ChXZghKSr7kzP99CGqtA,649
232
233
  tryton/tests/test_common_timedelta.py,sha256=RsofEhRRKI_EZFzR3lb4LNJ8NxcI9IufpcijPhU-XnU,3538
233
- tryton-6.0.51.data/scripts/tryton,sha256=fQmQ1-ILiMOBXwmx8VQ60WmjzQk-eJd5KL1V9fPoIJo,2055
234
- tryton-6.0.51.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
235
- tryton-6.0.51.dist-info/METADATA,sha256=eB5v40O5x-QZz46RUyFl9OKF05AKFPPJStULXjuR748,2667
236
- tryton-6.0.51.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
237
- tryton-6.0.51.dist-info/top_level.txt,sha256=7l30wN15bNakY7BPm2TEO79_XxvmYpkJONTGR_dTTOU,7
238
- tryton-6.0.51.dist-info/RECORD,,
234
+ tryton-6.0.53.data/scripts/tryton,sha256=fQmQ1-ILiMOBXwmx8VQ60WmjzQk-eJd5KL1V9fPoIJo,2055
235
+ tryton-6.0.53.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
236
+ tryton-6.0.53.dist-info/METADATA,sha256=2To5eYEQqYS8oPM-EfszDREuKOr3mWpXtZxNNu27oKs,2683
237
+ tryton-6.0.53.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
238
+ tryton-6.0.53.dist-info/top_level.txt,sha256=7l30wN15bNakY7BPm2TEO79_XxvmYpkJONTGR_dTTOU,7
239
+ tryton-6.0.53.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.2)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5