IO-117 WIP PBS.
This commit is contained in:
@@ -34,10 +34,7 @@ export function DmsCustomerSelector({ bodyshop }) {
|
||||
setVisible(true);
|
||||
setDmsType("pbs");
|
||||
setcustomerList(customerList);
|
||||
console.log(
|
||||
"🚀 ~ file: dms-customer-selector.component.jsx ~ line 37 ~ socket.on ~ customerList",
|
||||
customerList
|
||||
);
|
||||
|
||||
});
|
||||
|
||||
const onUseSelected = () => {
|
||||
@@ -49,7 +46,7 @@ export function DmsCustomerSelector({ bodyshop }) {
|
||||
const onUseGeneric = () => {
|
||||
setVisible(false);
|
||||
socket.emit(
|
||||
"cdk-selected-customer",
|
||||
`${dmsType}selected-customer`,
|
||||
bodyshop.cdk_configuration.generic_customer_number
|
||||
);
|
||||
setSelectedCustomer(null);
|
||||
@@ -57,7 +54,7 @@ export function DmsCustomerSelector({ bodyshop }) {
|
||||
|
||||
const onCreateNew = () => {
|
||||
setVisible(false);
|
||||
socket.emit("cdk-selected-customer", null);
|
||||
socket.emit(`${dmsType}-selected-customer`, null);
|
||||
setSelectedCustomer(null);
|
||||
};
|
||||
|
||||
@@ -102,12 +99,6 @@ export function DmsCustomerSelector({ bodyshop }) {
|
||||
dataIndex: "ContactId",
|
||||
key: "ContactId",
|
||||
},
|
||||
{
|
||||
title: t("jobs.fields.dms.vinowner"),
|
||||
dataIndex: "vinOwner",
|
||||
key: "vinOwner",
|
||||
render: (text, record) => <Checkbox disabled checked={record.vinOwner} />,
|
||||
},
|
||||
{
|
||||
title: t("jobs.fields.dms.name1"),
|
||||
key: "name1",
|
||||
@@ -127,6 +118,7 @@ export function DmsCustomerSelector({ bodyshop }) {
|
||||
if (!visible) return null;
|
||||
return (
|
||||
<Col span={24}>
|
||||
{dmsType}
|
||||
<Table
|
||||
title={() => (
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user