mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: trigger move and rename after custom fields saved (#7927)
This commit is contained in:
parent
4e849b545a
commit
6292296876
@ -364,9 +364,17 @@ class CannotMoveFilesException(Exception):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
@receiver(models.signals.post_save, sender=CustomFieldInstance)
|
||||||
@receiver(models.signals.m2m_changed, sender=Document.tags.through)
|
@receiver(models.signals.m2m_changed, sender=Document.tags.through)
|
||||||
@receiver(models.signals.post_save, sender=Document)
|
@receiver(models.signals.post_save, sender=Document)
|
||||||
def update_filename_and_move_files(sender, instance: Document, **kwargs):
|
def update_filename_and_move_files(
|
||||||
|
sender,
|
||||||
|
instance: Document | CustomFieldInstance,
|
||||||
|
**kwargs,
|
||||||
|
):
|
||||||
|
if isinstance(instance, CustomFieldInstance):
|
||||||
|
instance = instance.document
|
||||||
|
|
||||||
def validate_move(instance, old_path, new_path):
|
def validate_move(instance, old_path, new_path):
|
||||||
if not os.path.isfile(old_path):
|
if not os.path.isfile(old_path):
|
||||||
# Can't do anything if the old file does not exist anymore.
|
# Can't do anything if the old file does not exist anymore.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user