Initial commit

This commit is contained in:
2023-01-20 15:25:20 +01:00
commit e308314fbb
52 changed files with 620 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<snippet>
<content><![CDATA[
@classmethod
def write(cls, *args):
actions = iter(args)
args = []
for records, values in zip(actions, actions):
${2:values['example'] = True # add/del/modify items from values}
args.extend((records, values))
super().write(*args)
]]></content>
<tabTrigger>tryton_write</tabTrigger>
<scope>source.python </scope>
<description>Tryton: write() reimplementation</description>
</snippet>