This commit is contained in:
parent
94a3a517c7
commit
e67c1aa9f3
@ -170,15 +170,15 @@ class PricingService:
|
|||||||
|
|
||||||
# Original markup bands
|
# Original markup bands
|
||||||
markup_bands = {
|
markup_bands = {
|
||||||
2.53: (Decimal('0.01'), Decimal('0.50')),
|
Decimal('2.53'): (Decimal('0.01'), Decimal('0.50')),
|
||||||
1.42: (Decimal('0.51'), Decimal('1.00')),
|
Decimal('1.42'): (Decimal('0.51'), Decimal('1.00')),
|
||||||
1.29: (Decimal('1.01'), Decimal('3.00')),
|
Decimal('1.29'): (Decimal('1.01'), Decimal('3.00')),
|
||||||
1.17: (Decimal('3.01'), Decimal('20.00')),
|
Decimal('1.17'): (Decimal('3.01'), Decimal('20.00')),
|
||||||
1.07: (Decimal('20.01'), Decimal('35.00')),
|
Decimal('1.07'): (Decimal('20.01'), Decimal('35.00')),
|
||||||
1.05: (Decimal('35.01'), Decimal('50.00')),
|
Decimal('1.05'): (Decimal('35.01'), Decimal('50.00')),
|
||||||
1.03: (Decimal('50.01'), Decimal('100.00')),
|
Decimal('1.03'): (Decimal('50.01'), Decimal('100.00')),
|
||||||
1.02: (Decimal('100.01'), Decimal('200.00')),
|
Decimal('1.02'): (Decimal('100.01'), Decimal('200.00')),
|
||||||
1.01: (Decimal('200.01'), Decimal('1000.00'))
|
Decimal('1.01'): (Decimal('200.01'), Decimal('1000.00'))
|
||||||
}
|
}
|
||||||
|
|
||||||
# Adjust markups if quantity is high
|
# Adjust markups if quantity is high
|
||||||
|
Loading…
x
Reference in New Issue
Block a user