Skip to Content
Menú
This question has been flagged
6 Respostes
17244 Vistes

I want to make a field Unique with combination of two fields and it does not show on form

class shipment_charge(osv.osv):
    _name = 'shipment.charge'
    _columns = {
        'type': fields.selection(list_type, 'Type', required=True, ),
        'mode': fields.selection(list_mode, 'Mode', required=True, help=""),
        'transit_time': fields.selection(list_transit_time, 'Transit Time', required=True, help=""),
        'charges_key':  fields.char('charges_key', size=64, help=""),
    }

    _sql_constraints = [
        ('charges_key_unique', 'unique (type, mode)', 'The Charges key is not Unique')
    ]
Avatar
Descartar
Best Answer

use this

def check_existance(self, cr, uid, ids, context=None):
        self_obj = self.browse(cr, uid, ids[0], context=context)
        field1 = self_obj.field1
        field2 = self_obj.field2
        search_ids = self.search(cr, uid, [('field1', '=', field1),('field2', '=' , field2)], context=context)
        res = True
        if len(search_ids) > 1:
            res = False
        return res

and add

_constraints = [(check_existance,'Combination already exist', ['field1'])]
Avatar
Descartar
Autor

still giving error ValueError: need more than 1 value to unpack

use

_constraints = [(check_existance,'Combination already exist', ['field1','field2'])]

Best Answer
_sql_constraints = [
        ('name_uniq', 'unique(type, mode)', 'The Charges Key is not Unique!'),
        ]

Please replace this instead of that

Avatar
Descartar
Autor

ERROR erp_dev openerp.netsvc: Constraint Error The Charges key is not Unique

its freezing the screen not rasing a error message

Best Answer

Below the code of a server action which concatenet 2 or more field into a new one

Avatar
Descartar
Related Posts Respostes Vistes Activitat
4
de juny 24
6619
2
de des. 23
2346
4
de març 15
11704
2
de març 15
9053
1
de març 15
8324