tryton 7.2.10__py3-none-any.whl → 7.2.12__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.2.10.dist-info → tryton-7.2.12.dist-info}/METADATA +1 -1
- {tryton-7.2.10.dist-info → tryton-7.2.12.dist-info}/RECORD +40 -40
- {tryton-7.2.10.dist-info → tryton-7.2.12.dist-info}/WHEEL +1 -1
- {tryton-7.2.10.data → tryton-7.2.12.data}/scripts/tryton +0 -0
- {tryton-7.2.10.dist-info → tryton-7.2.12.dist-info}/LICENSE +0 -0
- {tryton-7.2.10.dist-info → tryton-7.2.12.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
|
|
@@ -413,6 +413,7 @@ class Record:
|
|
|
413
413
|
return self.id
|
|
414
414
|
|
|
415
415
|
def default_get(self, defaults=None):
|
|
416
|
+
vals = {}
|
|
416
417
|
if len(self.group.fields):
|
|
417
418
|
context = self.get_context()
|
|
418
419
|
if defaults is not None:
|
|
@@ -422,7 +423,7 @@ class Record:
|
|
|
422
423
|
vals = RPCExecute('model', self.model_name, 'default_get',
|
|
423
424
|
list(self.group.fields.keys()), context=context)
|
|
424
425
|
except RPCException:
|
|
425
|
-
return
|
|
426
|
+
return vals
|
|
426
427
|
if (self.parent
|
|
427
428
|
and self.parent_name in self.group.fields):
|
|
428
429
|
parent_field = self.group.fields[self.parent_name]
|
|
@@ -616,6 +617,7 @@ class Record:
|
|
|
616
617
|
values.update(self._get_on_change_args(on_change))
|
|
617
618
|
|
|
618
619
|
if values:
|
|
620
|
+
values['id'] = self.id
|
|
619
621
|
try:
|
|
620
622
|
if len(fieldnames) == 1 or 'id' not in values:
|
|
621
623
|
changes = []
|
|
@@ -677,6 +679,7 @@ class Record:
|
|
|
677
679
|
'on_change_with_' + fieldname,
|
|
678
680
|
values, context=self.get_context()))
|
|
679
681
|
else:
|
|
682
|
+
values['id'] = self.id
|
|
680
683
|
changed = RPCExecute(
|
|
681
684
|
'model', self.model_name, 'on_change_with',
|
|
682
685
|
values, list(fieldnames), context=self.get_context())
|
|
@@ -699,6 +702,7 @@ class Record:
|
|
|
699
702
|
'on_change_with_' + fieldname,
|
|
700
703
|
values, context=self.get_context()))
|
|
701
704
|
else:
|
|
705
|
+
values['id'] = self.id
|
|
702
706
|
changed = RPCExecute(
|
|
703
707
|
'model', self.model_name, 'on_change_with',
|
|
704
708
|
values, list(later), context=self.get_context())
|
|
@@ -730,6 +734,7 @@ class Record:
|
|
|
730
734
|
def on_scan_code(self, code, depends):
|
|
731
735
|
depends = self.expr_eval(depends)
|
|
732
736
|
values = self._get_on_change_args(depends)
|
|
737
|
+
values['id'] = self.id
|
|
733
738
|
try:
|
|
734
739
|
changes = RPCExecute(
|
|
735
740
|
'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()
|
|
@@ -805,6 +805,9 @@ class Screen:
|
|
|
805
805
|
record.group.remove(
|
|
806
806
|
record, remove=remove, modified=False,
|
|
807
807
|
force_remove=force_remove)
|
|
808
|
+
# set current_record to None to prevent __select_changed
|
|
809
|
+
# to set deleted record as current_record
|
|
810
|
+
self.current_record = None
|
|
808
811
|
# call only once
|
|
809
812
|
record.set_modified()
|
|
810
813
|
|
|
@@ -1246,6 +1249,7 @@ class Screen:
|
|
|
1246
1249
|
record = self.current_record
|
|
1247
1250
|
args = record.expr_eval(button.get('change', []))
|
|
1248
1251
|
values = record._get_on_change_args(args)
|
|
1252
|
+
values['id'] = record.id
|
|
1249
1253
|
try:
|
|
1250
1254
|
changes = RPCExecute('model', self.model_name, button['name'],
|
|
1251
1255
|
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)
|
|
@@ -1112,6 +1112,10 @@ class ViewTree(View):
|
|
|
1112
1112
|
def display(self, force=False):
|
|
1113
1113
|
self.treeview.display_counter += 1
|
|
1114
1114
|
current_record = self.record
|
|
1115
|
+
if current_record and current_record not in current_record.group:
|
|
1116
|
+
# current record may have been removed by on_change calls without
|
|
1117
|
+
# changing the current record of screen before the display
|
|
1118
|
+
current_record = None
|
|
1115
1119
|
if (force
|
|
1116
1120
|
or not self.treeview.get_model()
|
|
1117
1121
|
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=X61SmcH5N6w4l9hT5X650A3q0lzs9FZeVcI0Qw2FmT4,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
|
|
@@ -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=yzI2wjp8_9azR38o6l2hZzZYm-f5eRw3oDIP69wgDLk,8720
|
|
43
43
|
tryton/data/locale/bg/LC_MESSAGES/tryton.po,sha256=qq6il9QoHdIbb1VUbbc98NxrYLBzleSL6e1Jx48ZsVE,22353
|
|
44
|
-
tryton/data/locale/ca/LC_MESSAGES/tryton.mo,sha256=
|
|
44
|
+
tryton/data/locale/ca/LC_MESSAGES/tryton.mo,sha256=kRFgBGnIjQ6_KVxqs8ChcTYpnvYTice2PXTyAh6U9x0,20327
|
|
45
45
|
tryton/data/locale/ca/LC_MESSAGES/tryton.po,sha256=ZYtY31AzNzz54eTFGZRumDMf6QtUU49WfopZ2ABMwOM,21574
|
|
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=q9oUTYtPhmM2B3qo9Z88SHs312SFQ27wQ_CHFteFZeo,18675
|
|
48
|
-
tryton/data/locale/de/LC_MESSAGES/tryton.mo,sha256=
|
|
48
|
+
tryton/data/locale/de/LC_MESSAGES/tryton.mo,sha256=hk3HVHvSar7UeqIMuIDpT5Sx0RzJXaUI7k8XtdhPLNc,20876
|
|
49
49
|
tryton/data/locale/de/LC_MESSAGES/tryton.po,sha256=JYUc5h0KG8C07WNtY-B8edxtAEmMKIen9rNxiTdA6GI,22140
|
|
50
|
-
tryton/data/locale/es/LC_MESSAGES/tryton.mo,sha256=
|
|
50
|
+
tryton/data/locale/es/LC_MESSAGES/tryton.mo,sha256=cm9D8TD6bmdnN-Rq-gKVgPysnUYFoKdGpWE-YGeXFU4,20586
|
|
51
51
|
tryton/data/locale/es/LC_MESSAGES/tryton.po,sha256=ieU2hAyeHPEMXso72F9kve3V1LgxDcr9JURwJFQbh3w,22042
|
|
52
|
-
tryton/data/locale/es_419/LC_MESSAGES/tryton.mo,sha256=
|
|
52
|
+
tryton/data/locale/es_419/LC_MESSAGES/tryton.mo,sha256=BK1afWigPIVACbMw8lC1-BOEFSlKgB1W7hSeZzbjFFY,7060
|
|
53
53
|
tryton/data/locale/es_419/LC_MESSAGES/tryton.po,sha256=l1QvbBP_WckH1Qw9vstGqbcdBO9Z5s_3dt0ImDhIKFs,16784
|
|
54
|
-
tryton/data/locale/et/LC_MESSAGES/tryton.mo,sha256=
|
|
54
|
+
tryton/data/locale/et/LC_MESSAGES/tryton.mo,sha256=aDkOa6P35SuS4IqnHEJ_kb5aYZiuXBRfvqX0LRfdb48,13450
|
|
55
55
|
tryton/data/locale/et/LC_MESSAGES/tryton.po,sha256=qeeaOgBaxwyG7POThk9wABDHY40yiqCPH-D3gMbOokM,19370
|
|
56
|
-
tryton/data/locale/fa/LC_MESSAGES/tryton.mo,sha256=
|
|
56
|
+
tryton/data/locale/fa/LC_MESSAGES/tryton.mo,sha256=6WjNWPvo7WOgrG0L5XZgifuii-N9APwf-CxQkXmlZ-8,16677
|
|
57
57
|
tryton/data/locale/fa/LC_MESSAGES/tryton.po,sha256=qV7fEqe7uL77K1-2CBvphCbefj25LYL4T2Ng_q9PEbM,23271
|
|
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=BkzvKHfLUGWlfR0s0r0XBrLmKTFVGQhV4RvbjQu1tFo,14424
|
|
60
|
-
tryton/data/locale/fr/LC_MESSAGES/tryton.mo,sha256=
|
|
60
|
+
tryton/data/locale/fr/LC_MESSAGES/tryton.mo,sha256=MuZekOuaMfFTpLgAbX1bh6ONR_2oDfGnmgmmd9cJOBc,21119
|
|
61
61
|
tryton/data/locale/fr/LC_MESSAGES/tryton.po,sha256=7d6pXNGIWsulEkTSaQ6036RIGPOCo85yAs3P5QGjG1s,22315
|
|
62
|
-
tryton/data/locale/hu/LC_MESSAGES/tryton.mo,sha256=
|
|
62
|
+
tryton/data/locale/hu/LC_MESSAGES/tryton.mo,sha256=PC4DRamppUArLypIfRPBxIKrDBhEDFG20lc15lPwqyo,17126
|
|
63
63
|
tryton/data/locale/hu/LC_MESSAGES/tryton.po,sha256=RK81eKpbRJzRJ3yE9vx2nlpDBwtFxGd_5vcQvcjRBLw,21371
|
|
64
|
-
tryton/data/locale/id/LC_MESSAGES/tryton.mo,sha256=
|
|
64
|
+
tryton/data/locale/id/LC_MESSAGES/tryton.mo,sha256=rIH1gafZpMH9zEBl0mOyhzg_UQQK5QFoveM2a_LxUKM,6983
|
|
65
65
|
tryton/data/locale/id/LC_MESSAGES/tryton.po,sha256=NAjfNy1rU74psadAlT2c9_XJlvAjFDJJnR-EgSE9NuQ,16323
|
|
66
|
-
tryton/data/locale/it/LC_MESSAGES/tryton.mo,sha256=
|
|
66
|
+
tryton/data/locale/it/LC_MESSAGES/tryton.mo,sha256=T_OLg3Gqw-dQPZnYC_O8bpF_8KH-SaMPir4kTrEtZjg,15005
|
|
67
67
|
tryton/data/locale/it/LC_MESSAGES/tryton.po,sha256=4HInaacBQtJ_B7wYtfWopXRgE7me0rGoRkwqBX-5feE,20253
|
|
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=T0797kLm2YwpTiqD4x9qvUpr8QlIJaKwyu1Dqiih6U8,18359
|
|
71
71
|
tryton/data/locale/lo/LC_MESSAGES/tryton.po,sha256=ferjyzz0m5g9IaY5XADhKX9H1CbgUCJ7hvmiA-p3quM,27885
|
|
72
|
-
tryton/data/locale/lt/LC_MESSAGES/tryton.mo,sha256=
|
|
72
|
+
tryton/data/locale/lt/LC_MESSAGES/tryton.mo,sha256=WCiJJ-sclwlKGwRdMVhYH5Q5S7k97KL5ubk9uNxAOjU,16169
|
|
73
73
|
tryton/data/locale/lt/LC_MESSAGES/tryton.po,sha256=4EBCbYWzWE8byLKzM-MBHZX5IpxSPA_pZXIIYa6_EuM,21377
|
|
74
|
-
tryton/data/locale/nl/LC_MESSAGES/tryton.mo,sha256=
|
|
74
|
+
tryton/data/locale/nl/LC_MESSAGES/tryton.mo,sha256=0DMYU4gaBJ8mGT_ktXstqoxqv5cFbfY74Vp63ICxup0,20094
|
|
75
75
|
tryton/data/locale/nl/LC_MESSAGES/tryton.po,sha256=0s3fF6Z-iFA2d0edwXbettt0DXT7ma1t85bIyx9GKcE,21267
|
|
76
|
-
tryton/data/locale/pl/LC_MESSAGES/tryton.mo,sha256=
|
|
76
|
+
tryton/data/locale/pl/LC_MESSAGES/tryton.mo,sha256=2nsA4plEC_pJuLtrhOkomRz5Tmlzd8tyUXY2MKyUrhQ,20027
|
|
77
77
|
tryton/data/locale/pl/LC_MESSAGES/tryton.po,sha256=ZqML4BVEpjW--6em7avT6R3ozhZ6yujU__aCiN9ad5I,21139
|
|
78
|
-
tryton/data/locale/pt/LC_MESSAGES/tryton.mo,sha256=
|
|
78
|
+
tryton/data/locale/pt/LC_MESSAGES/tryton.mo,sha256=S25at5DYVGkEBLjtYlmL2_Sw5ZBxJbhS62cD3w86b-M,15086
|
|
79
79
|
tryton/data/locale/pt/LC_MESSAGES/tryton.po,sha256=h-u2CKqxAH5wwaKVFpn01eGl4PVZh8TUc5XmUol07_Q,20852
|
|
80
|
-
tryton/data/locale/ro/LC_MESSAGES/tryton.mo,sha256=
|
|
80
|
+
tryton/data/locale/ro/LC_MESSAGES/tryton.mo,sha256=rLYJzW80IJ7KNI4mi2NguyCWh474-TuCzPVi706ZIZ0,19655
|
|
81
81
|
tryton/data/locale/ro/LC_MESSAGES/tryton.po,sha256=5dBTi5a9Swv_nEE8kDgJLkMAcBecyRGz_0jJvAg_AQI,21203
|
|
82
|
-
tryton/data/locale/ru/LC_MESSAGES/tryton.mo,sha256=
|
|
82
|
+
tryton/data/locale/ru/LC_MESSAGES/tryton.mo,sha256=jnRbfr-Ky2FVdoW4R_U__BO4roQ39IUL3r6kBLRJlHI,9949
|
|
83
83
|
tryton/data/locale/ru/LC_MESSAGES/tryton.po,sha256=va6tGFexLon4K4jI58PONl0U7M8RSEuVpNHiw9LI010,22823
|
|
84
|
-
tryton/data/locale/sl/LC_MESSAGES/tryton.mo,sha256=
|
|
84
|
+
tryton/data/locale/sl/LC_MESSAGES/tryton.mo,sha256=8E-WVRzJVOgYf-gP1ODCaW27fvvY0l4fQoerhizcUD8,18877
|
|
85
85
|
tryton/data/locale/sl/LC_MESSAGES/tryton.po,sha256=CvpI-6Qeva9QvQimZdp8RtwMHeTxNemVkPce3ciXcNY,20622
|
|
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=bieLzyuMmBcxKtaPY5aij8aj_0lJ1aGSjycARNdEVwc,14961
|
|
88
|
-
tryton/data/locale/uk/LC_MESSAGES/tryton.mo,sha256=
|
|
88
|
+
tryton/data/locale/uk/LC_MESSAGES/tryton.mo,sha256=z-7-Rk9AidaysZapik5uFqoaztzF-mqZLKhfAZyEl1k,22925
|
|
89
89
|
tryton/data/locale/uk/LC_MESSAGES/tryton.po,sha256=6DKNBLF41uca43PF7tIgDZTqCdgjulKlyNAGX2_f4HE,25664
|
|
90
|
-
tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo,sha256=
|
|
90
|
+
tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo,sha256=MXRDlGUiCEdfkNV7OJDikyzg7jwhppMosLIVR58pgqM,18082
|
|
91
91
|
tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po,sha256=db_asTst_1FNASDEXSY41maPSK1Um8M_pORhABWjFyo,19854
|
|
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=cRSUeUx0sKccJUgor2DtiPdiH3qkklzR_A7V9dP1h3E,42451
|
|
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=Kt67oXkxdmfvikmqXTEZQV4K-VBi7KUeUEkiI1aOGs8,18391
|
|
191
|
-
tryton/gui/window/view_form/model/record.py,sha256=
|
|
191
|
+
tryton/gui/window/view_form/model/record.py,sha256=bOLwmju0Z3Cn-L52HnIMILHK2nsUmmb5LIrbiKwBhX4,29164
|
|
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=kcxIIpNAWyYsCx3zLrAdq-pshyK69MKlqMplpa_-1yc,53634
|
|
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=wy4DdNbD8nkWJNmRSQnGYewAzKrqdfmi7BhXUKo0x08,52855
|
|
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=J1f6kjd9ppNckSU_8CkmFoB2QwpmNmA495Rt99xlWBY,43880
|
|
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.2.
|
|
246
|
-
tryton-7.2.
|
|
247
|
-
tryton-7.2.
|
|
248
|
-
tryton-7.2.
|
|
249
|
-
tryton-7.2.
|
|
250
|
-
tryton-7.2.
|
|
245
|
+
tryton-7.2.12.data/scripts/tryton,sha256=nVzTlvIjRfxC9ZwrgPATVFOzMxrutjFeAS6CuU0g9Ds,2098
|
|
246
|
+
tryton-7.2.12.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
|
|
247
|
+
tryton-7.2.12.dist-info/METADATA,sha256=_KtqzoG013BfgYbdEYjuVnkjuXZRubj2cmBHlsi3j50,2546
|
|
248
|
+
tryton-7.2.12.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
249
|
+
tryton-7.2.12.dist-info/top_level.txt,sha256=7l30wN15bNakY7BPm2TEO79_XxvmYpkJONTGR_dTTOU,7
|
|
250
|
+
tryton-7.2.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|