在odoo 8中跟踪销售和成本价格的变化

时间:2017-02-20 12:31:12

标签: openerp odoo-8

我正在尝试通过继承product.product模型并更改price_liststandard_cost的跟踪可见性来跟踪 odoo 8 中的销售和成本价格变化,但不做任何更改。 任何提示请。

models.py:

from openerp.osv import osv, fields, expression
import openerp.addons.decimal_precision as dp


class product_template(osv.osv):

_name = 'product.template'
_inherit = 'product.template'


 _columns = {
    'list_price': fields.float('Sale Price',track_visibility='onchange', digits_compute=dp.get_precision('Product Price'),
                               help="Base price to compute the customer price. Sometimes called the catalog price."),

}

1 个答案:

答案 0 :(得分:1)

要跟踪更改,您应该添加更多选项,例如

您应该在模型中执行second question:

其次,在表单视图中添加一个聊天选项,如下所示

_inherit = ['mail.thread']