mirror of
https://gitlab.com/flectra-hq/flectra.git
synced 2026-08-19 01:34:43 -05:00
14 lines
484 B
Python
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'})
|