mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
Add StockItemLabel templates
This commit is contained in:
parent
01e27a0d59
commit
e561b3a4fc
@ -27,7 +27,70 @@ class LabelConfig(AppConfig):
|
|||||||
if they do not already exist
|
if they do not already exist
|
||||||
"""
|
"""
|
||||||
|
|
||||||
pass
|
try:
|
||||||
|
from .models import StockItemLabel
|
||||||
|
except:
|
||||||
|
# Database might not by ready yet
|
||||||
|
return
|
||||||
|
|
||||||
|
src_dir = os.path.join(
|
||||||
|
os.path.dirname(os.path.realpath(__file__)),
|
||||||
|
'templates',
|
||||||
|
'stockitem',
|
||||||
|
)
|
||||||
|
|
||||||
|
dst_dir = os.path.join(
|
||||||
|
settings.MEDIA_ROOT,
|
||||||
|
'label',
|
||||||
|
'inventree',
|
||||||
|
'stockitem',
|
||||||
|
)
|
||||||
|
|
||||||
|
if not os.path.exists(dst_dir):
|
||||||
|
logger.info(f"Creating missing directory: '{dst_dir}'")
|
||||||
|
os.makedirs(dst_dir, exist_ok=True)
|
||||||
|
|
||||||
|
labels = [
|
||||||
|
{
|
||||||
|
'file': 'qr.html',
|
||||||
|
'name': 'QR Code',
|
||||||
|
'description': 'Simple QR code label',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
for label in labels:
|
||||||
|
|
||||||
|
filename = os.path.join(
|
||||||
|
'label',
|
||||||
|
'inventree',
|
||||||
|
'stockitem',
|
||||||
|
label['file'],
|
||||||
|
)
|
||||||
|
|
||||||
|
# Check if the file exists in the media directory
|
||||||
|
src_file = os.path.join(src_dir, label['file'])
|
||||||
|
dst_file = os.path.join(settings.MEDIA_ROOT, filename)
|
||||||
|
|
||||||
|
if not os.path.exists(dst_file):
|
||||||
|
logger.info(f"Copying label template '{dst_file}'")
|
||||||
|
shutil.copyfile(src_file, dst_file)
|
||||||
|
|
||||||
|
# Check if a label matching the template already exists
|
||||||
|
if StockItemLabel.objects.filter(label=filename).exists():
|
||||||
|
continue
|
||||||
|
|
||||||
|
logger.info(f"Creating entry for StockItemLabel '{label['name']}'")
|
||||||
|
|
||||||
|
try:
|
||||||
|
StockItemLabel.objects.create(
|
||||||
|
name=label['name'],
|
||||||
|
description=label['description'],
|
||||||
|
label=filename,
|
||||||
|
filters='',
|
||||||
|
enabled=True
|
||||||
|
)
|
||||||
|
except IntegrityError:
|
||||||
|
pass
|
||||||
|
|
||||||
def create_stock_location_labels(self):
|
def create_stock_location_labels(self):
|
||||||
"""
|
"""
|
||||||
|
16
InvenTree/label/templates/stockitem/qr.html
Normal file
16
InvenTree/label/templates/stockitem/qr.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<style>
|
||||||
|
@page {
|
||||||
|
width: 24mm;
|
||||||
|
height: 24mm;
|
||||||
|
padding: 1mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
.qr {
|
||||||
|
margin: 2px;
|
||||||
|
width: 22mm;
|
||||||
|
height: 22mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<img class='qr' src="{{ label_tools.qr_code(item.barcode) }}"/>
|
Loading…
x
Reference in New Issue
Block a user