Added save command

This commit is contained in:
DiG 2022-02-06 02:44:39 +01:00
parent f3a7ab8ac4
commit d82268bd90
1 changed files with 8 additions and 2 deletions

View File

@ -410,11 +410,17 @@ def save( model, domains, recurse = False, force = False ):
to_browse = groupby_model( unique_models )
for mod in to_browse.keys():
print('loading %s %s' % (to_browse[mod].length, mod) )
print('loading %s %s' % (len(to_browse[mod]), mod) )
if mod in odoo.env:
try:
for inst in odoo.env[mod].browse( to_browse[mod] ):
print( inst.id, inst.name )
filename = json_path( mod, inst.id )
print( inst.id, inst.name, ' > ', filename )
# Write pretty print JSON data to file
with open( filename, "w") as write_file:
json.dump(data, write_file, indent=4)
print( "%s written" % (filename) )
except:
eprint('Model %s not found' % (mod) )
continue