تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
6743 أدوات العرض

I got to this error showing as

Odoo Warning - Validation Error

The operation cannot be completed, probably due to the following:-
                deletion: you may be trying to delete a record while other records still reference it-
                creation/update: a mandatory field is not correctly set

[object with reference: cname - cname]

Here is the small line of code can anyone point that and say me the issue regarding this and how it can be solved
 
class productSpecificationNew(models.Model):        
        _name= 'product.specification.new'                
        name = fields.Char()        
        pname= fields.Many2one('product.product',string= 'Product Name')        
        cname= fields.Many2many('res.partner', string= 'Customer Name')        
        spec_table= fields.One2many('specification.table','spec')

class productSpecificationtable(models.Model):        
        _name = 'specification.table'                
        spec= fields.Many2one('product.specification',string= 'Specification')        
        parameter= fields.Char(string= 'Parameters')        
        perorval= fields.Float(string= '% or VALUE')        
        min= fields.Float(string= 'STD. Min.')        
        max= fields.Float(string= 'STD. Max.')        
        remarks= fields.Text(string= 'Remarks')


Thanks in Advance
.

الصورة الرمزية
إهمال

You should upvote the answer and mark it as answered as a "thank you".

أفضل إجابة

Hello, 

You try:  cname= fields.Many2many('res.partner', 'product_specification_partner_tb_rel', 'product_specification_id', 'partner_id', string= 'Customer Name').

Many2many will create table product_specification_partner_tb_rel with key product_specification_id, partner_id

Hope it will helps you.

Thanks,

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
فبراير 24
26
2
ديسمبر 19
9691
0
ديسمبر 19
4916
0
نوفمبر 19
4813
5
سبتمبر 19
12277