Odoo 11.我无法在product.template模型中创建新字段

时间:2018-02-22 02:45:05

标签: python-3.x odoo odoo-11

我是Odoo的新编程,我需要在product.template模型中添加一个计算字段,然后该字段将用于在视图中使用“domain”进行过滤。

问题是我不知道为什么,该字段没有被创建。

我到处搜索,我似乎做的是正确的顺序,但肯定是我做错了。

__初始化__。PY

# -*- coding: utf-8 -*-
from . import models

models \ __init __。py

# -*- coding: utf-8 -*-
from . import punto_pedido

模型\ punto_pedido.py

# -*- coding: utf-8 -*-
from odoo import api, fields, models, _

class Punto_Pedido(models.Model):
_inherit = "product.template"
x_punto_pedido = fields.Boolean(compute='_CalcularPunto', string='Esta en punto de pedido')

@api.one
def _CalcularPunto(self):
self.x_punto_pedido = True

我希望你能帮助我

非常感谢

原始代码: enter link description here

Brach:dev_001

0 个答案:

没有答案