mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Added log output for date detected in document
This commit is contained in:
parent
07d06d9aee
commit
c74bb84c83
@ -219,11 +219,19 @@ class RasterisedDocumentParser(DocumentParser):
|
|||||||
if m is None:
|
if m is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return dateparser.parse(m.group(0),
|
date = dateparser.parse(m.group(0),
|
||||||
settings={'DATE_ORDER': self.DATE_ORDER,
|
settings={'DATE_ORDER': self.DATE_ORDER,
|
||||||
'PREFER_DAY_OF_MONTH': 'first',
|
'PREFER_DAY_OF_MONTH': 'first',
|
||||||
'RETURN_AS_TIMEZONE_AWARE': True})
|
'RETURN_AS_TIMEZONE_AWARE': True})
|
||||||
|
|
||||||
|
if date is not None:
|
||||||
|
self.log("info", "Detected document date " + date.strftime("%x") +
|
||||||
|
" based on string " + m.group(0))
|
||||||
|
else:
|
||||||
|
self.log("info", "Unable to detect date for document")
|
||||||
|
|
||||||
|
return date
|
||||||
|
|
||||||
|
|
||||||
def run_convert(*args):
|
def run_convert(*args):
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user