Files
flectra/addons/account_edi_extended/__init__.py
T

14 lines
484 B
Python

# -*- encoding: utf-8 -*-
from . import models
def account_edi_block_level(cr, registery):
''' The default value for blocking_level is 'error', but without this module,
the behavior is the same as a blocking_level of 'warning' so we need to set
all documents in error.
'''
from flectra import api, SUPERUSER_ID
env = api.Environment(cr, SUPERUSER_ID, {})
env['account.edi.document'].search([('error', '!=', False)]).write({'blocking_level': 'warning'})