BREAKING - Package upgrades + some WIP on invoice enter.

This commit is contained in:
Patrick Fic
2020-02-28 09:29:44 -08:00
parent 6785ff8aad
commit e2dfd6b60d
5 changed files with 908 additions and 1050 deletions

View File

@@ -32,7 +32,7 @@ export default function InvoiceEnterModalComponent({
}) {
const { t } = useTranslation();
const { getFieldDecorator, resetFields } = form;
return (
<Modal
title={
@@ -128,7 +128,6 @@ export default function InvoiceEnterModalComponent({
})(<InputNumber precision={2} min={0} name="total" />)}
</Form.Item>
</div>
<Row>
<Col span={12}>
<InvoiceEnterModalTableComponent
@@ -140,6 +139,7 @@ export default function InvoiceEnterModalComponent({
</Col>
<Col span={12}>Table of added items.</Col>
</Row>
);
</Form>
</Modal>
);

View File

@@ -101,6 +101,7 @@ export default function InvoiceEnterModalTableComponent({
jobLine={record}
form={form}
discount={vendor ? vendor.discount : null}
disabled={vendor}
/>
</div>
)