You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to your documentation, running paperlessngx_postprocessor.py with the --tag Selector enables the preselection of the documents which will be processed.
This does not seem to work.
when looking into your code the filter method accepts the tag as an input, but does not process it
According to your documentation, running paperlessngx_postprocessor.py with the --tag Selector enables the preselection of the documents which will be processed.
This does not seem to work.
when looking into your code the filter method accepts the tag as an input, but does not process it
def get_documents_by_field_names(self, **fields): allowed_fields = {"correspondent": "correspondent__name__iexact", "document_type": "document_type__name__iexact", "storage_path": "storage_path__name__iexact", "added_year": "added__year", "added_month": "added__month", "added_day": "added_day", "asn": "archive_serial_number", "title": "title__iexact", "created_year": "created__year", "created_month": "created__month", "created_day": "created__day", }
I think here is something missing, but I could be wrong.
The text was updated successfully, but these errors were encountered: