diff --git a/fields/ref.py b/fields/ref.py index 5ef7e08..576dff0 100644 --- a/fields/ref.py +++ b/fields/ref.py @@ -62,7 +62,7 @@ class Ref(Field): style=":'%s; %s' % (url('linkMany', bg=True), \ ztool.getButtonWidth(label))"/> - -
@@ -376,6 +378,8 @@ class Ref(Field): folder=zobj.getCreateFolder(); tiedClassName=ztool.getPortalType(field.klass); canWrite=not field.isBack and zobj.allows(field.writePermission); + mayUnlink=not isBack and canWrite and \ + field.getAttribute(zobj, 'unlink'); showPlusIcon=field.mayAdd(zobj); atMostOneRef=(field.multiplicity[1]==1) and (len(objects)<=1); addConfirmMsg=field.addConfirm and \ diff --git a/gen/mixins/__init__.py b/gen/mixins/__init__.py index 8752910..b96fd83 100644 --- a/gen/mixins/__init__.py +++ b/gen/mixins/__init__.py @@ -1180,7 +1180,7 @@ class BaseMixin: rq = self.getProductConfig().fakeRequest if not hasattr(rq, 'wrappers'): rq.wrappers = {} # Return the Appy wrapper if already present in the cache - uid = self.UID() + uid = self.id if uid in rq.wrappers: return rq.wrappers[uid] # Create the Appy wrapper, cache it in rq.wrappers and return it wrapper = self.wrapperClass(self) @@ -1559,4 +1559,11 @@ class BaseMixin: '''This method is a general hook for transfering processing of a request to a given field, whose name must be in the request.''' return self.getAppyType(self.REQUEST['name']).process(self) + + def onCall(self): + '''Calls a specific method on the corresponding wrapper.''' + self.allows('read', raiseError=True) + method = self.REQUEST['method'] + obj = self.appy() + return getattr(obj, method)() # ------------------------------------------------------------------------------ |