如何在OpenERP中调用Python脚本?

时间:2013-09-30 21:51:27

标签: python openerp account invoice

在我的国家,法律要求每个电子发票都包含一个名为“控制代码”的字段。

控制代码由一系列计算和算法使用发票日期,发票编号和一些自定义字段计算。

现在我已经有了一个生成控制代码的Python脚本,但它是一个独立的脚本,需要您手动插入变量。

我真的想在OpenERP模块中使用这个脚本。我希望脚本能够:

  1. 验证发票(包含所有必填字段)

  2. 使用Python脚本的结果填充发票上的控制代码字段。

  3. 确保发票已经过验证,并且现场控制代码存储在发票中。

1 个答案:

答案 0 :(得分:1)

使用函数字段解决此问题。

_inherit = 'account.invoice'

def generate_control_code(self, cr, uid, ids, field_name, arg, context=None)
# ids - Invoice ids
# filed_name - Name of the field. In this case 'control_code'
# Return result format {id'_1_': value'_1_', id'_2_': value'_2_',...}.
....
....
....
    return result


_columns = {

    'control_code': fields.function(generate_control_code, type='char', string='Control Code', method=True),

}

有关详细信息,请查看此文档链接http://www.theopensourcerer.com/2012/12/how-to-install-openerp-7-0-on-ubuntu-12-04-lts/