IO-958 IO-955 IO-954 Numerous UI fixes.

This commit is contained in:
Patrick Fic
2021-04-28 15:42:04 -07:00
parent ff32e7d79c
commit d265c1ae3a
4 changed files with 23 additions and 25138 deletions

View File

@@ -93,12 +93,21 @@ export default function PartsOrderModalComponent({
>
<Input />
</Form.Item>
{
// <Form.Item
// label={t("parts_orders.fields.db_price")}
// key={`${index}db_price`}
// name={[field.name, "db_price"]}
// >
// <CurrencyInput />
// </Form.Item>
}
<Form.Item
label={t("parts_orders.fields.db_price")}
key={`${index}db_price`}
name={[field.name, "db_price"]}
label={t("parts_orders.fields.quantity")}
key={`${index}quantity`}
name={[field.name, "quantity"]}
>
<CurrencyInput />
<InputNumber />
</Form.Item>
<Form.Item
label={t("parts_orders.fields.act_price")}
@@ -116,14 +125,6 @@ export default function PartsOrderModalComponent({
<CurrencyInput />
</Form.Item>
)}
<Form.Item
label={t("parts_orders.fields.quantity")}
key={`${index}quantity`}
name={[field.name, "quantity"]}
>
<InputNumber />
</Form.Item>
</LayoutFormRow>
<DeleteFilled
style={{ margin: "1rem" }}