IO-1914 Add manual and edit lines of inventory.

This commit is contained in:
Patrick Fic
2022-06-08 17:45:30 -07:00
parent fde0681a93
commit 82db7a1f14

View File

@@ -74,6 +74,7 @@ export function BillInventoryTable({
<th>{t("billlines.fields.quantity")}</th>
<th>{t("billlines.fields.actual_price")}</th>
<th>{t("billlines.fields.actual_cost")}</th>
<th>{t("inventory.fields.comment")}</th>
<th>{t("inventory.actions.consumefrominventory")}</th>
</tr>
</thead>
@@ -136,6 +137,16 @@ export function BillInventoryTable({
<ReadOnlyFormItemComponent type="currency" />
</Form.Item>
</td>
<td>
<Form.Item
span={2}
//label={t("joblines.fields.mod_lb_hrs")}
key={`${index}comment`}
name={[field.name, "comment"]}
>
<ReadOnlyFormItemComponent />
</Form.Item>
</td>
<td>
<Form.Item