IO-878 move tax buttons on bill enter.

This commit is contained in:
Patrick Fic
2021-04-12 14:53:47 -07:00
parent b7c3166fab
commit fbb170491b
2 changed files with 61 additions and 45 deletions

View File

@@ -46,8 +46,20 @@ const BillLineSearchSelect = (
line_desc={item.line_desc}
part_qty={item.part_qty}
>
<div className="imex-flex-row">
<div style={{ flex: 1 }}>{item.line_desc}</div>
<div
className="imex-flex-row"
style={{ flexWrap: "nowrap", width: "100%" }}
>
<div
style={{
flex: 1,
whiteSpace: "nowrap",
overflow: "hidden",
textOverflow: "ellipsis",
}}
>
{item.line_desc}
</div>
{item.oem_partno ? (
<Tag color="blue">{item.oem_partno}</Tag>
) : null}