mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-16 20:15:44 +00:00
moved the special stuff into the inherited view
This commit is contained in:
@ -1586,3 +1586,11 @@ class LineItemPricing(PartPricing):
|
||||
return None
|
||||
else:
|
||||
return None
|
||||
|
||||
def get_quantity(self):
|
||||
""" Return set quantity in decimal format """
|
||||
qty = Decimal(self.request.GET.get('quantity', 1))
|
||||
if qty == 1:
|
||||
return Decimal(self.request.POST.get('quantity', 1))
|
||||
return qty
|
||||
|
||||
|
Reference in New Issue
Block a user