[MOD] Splitted mass_editing.py into two files
parent
89dcf08a1e
commit
9e24c6fc35
|
@ -20,4 +20,5 @@
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
from . import mass_editing
|
from . import ir_model_fields
|
||||||
|
from . import mass_object
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
# This module uses OpenERP, Open Source Management Solution Framework.
|
||||||
|
# Copyright (C):
|
||||||
|
# 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||||
|
#
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
from openerp.osv import orm
|
||||||
|
|
||||||
|
|
||||||
|
class IrModelFields(orm.Model):
|
||||||
|
_inherit = 'ir.model.fields'
|
||||||
|
|
||||||
|
def search(
|
||||||
|
self, cr, uid, args, offset=0, limit=0, order=None, context=None,
|
||||||
|
count=False):
|
||||||
|
model_domain = []
|
||||||
|
for domain in args:
|
||||||
|
if domain[0] == 'model_id' and domain[2]\
|
||||||
|
and type(domain[2]) != list:
|
||||||
|
model_domain += [(
|
||||||
|
'model_id', 'in', map(int, domain[2][1:-1].split(',')))]
|
||||||
|
else:
|
||||||
|
model_domain.append(domain)
|
||||||
|
return super(IrModelFields, self).search(
|
||||||
|
cr, uid, model_domain, offset=offset, limit=limit, order=order,
|
||||||
|
context=context, count=count)
|
|
@ -25,25 +25,6 @@ from openerp.osv import orm, fields
|
||||||
from openerp.tools.translate import _
|
from openerp.tools.translate import _
|
||||||
|
|
||||||
|
|
||||||
class IrModelFields(orm.Model):
|
|
||||||
_inherit = 'ir.model.fields'
|
|
||||||
|
|
||||||
def search(
|
|
||||||
self, cr, uid, args, offset=0, limit=0, order=None, context=None,
|
|
||||||
count=False):
|
|
||||||
model_domain = []
|
|
||||||
for domain in args:
|
|
||||||
if domain[0] == 'model_id' and domain[2]\
|
|
||||||
and type(domain[2]) != list:
|
|
||||||
model_domain += [(
|
|
||||||
'model_id', 'in', map(int, domain[2][1:-1].split(',')))]
|
|
||||||
else:
|
|
||||||
model_domain.append(domain)
|
|
||||||
return super(IrModelFields, self).search(
|
|
||||||
cr, uid, model_domain, offset=offset, limit=limit, order=order,
|
|
||||||
context=context, count=count)
|
|
||||||
|
|
||||||
|
|
||||||
class MassObject(orm.Model):
|
class MassObject(orm.Model):
|
||||||
_name = "mass.object"
|
_name = "mass.object"
|
||||||
|
|
Loading…
Reference in New Issue