2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-18 18:56:31 +00:00

Part and company images return the 'no image found' image if they do not have an image

This commit is contained in:
Oliver Walters
2019-05-09 00:39:51 +10:00
parent 4c4df194fa
commit 94ad378b9d
2 changed files with 4 additions and 2 deletions

View File

@@ -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):