[Erp5-dev] problems while creating document objects

Łukasz Nowak lukasz.nowak at ventis.com.pl
Tue Sep 30 16:50:50 CEST 2008


Hello,

As a workaround one can use such external method in  Workflow Tool
context:

def
WorkflowType_moveWorkflowToFront(self,workflow_id='document_publication_workflow'):
  modified_type_list = []
  for portal_type in self._chains_by_type.iterkeys():
    chains = self._chains_by_type[portal_type]
    if workflow_id in chains:
      chains = list(chains)
      chains = [q for q in chains if q !=workflow_id]
      chains.insert(0,workflow_id)
      self._chains_by_type[portal_type] = tuple(chains)
      modified_type_list.append(portal_type)
  get_transaction().commit()
  return modified_type_list

Regards,
Luke

On Tue, 2008-09-30 at 12:33 +0000, Łukasz Nowak wrote:
> Hello,
> 
> Just a short note - moving document_publication_workflow before
> processing_status_workflow on Text portal type workflow association
> workarounds this problem.
> 
> But I still do not know what is wrong. Does workflow order has issues
> while creating objects?
> 
> Regards,
> Luke
> 
> On Tue, 2008-09-30 at 12:07 +0000, Łukasz Nowak wrote:
> > Hello,
> > 
> > I have user 'base_employee. This user security is defined by its
> > Assignment to function/base_employee, which codification BASEMPL.
> > 
> > My document_module has local roles Auditor and Author for BASEMPL.
> > 
> > Portal type Text has no roles.
> > 
> > So - using this user I'm navigating into document_module, I see list of
> > portal types to add. I'm adding Text. Attached traceback appears.
> > 
> > Any clues? Ideas? Is that case unit tested somewhere? Maybe I missed
> > something. Used revision is 23313.
> > 
> > Regards,
> > Luke
> > 
> > PS, more background:
> > 
> > I've found out, that Owner role in document_publication_workflow have
> > just enough permissions for normal users to add documents and send them
> > to publication. As I'd like to have special DMS Manager and provide
> > security to objects by function, I'd like to avoid set more roles on
> > DMS-related (Text in this case) portal types.
> > 
> > _______________________________________________
> > Erp5-dev mailing list
> > Erp5-dev at erp5.org
> > http://mail.nexedi.com/mailman/listinfo/erp5-dev
-- 
Łukasz Nowak R&D Ventis http://www.ventis.com.pl/
tel: +48 32 768 16 85 fax: +48 32 392 10 61
``Use the Source, Luke...'' I am only craftsman.





More information about the Erp5-dev mailing list