mirror of
https://github.com/inventree/InvenTree.git
synced 2025-07-13 08:21:26 +00:00
Add context flag to enable editing mode
- pass ?edit=1 to the BOM - Display page differently if in editing mode -
This commit is contained in:
@ -288,6 +288,7 @@ class Part(models.Model):
|
||||
header.append('Part')
|
||||
header.append('Description')
|
||||
header.append('Quantity')
|
||||
header.append('Note')
|
||||
|
||||
lines.append(header)
|
||||
|
||||
@ -297,6 +298,7 @@ class Part(models.Model):
|
||||
line.append(it.sub_part.name)
|
||||
line.append(it.sub_part.description)
|
||||
line.append(it.quantity)
|
||||
line.append(it.note)
|
||||
|
||||
lines.append([str(x) for x in line])
|
||||
|
||||
|
Reference in New Issue
Block a user