IO-3515 add client side polling for now, cost centers.

This commit is contained in:
Patrick Fic
2026-02-10 11:59:53 -08:00
parent c59acb1b72
commit 64454dce2a
4 changed files with 186 additions and 25 deletions

View File

@@ -210,6 +210,18 @@ export function BillEnterModalLinesComponent({
}),
formInput: () => <Input.TextArea disabled={disabled} autoSize />
},
{
title: t("billlines.fields.confidence"),
dataIndex: "confidence",
editable: true,
width: "4rem",
formItemProps: (field) => ({
key: `${field.index}confidence`,
name: [field.name, "confidence"],
label: t("billlines.fields.confidence")
}),
formInput: () => <Input disabled={disabled} />
},
{
title: t("billlines.fields.quantity"),
dataIndex: "quantity",