tryton 7.4.1__py3-none-any.whl → 7.4.3__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/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/about.py +1 -1
- tryton/gui/window/view_form/model/field.py +0 -2
- tryton/gui/window/view_form/model/record.py +6 -1
- tryton/gui/window/view_form/screen/screen.py +6 -2
- tryton/gui/window/view_form/view/form.py +3 -1
- tryton/gui/window/view_form/view/list.py +4 -0
- tryton/gui/window/view_form/view/list_gtk/widget.py +1 -1
- tryton/gui/window/view_form/view/screen_container.py +3 -5
- {tryton-7.4.1.dist-info → tryton-7.4.3.dist-info}/METADATA +1 -1
- {tryton-7.4.1.dist-info → tryton-7.4.3.dist-info}/RECORD +40 -40
- {tryton-7.4.1.dist-info → tryton-7.4.3.dist-info}/WHEEL +1 -1
- {tryton-7.4.1.data → tryton-7.4.3.data}/scripts/tryton +0 -0
- {tryton-7.4.1.dist-info → tryton-7.4.3.dist-info}/LICENSE +0 -0
- {tryton-7.4.1.dist-info → tryton-7.4.3.dist-info}/top_level.txt +0 -0
tryton/__init__.py
CHANGED
|
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/about.py
CHANGED
|
@@ -621,12 +621,10 @@ class O2MField(Field):
|
|
|
621
621
|
from .group import Group
|
|
622
622
|
parent_name = self.attrs.get('relation_field', '')
|
|
623
623
|
fields = fields or {}
|
|
624
|
-
context = record.expr_eval(self.attrs.get('context', {}))
|
|
625
624
|
group = Group(self.attrs['relation'], fields,
|
|
626
625
|
parent=record,
|
|
627
626
|
parent_name=parent_name,
|
|
628
627
|
child_name=self.name,
|
|
629
|
-
context=context,
|
|
630
628
|
parent_datetime_field=self.attrs.get('datetime_field'))
|
|
631
629
|
if not fields and record.model_name == self.attrs['relation']:
|
|
632
630
|
group.fields = record.group.fields
|
|
@@ -406,6 +406,7 @@ class Record:
|
|
|
406
406
|
return self.id
|
|
407
407
|
|
|
408
408
|
def default_get(self, defaults=None):
|
|
409
|
+
vals = {}
|
|
409
410
|
if len(self.group.fields):
|
|
410
411
|
context = self.get_context()
|
|
411
412
|
if defaults is not None:
|
|
@@ -415,7 +416,7 @@ class Record:
|
|
|
415
416
|
vals = RPCExecute('model', self.model_name, 'default_get',
|
|
416
417
|
list(self.group.fields.keys()), context=context)
|
|
417
418
|
except RPCException:
|
|
418
|
-
return
|
|
419
|
+
return vals
|
|
419
420
|
if (self.parent
|
|
420
421
|
and self.parent_name in self.group.fields):
|
|
421
422
|
parent_field = self.group.fields[self.parent_name]
|
|
@@ -606,6 +607,7 @@ class Record:
|
|
|
606
607
|
values.update(self._get_on_change_args(on_change))
|
|
607
608
|
|
|
608
609
|
if values:
|
|
610
|
+
values['id'] = self.id
|
|
609
611
|
try:
|
|
610
612
|
if len(fieldnames) == 1 or 'id' not in values:
|
|
611
613
|
changes = []
|
|
@@ -667,6 +669,7 @@ class Record:
|
|
|
667
669
|
'on_change_with_' + fieldname,
|
|
668
670
|
values, context=self.get_context()))
|
|
669
671
|
else:
|
|
672
|
+
values['id'] = self.id
|
|
670
673
|
changed = RPCExecute(
|
|
671
674
|
'model', self.model_name, 'on_change_with',
|
|
672
675
|
values, list(fieldnames), context=self.get_context())
|
|
@@ -689,6 +692,7 @@ class Record:
|
|
|
689
692
|
'on_change_with_' + fieldname,
|
|
690
693
|
values, context=self.get_context()))
|
|
691
694
|
else:
|
|
695
|
+
values['id'] = self.id
|
|
692
696
|
changed = RPCExecute(
|
|
693
697
|
'model', self.model_name, 'on_change_with',
|
|
694
698
|
values, list(later), context=self.get_context())
|
|
@@ -720,6 +724,7 @@ class Record:
|
|
|
720
724
|
def on_scan_code(self, code, depends):
|
|
721
725
|
depends = self.expr_eval(depends)
|
|
722
726
|
values = self._get_on_change_args(depends)
|
|
727
|
+
values['id'] = self.id
|
|
723
728
|
try:
|
|
724
729
|
changes = RPCExecute(
|
|
725
730
|
'model', self.model_name, 'on_scan_code', values, code,
|
|
@@ -75,7 +75,8 @@ class Screen:
|
|
|
75
75
|
self.__current_record = None
|
|
76
76
|
self.new_group(context or {})
|
|
77
77
|
self.current_record = None
|
|
78
|
-
self.screen_container = ScreenContainer(
|
|
78
|
+
self.screen_container = ScreenContainer(
|
|
79
|
+
self, attributes.get('tab_domain'))
|
|
79
80
|
self.screen_container.alternate_view = attributes.get(
|
|
80
81
|
'alternate_view', False)
|
|
81
82
|
self.widget = self.screen_container.widget_get()
|
|
@@ -163,7 +164,6 @@ class Screen:
|
|
|
163
164
|
|
|
164
165
|
def search_active(self, active=True):
|
|
165
166
|
if active and not self.parent:
|
|
166
|
-
self.screen_container.set_screen(self)
|
|
167
167
|
self.screen_container.show_filter()
|
|
168
168
|
else:
|
|
169
169
|
self.screen_container.hide_filter()
|
|
@@ -816,6 +816,9 @@ class Screen:
|
|
|
816
816
|
record.group.remove(
|
|
817
817
|
record, remove=remove, modified=False,
|
|
818
818
|
force_remove=force_remove)
|
|
819
|
+
# set current_record to None to prevent __select_changed
|
|
820
|
+
# to set deleted record as current_record
|
|
821
|
+
self.current_record = None
|
|
819
822
|
# call only once
|
|
820
823
|
record.set_modified()
|
|
821
824
|
|
|
@@ -1260,6 +1263,7 @@ class Screen:
|
|
|
1260
1263
|
record = self.current_record
|
|
1261
1264
|
args = record.expr_eval(button.get('change', []))
|
|
1262
1265
|
values = record._get_on_change_args(args)
|
|
1266
|
+
values['id'] = record.id
|
|
1263
1267
|
try:
|
|
1264
1268
|
changes = RPCExecute('model', self.model_name, button['name'],
|
|
1265
1269
|
values, context=self.context)
|
|
@@ -382,7 +382,6 @@ class FormXMLViewParser(XMLViewParser):
|
|
|
382
382
|
group = Container.constructor(
|
|
383
383
|
int(attributes.get('col', 4)),
|
|
384
384
|
attributes.get('homogeneous', False))
|
|
385
|
-
self.parse_child(node, group)
|
|
386
385
|
|
|
387
386
|
if 'name' in attributes and attributes['name'] == self.exclude_field:
|
|
388
387
|
self.container.add(None, attributes)
|
|
@@ -406,6 +405,9 @@ class FormXMLViewParser(XMLViewParser):
|
|
|
406
405
|
bool(attributes.get('yexpand'))))
|
|
407
406
|
self.view.state_widgets.append(widget)
|
|
408
407
|
self.container.add(widget, attributes)
|
|
408
|
+
# Parse the children at the end to preserve the order of the state
|
|
409
|
+
# widgets
|
|
410
|
+
self.parse_child(node, group)
|
|
409
411
|
|
|
410
412
|
def _parse_hpaned(self, node, attributes):
|
|
411
413
|
self._parse_paned(node, attributes, Gtk.HPaned)
|
|
@@ -1139,6 +1139,10 @@ class ViewTree(View):
|
|
|
1139
1139
|
def display(self, force=False):
|
|
1140
1140
|
self.treeview.display_counter += 1
|
|
1141
1141
|
current_record = self.record
|
|
1142
|
+
if current_record and current_record not in current_record.group:
|
|
1143
|
+
# current record may have been removed by on_change calls without
|
|
1144
|
+
# changing the current record of screen before the display
|
|
1145
|
+
current_record = None
|
|
1142
1146
|
if (force
|
|
1143
1147
|
or not self.treeview.get_model()
|
|
1144
1148
|
or self.group != self.treeview.get_model().group):
|
|
@@ -742,7 +742,7 @@ class _BinarySelect(_BinaryIcon):
|
|
|
742
742
|
invisible = field.get_state_attrs(record).get('invisible', False)
|
|
743
743
|
readonly = self.attrs.get('readonly',
|
|
744
744
|
field.get_state_attrs(record).get('readonly', False))
|
|
745
|
-
if readonly
|
|
745
|
+
if readonly or size:
|
|
746
746
|
cell.set_property('visible', False)
|
|
747
747
|
else:
|
|
748
748
|
cell.set_property('visible', not invisible)
|
|
@@ -185,7 +185,8 @@ class Selection(Gtk.ScrolledWindow):
|
|
|
185
185
|
|
|
186
186
|
class ScreenContainer(object):
|
|
187
187
|
|
|
188
|
-
def __init__(self, tab_domain):
|
|
188
|
+
def __init__(self, screen, tab_domain):
|
|
189
|
+
self.screen = screen
|
|
189
190
|
self.viewport = Gtk.Viewport()
|
|
190
191
|
self.viewport.set_shadow_type(Gtk.ShadowType.NONE)
|
|
191
192
|
self.vbox = Gtk.VBox(spacing=3)
|
|
@@ -351,12 +352,9 @@ class ScreenContainer(object):
|
|
|
351
352
|
def widget_get(self):
|
|
352
353
|
return self.vbox
|
|
353
354
|
|
|
354
|
-
def
|
|
355
|
-
self.screen = screen
|
|
355
|
+
def show_filter(self):
|
|
356
356
|
self.but_bookmark.set_sensitive(bool(list(self.bookmarks())))
|
|
357
357
|
self.bookmark_match()
|
|
358
|
-
|
|
359
|
-
def show_filter(self):
|
|
360
358
|
if self.filter_vbox:
|
|
361
359
|
self.filter_vbox.show()
|
|
362
360
|
if self.notebook:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tryton/__init__.py,sha256=
|
|
1
|
+
tryton/__init__.py,sha256=4Q_U8RkOcbz5qT8KvWywmSybg0kHOwVLxQFsme3g6kY,1926
|
|
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
|
|
@@ -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=kUQzwXAGhPFe_sTksYiqa8Rsq5BgQA5HngYPd6UWW_4,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=3l2hn35Jb8huyyX8u-8aaMISW3NHwpSvfiMrlz2aAhw,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=8nl7Q4QbCEZyx1TV5_cOjUtr-J6AdFYQ4L9Jb438RV4,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=7O9fJmSIANnD_PcQTiqFTZpW1LaOyYMC4WVWvW93iBg,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=_XyX5rdM0T8tXrqFDUFZLInoHf6jnSWAo7aXz1sXayc,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=Q5ZyGfU8FTC1h-sIjZx5beLrimtOIipTMvq0_BSSE84,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=E4P1hBK_qDstEoTYjwIRWNsuhteU6W81i6oVwGE4J9w,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=wPg3EaMzf14_zzfVS31hU_qRn6LwaxqSc85XiLEPOHk,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=cAWEqQUypN4k23JSBRjbat6jE64HCFd0KnMmwYEM3Ag,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=j9YvZVRPOagcNmCfs3UxhN4imSf1t2ZzzQpYVRcHA48,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=344toWwSUVaQYqhsyzE_vCcglBkHDUinTwlSB5gu3l8,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=tiSphvLd5-7mGK9dHw3IS-QDpyTj0sDCPHDhgAI3EU4,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=x8eF8XB-Ur8Qz_9ckeR1NJZrc1vwbpqQtmn_OsfD6wU,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=HL2jQj_YZ1HbNgsym__XYSjiwczVXTc2dSvr50kRL3I,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=zdqFCnObr7pQbEkuT7BFqy5aBChs0BQf3Swgdz9b0oY,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=9d916LS6Hv8UYMiDHmAlGzZiUFy5JZyotveMKeVZAYY,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=FGSZ5RwuY2oEHOwnoFRjfd_5m69GW8ZOzrhqaH92R8o,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=j1tzUUDJ9h13OsRR26btEn8ZtGWRK06da5PZwJX7ikg,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=H8avn-y5VefpS2k-qH6TAGmjUUzSJSHQEE-wlt2yfd4,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=8JTimSYrFsl-wmq94fTpfDH0iYZ7QIGxbb_pKbjkeHg,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=KOHrXPW4Bqx4p4vsjgzBiQOCvtfbIDCsT_QjqlJ3alM,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=hspO6Ro9WbD0CgPflKYx2dLujVJdG5O0hMHrMGB0EOA,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=wzg-kkesOksJ7wWupPHA_M94b4upzXZrNHJkHmrZTMM,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=eTroXm5HutWPXHmybqiLSzdMpADwvU_4mNKmUm74k3Q,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=y2XjGqCUUTAduchEYBE0ze0sMTvF6gYlO42mvl7wu8w,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
|
|
@@ -159,7 +159,7 @@ tryton/data/sounds/success.wav,sha256=_yE79vgKLJNTRzU4QrAx1x9h2yZn01pswl9YqG9iNr
|
|
|
159
159
|
tryton/gui/__init__.py,sha256=3JRlIwzfwhe8l5g76iZxtQw0OX4YAInqa5JD8DgyHvs,185
|
|
160
160
|
tryton/gui/main.py,sha256=lUmPq9Z_F75qC_G7ftWBW4NWjXol6fN3zQJxe298rPE,42441
|
|
161
161
|
tryton/gui/window/__init__.py,sha256=C4ZuoOlELFSz38AFq2Xrlo5Nkps_wT4Aun0psa9SkFU,191
|
|
162
|
-
tryton/gui/window/about.py,sha256=
|
|
162
|
+
tryton/gui/window/about.py,sha256=Tl3Mpr6CxLI51Bc9V1f6NnCW1zA4s8nvHKSGNOfMy8I,1726
|
|
163
163
|
tryton/gui/window/attachment.py,sha256=mld3sn1FpUayFEyY4erjqbDQK6upZ9QZJnXFigo0jFY,3693
|
|
164
164
|
tryton/gui/window/board.py,sha256=SYUOLkcwlAj9dFT_tLkalm8VpCruLJE7j9kGZ2UFXJk,1903
|
|
165
165
|
tryton/gui/window/code_scanner.py,sha256=yPQhVBRiobu9ORpUfZiFjQSVlZfxH9f1IClIHrBKn6s,3495
|
|
@@ -186,18 +186,18 @@ 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=k2r2mxDYjIN6utAXBIcO1oS4aE-qITRx07KYDQVH4sw,45651
|
|
190
190
|
tryton/gui/window/view_form/model/group.py,sha256=3xwpXSxkH3Dfg3JD0Aq23DelMb_XIsE3wLYx_pBfHME,18490
|
|
191
|
-
tryton/gui/window/view_form/model/record.py,sha256=
|
|
191
|
+
tryton/gui/window/view_form/model/record.py,sha256=oYahy6WVxCPZmYxpGj18SL7pTumkJfm0iLYrYXHpYvk,28837
|
|
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=MySDGTVKqIPp7McGNOC2tuo5Gaw2zkxEXQ5ITW8UW_Q,54197
|
|
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
|
-
tryton/gui/window/view_form/view/form.py,sha256=
|
|
196
|
+
tryton/gui/window/view_form/view/form.py,sha256=YaecfMwVpE2aqPpOhbDZ6K_QzfOWfyWPjSb2zP-wAG0,22716
|
|
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=5r9oE9ocTCnnqoh51x17QmctaiEJFYQT-wDzH5EJqxc,54328
|
|
199
199
|
tryton/gui/window/view_form/view/list_form.py,sha256=9IsSjpXIoBpT43rwWYxEF8yN2gi58mHZzMfTBhd8SnM,6984
|
|
200
|
-
tryton/gui/window/view_form/view/screen_container.py,sha256=
|
|
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
|
|
202
202
|
tryton/gui/window/view_form/view/calendar_gtk/calendar_.py,sha256=IGqLLn5zCFnDw6cGu7kLiRyhaYvhixFaumRrAkLuMCg,5820
|
|
203
203
|
tryton/gui/window/view_form/view/calendar_gtk/dates_period.py,sha256=xwfOI9nX6VmtPaznlQrl3Z9SPUnLgb4_Jw2H6bSuuv0,926
|
|
@@ -234,7 +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/widget.py,sha256=
|
|
237
|
+
tryton/gui/window/view_form/view/list_gtk/widget.py,sha256=I5fMI4TOZQWx5LQIrJyvGWrYgqFjeHtgNNVl8_AtdrI,51721
|
|
238
238
|
tryton/plugins/__init__.py,sha256=BIzasnQxTfBYrc5dh0HUW5OQV8mQ5Qs8XihgquPljBo,1449
|
|
239
239
|
tryton/plugins/translation/__init__.py,sha256=HcuSMS0KOPfiWZmqo4gUSqBAknirLtmsnU48bw8JWu8,697
|
|
240
240
|
tryton/tests/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
|
|
@@ -242,9 +242,9 @@ tryton/tests/test_common.py,sha256=NDGLS7TzVX5D6GHLfQtb_Yxp2fIyQd6cBNfhjrHlvVQ,1
|
|
|
242
242
|
tryton/tests/test_common_domain_parser.py,sha256=6LGBlunxoHqEEq_aNMTFiHN2p9Zn-3H30G4C8niFZLk,44874
|
|
243
243
|
tryton/tests/test_common_selection.py,sha256=1vvP7qfgCaqBhgADqbcCOI5ChXZghKSr7kzP99CGqtA,649
|
|
244
244
|
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.
|
|
245
|
+
tryton-7.4.3.data/scripts/tryton,sha256=nVzTlvIjRfxC9ZwrgPATVFOzMxrutjFeAS6CuU0g9Ds,2098
|
|
246
|
+
tryton-7.4.3.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
|
|
247
|
+
tryton-7.4.3.dist-info/METADATA,sha256=9w2ACGhr-ssYJL7Oaj6KdbJmKDAw9ATwLv8nHVWrzN8,2545
|
|
248
|
+
tryton-7.4.3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
249
|
+
tryton-7.4.3.dist-info/top_level.txt,sha256=7l30wN15bNakY7BPm2TEO79_XxvmYpkJONTGR_dTTOU,7
|
|
250
|
+
tryton-7.4.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|