Add fiat size to each order line label

fsp_feeds
Tyler Goodlet 2021-08-29 13:06:47 -04:00
parent 39d2cac3a6
commit 09fccdf8e5
2 changed files with 15 additions and 2 deletions

View File

@ -33,6 +33,7 @@ from ._anchors import (
right_axis,
# gpath_pin,
)
from ..calc import humanize
from ._label import Label
from ._style import hcolor, _font
@ -669,7 +670,9 @@ def order_line(
view=line.getViewBox(),
# display the order pos size, which is some multiple
# of the user defined base unit size
fmt_str=('units: {size:.{size_digits}f}'), # old
fmt_str=(
'{size:.{size_digits}f}u{fiat_text}'
),
color=line.color,
)
@ -677,9 +680,18 @@ def order_line(
line._labels.append(label)
def maybe_show_fiat_text(fields: dict) -> str:
fiat_size = fields.get('fiat_size')
if not fiat_size:
return ''
return f' -> ${humanize(fiat_size)}'
label.fields = {
'size': size,
'size_digits': 0,
'fiat_size': None,
'fiat_text': maybe_show_fiat_text,
}
label.orient_v = orient_v

View File

@ -212,7 +212,8 @@ class Allocator(BaseModel):
return {
'size': abs(round(order_size, ndigits=ld)),
'size_digits': ld
'size_digits': ld,
'fiat_size': round(order_size * price, ndigits=2),
}
def slots_used(