mirror of
https://github.com/novoid/guess-filename.py.git
synced 2026-02-16 13:24:15 +00:00
Gehaltsabrechnung r
This commit is contained in:
parent
0af4c80ade
commit
c1b8257140
1 changed files with 8 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
PROG_VERSION = u"Time-stamp: <2020-11-21 19:13:55 vk>"
|
||||
PROG_VERSION = u"Time-stamp: <2021-05-30 17:16:29 vk>"
|
||||
|
||||
|
||||
# TODO:
|
||||
|
|
@ -608,6 +608,13 @@ class GuessFilename(object):
|
|||
"€ -- " + ' '.join(self.adding_tags(tags, ['scan', 'infonova'])) + \
|
||||
".pdf"
|
||||
|
||||
# 2021-05-30 Lohn- Gehaltsabrechnung Februar 12,34 EUR -- scan rise.pdf
|
||||
if self.contains_all_of(oldfilename, ["Gehalt", "rise"]) and self.has_euro_charge(oldfilename) and datetimestr:
|
||||
return datetimestr + \
|
||||
" Lohn- Gehaltsabrechnung " + self.get_euro_charge(oldfilename) + \
|
||||
"€ -- " + ' '.join(self.adding_tags(tags, ['scan', 'rise'])) + \
|
||||
".pdf"
|
||||
|
||||
# 2012-05-26T22.25.12_IMAG0861 Rage Ergebnis - MITSPIELER -- games.jpg
|
||||
if self.contains_one_of(basefilename, ["Hive", "Rage", "Stratego"]) and \
|
||||
extension.lower() == 'jpg' and not self.has_euro_charge(oldfilename):
|
||||
|
|
|
|||
Loading…
Reference in a new issue