I am trying to implement a new feature, i want to add a lifespan or an expiration date option to each document version (some documents will have such feature not necessarily all), say it's set to 90 days. a notification should be sent to some users after 90 days, and the document should be marked as outdated. until the document maintainer login and updates the document.
Mr.rosario already pointed me to add a separate app to manage DocumentType to lifespan setting but this does not exactly fit my needs.
so i decided to modify the DocumentVersion model i added:
expirationDate = models.DateTimeField(blank=True, null=True, verbose_name=_('Expiration Date'))
versionNumber = models.IntegerField(_('Version Number'), unique=True)
class DocumentVersionListView(SingleObjectListView):
Progress so far:
TODO:
--
---
You received this message because you are subscribed to a topic in the Google Groups "Mayan EDMS" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mayan-edms/kh8piRUB-sM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mayan-edms+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and all its topics, send an email to mayan-edms+unsubscribe@googlegroups.com.