Added driveable and tow in flags. IO-719

This commit is contained in:
Patrick Fic
2021-03-02 11:54:24 -08:00
parent 904dc4e29e
commit a026cd0163
19 changed files with 1771 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
import { Button, Form, notification, Popover, Select } from "antd";
import React, { useState } from "react";
import { useMutation } from "@apollo/client";
import { Button, Form, notification, Popover, Select, Switch } from "antd";
import React, { useState } from "react";
import { useTranslation } from "react-i18next";
import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
@@ -38,7 +38,11 @@ export function JobsConvertButton({ bodyshop, job, refetch, jobRO }) {
const popMenu = (
<div>
<Form layout="vertical" onFinish={handleConvert}>
<Form
layout="vertical"
onFinish={handleConvert}
initialValues={{ driveable: true, towin: false }}
>
<Form.Item
name={["ins_co_nm"]}
label={t("jobs.fields.ins_co_nm")}
@@ -75,6 +79,27 @@ export function JobsConvertButton({ bodyshop, job, refetch, jobRO }) {
))}
</Select>
</Form.Item>
<Form.Item
label={t("jobs.fields.ca_gst_registrant")}
name="ca_gst_registrant"
valuePropName="checked"
>
<Switch />
</Form.Item>
<Form.Item
label={t("jobs.fields.driveable")}
name="driveable"
valuePropName="checked"
>
<Switch />
</Form.Item>
<Form.Item
label={t("jobs.fields.towin")}
name="towin"
valuePropName="checked"
>
<Switch />
</Form.Item>
<Button type="danger" htmlType="submit">
{t("jobs.actions.convert")}
</Button>