mirror of
https://github.com/inventree/InvenTree.git
synced 2025-09-17 08:01:33 +00:00
Fix rendering of BOM table view
- Edit and delete rows now works
This commit is contained in:
@@ -337,7 +337,7 @@ class BomItem(models.Model):
|
||||
"""
|
||||
|
||||
def get_absolute_url(self):
|
||||
return reverse('bom-detail', kwargs={'pk': self.id})
|
||||
return reverse('bom-item-detail', kwargs={'pk': self.id})
|
||||
|
||||
# A link to the parent part
|
||||
# Each part will get a reverse lookup field 'bom_items'
|
||||
|
Reference in New Issue
Block a user