improvement in the server action

bzr revid: mga@tinyerp.com-20081215130008-9aecetcvx93vav2w
This commit is contained in:
Mantavya Gajjar 2008-12-15 18:30:08 +05:30
parent c0e1fc3452
commit 66a6c4d10a
2 changed files with 6 additions and 1 deletions

View File

@ -365,6 +365,11 @@ server_object_lines()
#
class actions_server(osv.osv):
def fields_view_get(self, cr, user, view_id=None, view_type='form', context=None, toolbar=False):
res = super(actions_server, self).fields_view_get(cr, user, view_id, view_type, context, toolbar)
#print 'RES : ',res
return res
def _select_signals(self, cr, uid, context={}):
cr.execute("select distinct t.signal as key, t.signal || ' - [ ' || w.osv || ' ] ' as val from wkf w, wkf_activity a, wkf_transition t "\
" where w.id = a.wkf_id " \

View File

@ -263,7 +263,7 @@ class xmlrpc(object):
class GenericXMLRPCRequestHandler:
def _dispatch(self, method, params):
#print 'TERP-CALL : ',method, params
# print 'TERP-CALL : ',method, params
import traceback
try:
n = self.path.split("/")[-1]