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

how to validate a vendor by checking whaether the vendors associated with the product is the vendor given in purchase order in odoo12 community version

please help

頭像
捨棄
最佳答案

Hai,

from odoo import api, fields, models
from odoo.exceptions import UserError


class VendorValidate(models.Model):
    _inherit = 'purchase.order'
   
    @api.multi
    def _add_supplier_to_product(self) :
        vendor_list=[]
        for order in self:
            for line in order.order_line:
                if order.partner_id.id not in line.product_id.variant_seller_ids.mapped('name.id'):
                    vendor_list.append(line.product_id.name)       
            else:
                 if vendor_list:
                    product_names = ', '.join(vendor_list)
                    raise UserError("Please make sure "+"["+product_names+"]"+" has vendor "+"["+order.partner_id.name+"]")             
 
                I think it works for u..

                Check.

Thanks
             

頭像
捨棄
最佳答案

Hi,

Write an on-change function for the product in the order lines and check whether the selected vendor is the vendor specified inside the product and do accordingly.


Another option available is to filter the products based on the selected vendor in the purchase order.

Thanks

頭像
捨棄