跳至內容
選單
此問題已被標幟
1 回覆
2480 瀏覽次數

In sales application, when creating a new quotation I am entering a specific pricelist and when I add a product the unit price is automatically updated to match the pricelist. I want to add a new feature where I check if the unit price is less than the price list (unit price changed manually) then I will request admin approval. How can I access the unit price in the one2many field here. Any help please?

頭像
捨棄
最佳答案

You can inherit the sales order lines model in the sales module and make a method with any of Odoo api decorations for example. @api.constrains or @api.onchange to notify the user with a ValidationError if he is not allowed to change the price


Example:

class SalesOrderLines(models.model):
    _inherit = 'sale.order.line'

    @api.constrains('unit_price')
    def _const_price(self):
        #your condition and raise ValidationError



Happy to help :) an upvote will be awesome



頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
6月 22
1593
1
4月 24
1342
1
10月 23
1469
1
5月 23
1992
0
9月 22
1972