tryton 7.4.8__py3-none-any.whl → 7.4.10__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.
- tryton/__init__.py +1 -1
- tryton/common/domain_parser.py +8 -6
- tryton/data/locale/bg/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/ca/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/cs/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/de/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/es/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/es_419/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/et/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/fa/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/fi/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/fr/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/hu/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/id/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/it/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/lo/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/lt/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/nl/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/pl/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/pt/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/ro/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/ru/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/sl/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/tr/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/uk/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo +0 -0
- tryton/gui/window/form.py +8 -5
- tryton/gui/window/view_form/model/field.py +5 -1
- tryton/gui/window/view_form/screen/screen.py +0 -2
- tryton/gui/window/view_form/view/list.py +4 -1
- tryton/gui/window/view_form/view/list_gtk/generictreemodel.py +426 -0
- {tryton-7.4.8.dist-info → tryton-7.4.10.dist-info}/METADATA +2 -2
- {tryton-7.4.8.dist-info → tryton-7.4.10.dist-info}/RECORD +38 -37
- {tryton-7.4.8.data → tryton-7.4.10.data}/scripts/tryton +0 -0
- {tryton-7.4.8.dist-info → tryton-7.4.10.dist-info}/WHEEL +0 -0
- {tryton-7.4.8.dist-info → tryton-7.4.10.dist-info}/licenses/LICENSE +0 -0
- {tryton-7.4.8.dist-info → tryton-7.4.10.dist-info}/top_level.txt +0 -0
tryton/__init__.py
CHANGED
tryton/common/domain_parser.py
CHANGED
|
@@ -5,6 +5,7 @@ import decimal
|
|
|
5
5
|
import gettext
|
|
6
6
|
import io
|
|
7
7
|
import locale
|
|
8
|
+
import math
|
|
8
9
|
from collections import OrderedDict
|
|
9
10
|
from decimal import Decimal
|
|
10
11
|
from shlex import shlex
|
|
@@ -336,17 +337,18 @@ def format_value(field, value, target=None, context=None, _quote_empty=False):
|
|
|
336
337
|
or isinstance(value, bool))):
|
|
337
338
|
return ''
|
|
338
339
|
digit = 0
|
|
339
|
-
|
|
340
|
-
cast = Decimal
|
|
341
|
-
else:
|
|
342
|
-
cast = float
|
|
343
|
-
factor = cast(field.get('factor', 1))
|
|
344
|
-
string_ = str(value * factor)
|
|
340
|
+
string_ = str(value)
|
|
345
341
|
if 'e' in string_:
|
|
346
342
|
string_, exp = string_.split('e')
|
|
347
343
|
digit -= int(exp)
|
|
348
344
|
if '.' in string_:
|
|
349
345
|
digit += len(string_.rstrip('0').split('.')[1])
|
|
346
|
+
if isinstance(value, Decimal):
|
|
347
|
+
cast = Decimal
|
|
348
|
+
else:
|
|
349
|
+
cast = float
|
|
350
|
+
factor = cast(field.get('factor', 1))
|
|
351
|
+
digit -= round(math.log10(factor))
|
|
350
352
|
return locale.localize(
|
|
351
353
|
'{0:.{1}f}'.format(value * factor or 0, digit), True)
|
|
352
354
|
|
|
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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
tryton/gui/window/form.py
CHANGED
|
@@ -637,12 +637,15 @@ class Form(TabContent):
|
|
|
637
637
|
if value == 'ok':
|
|
638
638
|
return self.sig_save(None)
|
|
639
639
|
if value == 'ko':
|
|
640
|
-
record_id =
|
|
640
|
+
record_id = None
|
|
641
|
+
if self.screen.current_record:
|
|
642
|
+
record_id = self.screen.current_record.id
|
|
641
643
|
if self.sig_reload(test_modified=False):
|
|
642
|
-
if record_id
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
644
|
+
if record_id is not None:
|
|
645
|
+
if record_id < 0:
|
|
646
|
+
return None
|
|
647
|
+
elif self.screen.current_record:
|
|
648
|
+
return record_id == self.screen.current_record.id
|
|
646
649
|
return False
|
|
647
650
|
return True
|
|
648
651
|
|
|
@@ -855,6 +855,7 @@ class O2MField(Field):
|
|
|
855
855
|
force_remove=False)
|
|
856
856
|
|
|
857
857
|
if value and (value.get('add') or value.get('update', [])):
|
|
858
|
+
vals_to_set = {}
|
|
858
859
|
# First set already added fields to prevent triggering a
|
|
859
860
|
# second on_change call
|
|
860
861
|
for vals in value.get('update', []):
|
|
@@ -882,7 +883,10 @@ class O2MField(Field):
|
|
|
882
883
|
continue
|
|
883
884
|
record2 = group.get(vals['id'])
|
|
884
885
|
if record2 is not None:
|
|
885
|
-
|
|
886
|
+
to_set = {
|
|
887
|
+
k: v for k, v in vals.items
|
|
888
|
+
if k not in vals_to_set}
|
|
889
|
+
record2.set_on_change(to_set)
|
|
886
890
|
|
|
887
891
|
def validation_domains(self, record, pre_validate=None):
|
|
888
892
|
screen_domain, attr_domain = self.domains_get(record, pre_validate)
|
|
@@ -10,7 +10,6 @@ from functools import wraps
|
|
|
10
10
|
from io import StringIO
|
|
11
11
|
|
|
12
12
|
from gi.repository import Gdk, GLib, GObject, Gtk
|
|
13
|
-
from pygtkcompat.generictreemodel import GenericTreeModel
|
|
14
13
|
|
|
15
14
|
import tryton.common as common
|
|
16
15
|
from tryton.common import (
|
|
@@ -24,6 +23,7 @@ from tryton.pyson import PYSONDecoder
|
|
|
24
23
|
|
|
25
24
|
from . import View, XMLViewParser
|
|
26
25
|
from .list_gtk.editabletree import EditableTreeView, TreeView
|
|
26
|
+
from .list_gtk.generictreemodel import GenericTreeModel
|
|
27
27
|
from .list_gtk.widget import (
|
|
28
28
|
M2M, M2O, O2M, O2O, URL, Affix, Binary, Boolean, Button, Char, Date, Dict,
|
|
29
29
|
Float, Image, Int, MultiSelection, ProgressBar, Reference, Selection, Text,
|
|
@@ -1100,6 +1100,9 @@ class ViewTree(View):
|
|
|
1100
1100
|
records.append(model.get_value(iter_, 0))
|
|
1101
1101
|
if self.record not in records:
|
|
1102
1102
|
self.record = records[0]
|
|
1103
|
+
else:
|
|
1104
|
+
# Force record_message
|
|
1105
|
+
self.record = self.record
|
|
1103
1106
|
else:
|
|
1104
1107
|
self.record = None
|
|
1105
1108
|
|
|
@@ -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
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tryton
|
|
3
|
-
Version: 7.4.
|
|
3
|
+
Version: 7.4.10
|
|
4
4
|
Summary: Tryton desktop client
|
|
5
5
|
Home-page: http://www.tryton.org/
|
|
6
6
|
Download-URL: http://downloads.tryton.org/7.4/
|
|
@@ -52,7 +52,7 @@ Requires-Python: >=3.8
|
|
|
52
52
|
License-File: LICENSE
|
|
53
53
|
Requires-Dist: pycairo
|
|
54
54
|
Requires-Dist: python-dateutil
|
|
55
|
-
Requires-Dist: PyGObject
|
|
55
|
+
Requires-Dist: PyGObject>=3.19
|
|
56
56
|
Provides-Extra: calendar
|
|
57
57
|
Requires-Dist: GooCalendar>=0.7; extra == "calendar"
|
|
58
58
|
Provides-Extra: sound
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tryton/__init__.py,sha256=
|
|
1
|
+
tryton/__init__.py,sha256=WSboKNA2D4igrJFpEnSqgtS37vVsv0EV4YpA9_hMav4,1927
|
|
2
2
|
tryton/bus.py,sha256=GM9nRfPH1vP8X7KnHkLy2eT-KY-Lw37hdHgh-v_wl10,2874
|
|
3
3
|
tryton/cache.py,sha256=-xIh4ZQgAy_9nVEJ22yXsPwM4oFGI6j-EIlcqRAs6Go,990
|
|
4
4
|
tryton/client.py,sha256=mSfOU4sj_XJbWpP92sjXhOXh2_SEZFzlEKEQhZxsGcA,3323
|
|
@@ -26,7 +26,7 @@ tryton/common/common.py,sha256=Wa8H-RFJAwIWxb6Y7V0zcd8UL-aRM_f-0V-mA1OmGYc,49683
|
|
|
26
26
|
tryton/common/completion.py,sha256=lSFeoi5_B5QChkV1zI954veSAI61MBc9k4ZVITdlCh8,3035
|
|
27
27
|
tryton/common/datetime_.py,sha256=IoYt30e-vp3hZiAt-X6hWAyQxfc7R_c1b5Y1J2zpsNA,20394
|
|
28
28
|
tryton/common/domain_inversion.py,sha256=7tsaHPbkOaSFxYTw4KViKGi7u09W2Vt8YpGtvKRANEQ,18464
|
|
29
|
-
tryton/common/domain_parser.py,sha256=
|
|
29
|
+
tryton/common/domain_parser.py,sha256=u668iwqOEKg_m4kjhJoxTYiajTEFW0merGhUiEeDyS8,29669
|
|
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,55 +39,55 @@ tryton/common/tempfile.py,sha256=o2O7xw0QF0eBearaJ9TxMuvJQ4VB6kaF0fCNKAGzaZQ,785
|
|
|
39
39
|
tryton/common/timedelta.py,sha256=z3EXjKUzssaYHNFhngUIcc2sVaeNUVp4urQjm3JFJUw,3180
|
|
40
40
|
tryton/common/underline.py,sha256=dZpz7m4s7siS024v_gvJ6kWmYZSkl3XnRrJeY2pWfqA,714
|
|
41
41
|
tryton/common/widget_style.py,sha256=YiS-FnCZm0Kesdw-vx9gWD7QKXMpasoUzHe-UPX2_e0,335
|
|
42
|
-
tryton/data/locale/bg/LC_MESSAGES/tryton.mo,sha256=
|
|
42
|
+
tryton/data/locale/bg/LC_MESSAGES/tryton.mo,sha256=peC1xTXdCuXWGwTjJ70ihGEwUOtyl9yvfMzuGgyy1EM,8649
|
|
43
43
|
tryton/data/locale/bg/LC_MESSAGES/tryton.po,sha256=GZr1Eo5796uRu4szhM_MVlGyIUjbJCGXxGzDZe5rMXo,22606
|
|
44
|
-
tryton/data/locale/ca/LC_MESSAGES/tryton.mo,sha256=
|
|
44
|
+
tryton/data/locale/ca/LC_MESSAGES/tryton.mo,sha256=u649jMrIaKCdQWvc7rUsJ5DuO1JerrzOqcNJSZbe6Xg,20467
|
|
45
45
|
tryton/data/locale/ca/LC_MESSAGES/tryton.po,sha256=tzu1_rDOtu9TdYLRS2YDyjo-AnDC_-fuFRr-PcEg1cE,21718
|
|
46
|
-
tryton/data/locale/cs/LC_MESSAGES/tryton.mo,sha256=
|
|
46
|
+
tryton/data/locale/cs/LC_MESSAGES/tryton.mo,sha256=Fbb6Icb5c-6_4QMcf4Ql3P_Nn_DfwSBw46Up7_wHD9Q,4634
|
|
47
47
|
tryton/data/locale/cs/LC_MESSAGES/tryton.po,sha256=t0X8tC0fMiqXGxCuihnB1gO8JVWG5S1BQSQUq7ZzGD8,18835
|
|
48
|
-
tryton/data/locale/de/LC_MESSAGES/tryton.mo,sha256=
|
|
48
|
+
tryton/data/locale/de/LC_MESSAGES/tryton.mo,sha256=pAS4eItZOeEFyBltPzXbMxMXKMxQCunUNtS_-WKxzb8,21009
|
|
49
49
|
tryton/data/locale/de/LC_MESSAGES/tryton.po,sha256=ibJhzeuag_5aQHO2DLvnmyiJL1ywAP20PTCliHSXnh8,22277
|
|
50
|
-
tryton/data/locale/es/LC_MESSAGES/tryton.mo,sha256=
|
|
50
|
+
tryton/data/locale/es/LC_MESSAGES/tryton.mo,sha256=_jmJXsiHaRjpgG_WnN09Fe6MPBgyUjqmxF1HWvAnp2k,20726
|
|
51
51
|
tryton/data/locale/es/LC_MESSAGES/tryton.po,sha256=L6bbInT3nkUaglxjeosZZrQdsG590c_o61s7z2y0TeY,22186
|
|
52
|
-
tryton/data/locale/es_419/LC_MESSAGES/tryton.mo,sha256=
|
|
52
|
+
tryton/data/locale/es_419/LC_MESSAGES/tryton.mo,sha256=c2XuWX3LVxC-kPTFD0d8OTbKooo2__pFJEV9lx0_mh8,6878
|
|
53
53
|
tryton/data/locale/es_419/LC_MESSAGES/tryton.po,sha256=Eg1sDH5q2KA0mkThJm-B97iDcS9Vj8UQW8uXxqbcxaI,17057
|
|
54
|
-
tryton/data/locale/et/LC_MESSAGES/tryton.mo,sha256=
|
|
54
|
+
tryton/data/locale/et/LC_MESSAGES/tryton.mo,sha256=FHVVJv_YCidV012y48Yxcp021yGE_jjI7LsBugOtr1Y,13376
|
|
55
55
|
tryton/data/locale/et/LC_MESSAGES/tryton.po,sha256=yDRXR8QC3p5CiW_inisf4hI-yL7P5_UFih_z5JFunQE,19526
|
|
56
|
-
tryton/data/locale/fa/LC_MESSAGES/tryton.mo,sha256=
|
|
56
|
+
tryton/data/locale/fa/LC_MESSAGES/tryton.mo,sha256=wBg7alXpjh7vqjU_fd4iAfVryadFhBwpKIPsKavtdgI,16546
|
|
57
57
|
tryton/data/locale/fa/LC_MESSAGES/tryton.po,sha256=xPtn5AAAkHnEIl4QnG1IwBvnlZMMDBpLOJGYQJu_ldc,23450
|
|
58
|
-
tryton/data/locale/fi/LC_MESSAGES/tryton.mo,sha256=
|
|
58
|
+
tryton/data/locale/fi/LC_MESSAGES/tryton.mo,sha256=hBow1emzGwvN6aUBub20Yn4g73rJFNEkbGV-RZzvwss,445
|
|
59
59
|
tryton/data/locale/fi/LC_MESSAGES/tryton.po,sha256=Jh0DO0bFQ460TfU7WxQi3zBPrBEc-QeFvRmtCLkNZmE,14504
|
|
60
|
-
tryton/data/locale/fr/LC_MESSAGES/tryton.mo,sha256=
|
|
60
|
+
tryton/data/locale/fr/LC_MESSAGES/tryton.mo,sha256=7y0bYTJb3qFxLU0R27vqrzaxo4P893BlubTrzVK_bAw,21318
|
|
61
61
|
tryton/data/locale/fr/LC_MESSAGES/tryton.po,sha256=QzVh78hFgKVQZnZ55Nutqht01OmQXzqzt7EpxjGhN50,22518
|
|
62
|
-
tryton/data/locale/hu/LC_MESSAGES/tryton.mo,sha256=
|
|
62
|
+
tryton/data/locale/hu/LC_MESSAGES/tryton.mo,sha256=4VocNNIKZ69tukQoAd8NpNK44I1Dmf5Vo_NaC6Mb5TU,16929
|
|
63
63
|
tryton/data/locale/hu/LC_MESSAGES/tryton.po,sha256=OG8EJlP99Q1b3Mc-6XTk0KI8StDNa05ggS2QFhfoeCI,21572
|
|
64
|
-
tryton/data/locale/id/LC_MESSAGES/tryton.mo,sha256=
|
|
64
|
+
tryton/data/locale/id/LC_MESSAGES/tryton.mo,sha256=WBRjtu-PnKm3mS2JCrUaHLZMUNEncv_f77dqIYAO_mI,6945
|
|
65
65
|
tryton/data/locale/id/LC_MESSAGES/tryton.po,sha256=pMBjwZ2K350imzNjzd-YvMi68RJvoA27fPYX9OjRq-I,16534
|
|
66
|
-
tryton/data/locale/it/LC_MESSAGES/tryton.mo,sha256=
|
|
66
|
+
tryton/data/locale/it/LC_MESSAGES/tryton.mo,sha256=YimXhSv8xLnY4JAvQPs41GXN4kpFplNMQiU3xKJm7b4,14932
|
|
67
67
|
tryton/data/locale/it/LC_MESSAGES/tryton.po,sha256=aF7wyUyR5iay8BQMYPjd3_rWdv1BeI9bVjr3uTz1TTk,20466
|
|
68
|
-
tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo,sha256=
|
|
68
|
+
tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo,sha256=g6Bd8RxSAfQpDKZIl65RNu0UQrA4T5YF3CMZsAH7O4o,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=
|
|
70
|
+
tryton/data/locale/lo/LC_MESSAGES/tryton.mo,sha256=uAYOHe1Zl1EKefhtV4SN_J_2xF4ZUxxp3R7D80BfIpw,18254
|
|
71
71
|
tryton/data/locale/lo/LC_MESSAGES/tryton.po,sha256=Zvcv5oc7zKZROT_HWL20f5jrWFq2Q8HMdoo5wpiFoZw,28153
|
|
72
|
-
tryton/data/locale/lt/LC_MESSAGES/tryton.mo,sha256=
|
|
72
|
+
tryton/data/locale/lt/LC_MESSAGES/tryton.mo,sha256=E4SYIu1TVBcTt4-dD1q5QeOkykgULrhN2mxN8h7rT-g,16082
|
|
73
73
|
tryton/data/locale/lt/LC_MESSAGES/tryton.po,sha256=EsexS3T4bBxBEESvP23OIKhpsXIv6PA969OoLKVAliE,21547
|
|
74
|
-
tryton/data/locale/nl/LC_MESSAGES/tryton.mo,sha256=
|
|
74
|
+
tryton/data/locale/nl/LC_MESSAGES/tryton.mo,sha256=3A_cmzLdMvO2tN4xhJq6c0Q0XtvB2-fMzdMkdiefKjg,20229
|
|
75
75
|
tryton/data/locale/nl/LC_MESSAGES/tryton.po,sha256=gt8tbWH42PfFU572fzN26FH91LDX70bqk8E5cYPuWek,21406
|
|
76
|
-
tryton/data/locale/pl/LC_MESSAGES/tryton.mo,sha256=
|
|
76
|
+
tryton/data/locale/pl/LC_MESSAGES/tryton.mo,sha256=aFbkT4jdHy8r7qmdRLLR3LnsQfjSavqKaHrRWQDtD1w,19830
|
|
77
77
|
tryton/data/locale/pl/LC_MESSAGES/tryton.po,sha256=TW7WMza33jNtXH5AsHHh7_BMAmg_dT-pyQ1tczGXOmA,21303
|
|
78
|
-
tryton/data/locale/pt/LC_MESSAGES/tryton.mo,sha256=
|
|
78
|
+
tryton/data/locale/pt/LC_MESSAGES/tryton.mo,sha256=uVCRmIpZVnhSBJ7g91_QItnoX7MYbOHpcB949HpYbJo,15010
|
|
79
79
|
tryton/data/locale/pt/LC_MESSAGES/tryton.po,sha256=7upVfoUlWCgq7odqe5wODglnUkSGlNwN27zHfq0GCr0,21026
|
|
80
|
-
tryton/data/locale/ro/LC_MESSAGES/tryton.mo,sha256=
|
|
80
|
+
tryton/data/locale/ro/LC_MESSAGES/tryton.mo,sha256=FtmiPAE7PCsHXeUZt5PvuNQfiAQ7q0qkOMdd1GWwfwk,19706
|
|
81
81
|
tryton/data/locale/ro/LC_MESSAGES/tryton.po,sha256=J9pTnaFEBbf-Ir7DgUug7yTQZfohDOzi5ZALeAq_z9c,21534
|
|
82
|
-
tryton/data/locale/ru/LC_MESSAGES/tryton.mo,sha256=
|
|
82
|
+
tryton/data/locale/ru/LC_MESSAGES/tryton.mo,sha256=miOHhqHgKFeUph-oHMaJ6fOq8eqR3pUrEPT6rwYZE4s,9858
|
|
83
83
|
tryton/data/locale/ru/LC_MESSAGES/tryton.po,sha256=nZmth-w3Hnmz0XUitsspiTDdB0BMkppTxsSvplDFg9c,23053
|
|
84
|
-
tryton/data/locale/sl/LC_MESSAGES/tryton.mo,sha256=
|
|
84
|
+
tryton/data/locale/sl/LC_MESSAGES/tryton.mo,sha256=x1jE_5kQaQoB3yFTfTiez0g-1Lql4gimieCQWdAGRss,19497
|
|
85
85
|
tryton/data/locale/sl/LC_MESSAGES/tryton.po,sha256=PAX_RRLeLhtGwrEUWEPOlwVhpmPU-ZC_66QVMcdGUEM,21057
|
|
86
|
-
tryton/data/locale/tr/LC_MESSAGES/tryton.mo,sha256=
|
|
86
|
+
tryton/data/locale/tr/LC_MESSAGES/tryton.mo,sha256=zOC-iN2K0jP2OONtL6yhvr06mMs0fKl27UcfocvU_2I,1696
|
|
87
87
|
tryton/data/locale/tr/LC_MESSAGES/tryton.po,sha256=UMhg863bTdBXgZmDJdAh06lNVmrXYtJDZ8ZSWk9CR7c,15065
|
|
88
|
-
tryton/data/locale/uk/LC_MESSAGES/tryton.mo,sha256=
|
|
88
|
+
tryton/data/locale/uk/LC_MESSAGES/tryton.mo,sha256=l1aQUdrSNKT5rqkaNlMUfMO0d1H1PW55WiYL9wIoH8Q,22627
|
|
89
89
|
tryton/data/locale/uk/LC_MESSAGES/tryton.po,sha256=2ph2zQQJInMNEoXEHijNOofldD1A3rE03Mi8YCeBguw,25965
|
|
90
|
-
tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo,sha256=
|
|
90
|
+
tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo,sha256=OeECG7UgJN1bG0bbHixJqpvjIkSJoaNnM-nZ_x42bf0,17859
|
|
91
91
|
tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po,sha256=nPHfBobB9Iwf84Ga_k0PD9yxWGQWm-OnbUAMUzrPFO0,20056
|
|
92
92
|
tryton/data/pixmaps/tryton/tryton-add.svg,sha256=qIk1ewmNjSHqD8vRqCv0kT7v6hbHnY0KNU-M1jrxb4s,185
|
|
93
93
|
tryton/data/pixmaps/tryton/tryton-archive.svg,sha256=9MO4wyp1SyYh3-FuoIrHhKb-9ywyql2bExsnz0XX9x0,382
|
|
@@ -165,7 +165,7 @@ tryton/gui/window/board.py,sha256=SYUOLkcwlAj9dFT_tLkalm8VpCruLJE7j9kGZ2UFXJk,19
|
|
|
165
165
|
tryton/gui/window/code_scanner.py,sha256=yPQhVBRiobu9ORpUfZiFjQSVlZfxH9f1IClIHrBKn6s,3495
|
|
166
166
|
tryton/gui/window/dblogin.py,sha256=TjbKSJ-eKzjF15ZtJHUGPeEROI9lavYzVnrk1SDawsU,30067
|
|
167
167
|
tryton/gui/window/email_.py,sha256=oQniziBERQVQ4GSUrrxwm0zTWbJA1NHZtUWOW5HXA-I,13576
|
|
168
|
-
tryton/gui/window/form.py,sha256=
|
|
168
|
+
tryton/gui/window/form.py,sha256=Q8sGxuR31Ie4fMhYr6n4Bf1n8j81WC3fe5Mq3QvdQpc,34764
|
|
169
169
|
tryton/gui/window/infobar.py,sha256=XumLQ5g3wV9uuwC1mM5ZKsay7TwZ9wu03N3Af3o4FEM,1498
|
|
170
170
|
tryton/gui/window/limit.py,sha256=aabTz6QOAu8OMFVZqElLejIiSKUCcJzayOwJy2HjtUo,2615
|
|
171
171
|
tryton/gui/window/log.py,sha256=QpACy9KGiJ6zD2Lr8-kNX3JGj8rtIFkLseRGgYQghwY,4568
|
|
@@ -186,16 +186,16 @@ tryton/gui/window/view_board/action.py,sha256=9KNVIiL-_KHN_fLe0XLbFp_CrO5hvWCCPn
|
|
|
186
186
|
tryton/gui/window/view_board/view_board.py,sha256=fTZyDUImgkq31mlPr7_nt9QfsMT3gzOC5t8fK2XuQNU,1810
|
|
187
187
|
tryton/gui/window/view_form/__init__.py,sha256=KpO5XlSYKEB3rxVNiloUx1I9xYQr_VEGw-D915kX_Ho,185
|
|
188
188
|
tryton/gui/window/view_form/model/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
|
|
189
|
-
tryton/gui/window/view_form/model/field.py,sha256=
|
|
189
|
+
tryton/gui/window/view_form/model/field.py,sha256=VbHtPa6teKcjHFY4MWs3XV5hVazwSlAqOjtMo4nDOHo,45814
|
|
190
190
|
tryton/gui/window/view_form/model/group.py,sha256=3xwpXSxkH3Dfg3JD0Aq23DelMb_XIsE3wLYx_pBfHME,18490
|
|
191
191
|
tryton/gui/window/view_form/model/record.py,sha256=6QNDAXQOF_GPQgj_H44UChaYl3b9LNzId8_jJ5Y45HA,28830
|
|
192
192
|
tryton/gui/window/view_form/screen/__init__.py,sha256=ws2wA8SsyQoZDbIjDpQF9-zP-BiLgVQyUSDVq8pvovo,191
|
|
193
|
-
tryton/gui/window/view_form/screen/screen.py,sha256
|
|
193
|
+
tryton/gui/window/view_form/screen/screen.py,sha256=Dvmxmv__9yp3zQyQQ1BnZvWJVUGwNtvp-djZ2dp3VwE,54257
|
|
194
194
|
tryton/gui/window/view_form/view/__init__.py,sha256=HtIDfj_3gBdiOJbDfUzRpgYgSRN0GyVkUTIbSUmJL70,4386
|
|
195
195
|
tryton/gui/window/view_form/view/calendar_.py,sha256=F6yl-xO5AsgsSVZwd4BU2izXaeBdpuGh21KLXftrr9g,6078
|
|
196
196
|
tryton/gui/window/view_form/view/form.py,sha256=sFDooT9LnPW3FD2C2m1xrqkGnxS1ExYNrGOjv34l4aY,22710
|
|
197
197
|
tryton/gui/window/view_form/view/graph.py,sha256=ngoMZ77e_waMkvvMblAMzNDK6UG9aL4O-LRLAjBz7q0,6499
|
|
198
|
-
tryton/gui/window/view_form/view/list.py,sha256=
|
|
198
|
+
tryton/gui/window/view_form/view/list.py,sha256=5cDUjNyl8PvViI7iavVFlibBVGXxoyksUldgOoJM-1U,54437
|
|
199
199
|
tryton/gui/window/view_form/view/list_form.py,sha256=9IsSjpXIoBpT43rwWYxEF8yN2gi58mHZzMfTBhd8SnM,6984
|
|
200
200
|
tryton/gui/window/view_form/view/screen_container.py,sha256=lWC4DxGGOYfGw6TjuELUUL1KbCek4p65COXk51bt3_k,25812
|
|
201
201
|
tryton/gui/window/view_form/view/calendar_gtk/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
|
|
@@ -234,6 +234,7 @@ tryton/gui/window/view_form/view/graph_gtk/line.py,sha256=H784XziWn-XYDaUYi_PFfe
|
|
|
234
234
|
tryton/gui/window/view_form/view/graph_gtk/pie.py,sha256=4WpqqdX4Ft8axhpnDOcWuKdrWpnMbEoWxRQMCq4TAm4,7241
|
|
235
235
|
tryton/gui/window/view_form/view/list_gtk/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
|
|
236
236
|
tryton/gui/window/view_form/view/list_gtk/editabletree.py,sha256=fyzglyc1aqY9dN1vFJeJ2fGLYWg3JeoHhnk-mJt7xWc,13835
|
|
237
|
+
tryton/gui/window/view_form/view/list_gtk/generictreemodel.py,sha256=Quy6RNbSLkYwOYvB7SL2gCu5fwE3vIcv0CdU6bTw7EY,14365
|
|
237
238
|
tryton/gui/window/view_form/view/list_gtk/widget.py,sha256=I5fMI4TOZQWx5LQIrJyvGWrYgqFjeHtgNNVl8_AtdrI,51721
|
|
238
239
|
tryton/plugins/__init__.py,sha256=BIzasnQxTfBYrc5dh0HUW5OQV8mQ5Qs8XihgquPljBo,1449
|
|
239
240
|
tryton/plugins/translation/__init__.py,sha256=HcuSMS0KOPfiWZmqo4gUSqBAknirLtmsnU48bw8JWu8,697
|
|
@@ -242,9 +243,9 @@ tryton/tests/test_common.py,sha256=NDGLS7TzVX5D6GHLfQtb_Yxp2fIyQd6cBNfhjrHlvVQ,1
|
|
|
242
243
|
tryton/tests/test_common_domain_parser.py,sha256=6LGBlunxoHqEEq_aNMTFiHN2p9Zn-3H30G4C8niFZLk,44874
|
|
243
244
|
tryton/tests/test_common_selection.py,sha256=1vvP7qfgCaqBhgADqbcCOI5ChXZghKSr7kzP99CGqtA,649
|
|
244
245
|
tryton/tests/test_common_timedelta.py,sha256=IHzNvZrEimLDxTWLNk5K8VG4KZYaxxGGOdoOB8VefQw,3538
|
|
245
|
-
tryton-7.4.
|
|
246
|
-
tryton-7.4.
|
|
247
|
-
tryton-7.4.
|
|
248
|
-
tryton-7.4.
|
|
249
|
-
tryton-7.4.
|
|
250
|
-
tryton-7.4.
|
|
246
|
+
tryton-7.4.10.data/scripts/tryton,sha256=nVzTlvIjRfxC9ZwrgPATVFOzMxrutjFeAS6CuU0g9Ds,2098
|
|
247
|
+
tryton-7.4.10.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
|
|
248
|
+
tryton-7.4.10.dist-info/METADATA,sha256=Mm5p4jEY1dCoq8C8CPbZGgAAjTiSiJ1n3achM6vr9Iw,2851
|
|
249
|
+
tryton-7.4.10.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
250
|
+
tryton-7.4.10.dist-info/top_level.txt,sha256=7l30wN15bNakY7BPm2TEO79_XxvmYpkJONTGR_dTTOU,7
|
|
251
|
+
tryton-7.4.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|