[FIX] caldav

bzr revid: hmo@tinyerp.com-20100414073925-3qo19wm9dnv2a34t
This commit is contained in:
Harry (Open ERP) 2010-04-14 13:09:25 +05:30
parent f2311d256f
commit 4cc0c97a1b
1 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ class node_calendar_collection(nodes.node_dir):
ctx = self.context.context.copy()
ctx.update(self.dctx)
ids = [self.dir_id]
res = collection_obj.get_schedule_inbox_URL(cr, uid, ids, context=ctx)
res = dirobj.get_schedule_inbox_URL(cr, uid, ids, context=ctx)
doc = xml.dom.minidom.getDOMImplementation().createDocument(None, 'href', None)
href = doc.documentElement
@ -203,7 +203,7 @@ class node_calendar_collection(nodes.node_dir):
ctx = self.context.context.copy()
ctx.update(self.dctx)
ids = [self.dir_id]
res = collection_obj.get_schedule_outbox_URL(cr, uid, ids, context=ctx)
res = dirobj.get_schedule_outbox_URL(cr, uid, ids, context=ctx)
doc = xml.dom.minidom.getDOMImplementation().createDocument(None, 'href', None)
href = doc.documentElement