blob: de362ffd485e7cea7c5e8842edf5cd6ef5f230a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- 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 odoo import api, SUPERUSER_ID
env = api.Environment(cr, SUPERUSER_ID, {})
env['account.edi.document'].search([('error', '!=', False)]).write({'blocking_level': 'warning'})
|