cancel
Showing results for 
Search instead for 
Did you mean: 

Displaying Approval Status of a Document

fitek
Champ in-the-making
Champ in-the-making
I'm new to Alfresco and took a document through an approval workflow, but can't figure out any simple way to see that this document has been approved!  This seems really basic.  I found this thread via the forum search:
http://forums.alfresco.com/forum/end-user-discussions/alfresco-share/approval-status-10242012-1406

But it's quite involved.

Was wondering if there is some "easy" way of display whether a document is approved, pending, or still in development, in its properties and/or the document library?
2 REPLIES 2

mitpatoliya
Star Collaborator
Star Collaborator
You need to do little bit of development for that.
Create one custom aspect with one property like wfstatus.
Create one rule which add that aspect with property value appropriately.

var props = new Array(1);
props["custom:wfstatus"] = "approved";
document.addAspect("custom:wfinfoaspect", props);

For showing it in the UI you need to add the config related to that aspect in the share-config-custom.xml
http://blogs.alfresco.com/wp/wabson/2010/02/25/adding-custom-aspect-support-in-alfresco-share/

janew
Champ in-the-making
Champ in-the-making
I find it bizzare that this is not an out-of-the-box requirement.  Yes it has the ability to do approvals, No, you wont be able to see it. 😕