2
0
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:
Oliver Walters
2019-04-15 18:32:15 +10:00
parent 258555a813
commit ec98f7829e
3 changed files with 146 additions and 55 deletions

View File

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