mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 13:15:43 +00:00 
			
		
		
		
	Merge pull request #734 from SchrodingersGat/migration-fix
Add error checking for thumbnail file migration
This commit is contained in:
		| @@ -31,6 +31,11 @@ class CompanyConfig(AppConfig): | |||||||
|  |  | ||||||
|                     if not os.path.exists(loc): |                     if not os.path.exists(loc): | ||||||
|                         print("InvenTree: Generating thumbnail for Company '{c}'".format(c=company.name)) |                         print("InvenTree: Generating thumbnail for Company '{c}'".format(c=company.name)) | ||||||
|  |                         try: | ||||||
|                             company.image.render_variations(replace=False) |                             company.image.render_variations(replace=False) | ||||||
|  |                         except FileNotFoundError: | ||||||
|  |                             print("Image file missing") | ||||||
|  |                             company.image = None | ||||||
|  |                             company.save() | ||||||
|         except (OperationalError, ProgrammingError): |         except (OperationalError, ProgrammingError): | ||||||
|             print("Could not generate Company thumbnails") |             print("Could not generate Company thumbnails") | ||||||
|   | |||||||
| @@ -30,6 +30,11 @@ class PartConfig(AppConfig): | |||||||
|                      |                      | ||||||
|                     if not os.path.exists(loc): |                     if not os.path.exists(loc): | ||||||
|                         print("InvenTree: Generating thumbnail for Part '{p}'".format(p=part.name)) |                         print("InvenTree: Generating thumbnail for Part '{p}'".format(p=part.name)) | ||||||
|  |                         try: | ||||||
|                             part.image.render_variations(replace=False) |                             part.image.render_variations(replace=False) | ||||||
|  |                         except FileNotFoundError: | ||||||
|  |                             print("Image file missing") | ||||||
|  |                             part.image = None | ||||||
|  |                             part.save() | ||||||
|         except (OperationalError, ProgrammingError): |         except (OperationalError, ProgrammingError): | ||||||
|             print("Could not generate Part thumbnails") |             print("Could not generate Part thumbnails") | ||||||
|   | |||||||
| @@ -16,7 +16,14 @@ def create_thumbnails(apps, schema_editor): | |||||||
|         for part in Part.objects.all(): |         for part in Part.objects.all(): | ||||||
|             # Render thumbnail for each existing Part  |             # Render thumbnail for each existing Part  | ||||||
|             if part.image: |             if part.image: | ||||||
|  |                 try: | ||||||
|                     part.image.render_variations() |                     part.image.render_variations() | ||||||
|  |                 except FileNotFoundError: | ||||||
|  |                     print("Missing image:", part.image()) | ||||||
|  |                     # The image is missing, so clear the field | ||||||
|  |                     part.image = None | ||||||
|  |                     part.save() | ||||||
|  |                      | ||||||
|     except (OperationalError, ProgrammingError): |     except (OperationalError, ProgrammingError): | ||||||
|         # Migrations have not yet been applied - table does not exist |         # Migrations have not yet been applied - table does not exist | ||||||
|         print("Could not generate Part thumbnails") |         print("Could not generate Part thumbnails") | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user