mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 21:25:42 +00:00 
			
		
		
		
	Part and company images return the 'no image found' image if they do not have an image
This commit is contained in:
		| @@ -10,6 +10,7 @@ import os | ||||
| from django.db import models | ||||
| from django.urls import reverse | ||||
| from django.conf import settings | ||||
| from django.contrib.staticfiles.templatetags.staticfiles import static | ||||
|  | ||||
|  | ||||
| def rename_company_image(instance, filename): | ||||
| @@ -85,7 +86,7 @@ class Company(models.Model): | ||||
|         if self.image: | ||||
|             return os.path.join(settings.MEDIA_URL, str(self.image.url)) | ||||
|         else: | ||||
|             return '' | ||||
|             return static('/img/blank_image.png') | ||||
|  | ||||
|     @property | ||||
|     def part_count(self): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user