Ir al contenido
Menú
Se marcó esta pregunta
6 Respuestas
17225 Vistas

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
Mejor respuesta

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'])]

Mejor respuesta
_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

Mejor respuesta

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

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
4
jun 24
6615
2
dic 23
2337
4
mar 15
11696
2
mar 15
9052
1
mar 15
8319