Minor PBS Updates.
This commit is contained in:
@@ -269,7 +269,6 @@ export function ProductionListTable({
|
|||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
columns={columns.map((c, index) => {
|
columns={columns.map((c, index) => {
|
||||||
console.log(c);
|
|
||||||
return {
|
return {
|
||||||
...c,
|
...c,
|
||||||
filteredValue: state.filteredInfo[c.key] || null,
|
filteredValue: state.filteredInfo[c.key] || null,
|
||||||
|
|||||||
@@ -75,9 +75,17 @@ export function ShopInfoResponsibilityCenterComponent({ bodyshop, form }) {
|
|||||||
<div>
|
<div>
|
||||||
{(bodyshop.cdk_dealerid || bodyshop.pbs_serialnumber) && (
|
{(bodyshop.cdk_dealerid || bodyshop.pbs_serialnumber) && (
|
||||||
<>
|
<>
|
||||||
<DataLabel label={t("bodyshop.labels.dms.cdk_dealerid")}>
|
{bodyshop.cdk_dealerid && (
|
||||||
{form.getFieldValue("cdk_dealerid")}
|
<DataLabel label={t("bodyshop.labels.dms.cdk_dealerid")}>
|
||||||
</DataLabel>
|
{form.getFieldValue("cdk_dealerid")}
|
||||||
|
</DataLabel>
|
||||||
|
)}
|
||||||
|
{bodyshop.pbs_serialnumber && (
|
||||||
|
<DataLabel label={t("bodyshop.labels.dms.pbs_serialnumber")}>
|
||||||
|
{form.getFieldValue("pbs_serialnumber")}
|
||||||
|
</DataLabel>
|
||||||
|
)}
|
||||||
|
|
||||||
<LayoutFormRow>
|
<LayoutFormRow>
|
||||||
<Form.Item
|
<Form.Item
|
||||||
label={t("bodyshop.fields.dms.default_journal")}
|
label={t("bodyshop.fields.dms.default_journal")}
|
||||||
@@ -158,11 +166,11 @@ export function ShopInfoResponsibilityCenterComponent({ bodyshop, form }) {
|
|||||||
label={t("jobs.fields.dms.payer.control_type")}
|
label={t("jobs.fields.dms.payer.control_type")}
|
||||||
key={`${index}control_type`}
|
key={`${index}control_type`}
|
||||||
name={[field.name, "control_type"]}
|
name={[field.name, "control_type"]}
|
||||||
rules={[
|
// rules={[
|
||||||
{
|
// {
|
||||||
required: true,
|
// required: true,
|
||||||
},
|
// },
|
||||||
]}
|
// ]}
|
||||||
>
|
>
|
||||||
<Select showSearch>
|
<Select showSearch>
|
||||||
<Select.Option value="ro_number">
|
<Select.Option value="ro_number">
|
||||||
|
|||||||
Reference in New Issue
Block a user