mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Add new fields to BOM item hash
This commit is contained in:
parent
8caf6bad10
commit
abe1018abe
@ -2094,6 +2094,8 @@ class BomItem(models.Model):
|
|||||||
- Quantity
|
- Quantity
|
||||||
- Reference field
|
- Reference field
|
||||||
- Note field
|
- Note field
|
||||||
|
- Optional field
|
||||||
|
- Inherited field
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@ -2106,6 +2108,8 @@ class BomItem(models.Model):
|
|||||||
hash.update(str(self.quantity).encode())
|
hash.update(str(self.quantity).encode())
|
||||||
hash.update(str(self.note).encode())
|
hash.update(str(self.note).encode())
|
||||||
hash.update(str(self.reference).encode())
|
hash.update(str(self.reference).encode())
|
||||||
|
hash.update(str(self.optional).encode())
|
||||||
|
hash.update(str(self.inherited).encode())
|
||||||
|
|
||||||
return str(hash.digest())
|
return str(hash.digest())
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user