Removed Est_number from Job. Potential Breaking changes. IO-553
This commit is contained in:
@@ -5,7 +5,7 @@ const JobsCreate = (props) => (
|
||||
<Create {...props}>
|
||||
<SimpleForm>
|
||||
<TextInput source="ro_number" />
|
||||
<TextInput source="est_number" />
|
||||
|
||||
<TextInput source="ownr_fn" />
|
||||
<TextInput source="ownr_ln" />
|
||||
<TextInput source="converted" />
|
||||
|
||||
@@ -283,7 +283,6 @@ const JobsEdit = (props) => (
|
||||
<FormTab label="Other">
|
||||
<TextInput fullWidth source="area_of_damage" />
|
||||
<TextInput fullWidth source="loss_cat" />
|
||||
<TextInput fullWidth source="est_number" />
|
||||
<TextInput fullWidth source="special_coverage_policy" />
|
||||
<TextInput fullWidth source="csr" />
|
||||
<TextInput fullWidth source="po_number" />
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
import { useQuery } from "@apollo/client";
|
||||
import CircularProgress from "@material-ui/core/CircularProgress";
|
||||
import React from "react";
|
||||
import {
|
||||
Datagrid,
|
||||
Filter,
|
||||
List,
|
||||
ReferenceField,
|
||||
TextField,
|
||||
SelectInput,
|
||||
TextInput,
|
||||
TextField,
|
||||
TextInput
|
||||
} from "react-admin";
|
||||
import { useQuery } from "@apollo/client";
|
||||
import { QUERY_ALL_SHOPS } from "../../graphql/admin.shop.queries";
|
||||
import CircularProgress from "@material-ui/core/CircularProgress";
|
||||
|
||||
const JobsList = (props) => (
|
||||
<List filters={<JobsFilter />} {...props}>
|
||||
@@ -20,7 +20,7 @@ const JobsList = (props) => (
|
||||
<TextField source="shopname" />
|
||||
</ReferenceField>
|
||||
<TextField source="ro_number" />
|
||||
<TextField source="est_number" />
|
||||
|
||||
<TextField source="ownr_fn" />
|
||||
<TextField source="ownr_ln" />
|
||||
<TextField source="ownr_co_nm" />
|
||||
|
||||
@@ -7,7 +7,7 @@ import {
|
||||
Show,
|
||||
Tab,
|
||||
TabbedShowLayout,
|
||||
TextField,
|
||||
TextField
|
||||
} from "react-admin";
|
||||
|
||||
const JobsShow = (props) => (
|
||||
@@ -221,7 +221,7 @@ const JobsShow = (props) => (
|
||||
<TextField source="ownr_ea" />
|
||||
<TextField source="area_of_damage" />
|
||||
<TextField source="loss_cat" />
|
||||
<TextField source="est_number" />
|
||||
|
||||
<TextField source="special_coverage_policy" />
|
||||
<TextField source="csr" />
|
||||
<TextField source="po_number" />
|
||||
|
||||
Reference in New Issue
Block a user