IO-1117 IO-1087
This commit is contained in:
@@ -87,9 +87,7 @@ export function Jobd3RdPartyModal({ bodyshop, jobId }) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Button type="primary" onClick={showModal}>
|
<Button onClick={showModal}>{t("printcenter.jobs.3rdpartypayer")}</Button>
|
||||||
{t("printcenter.jobs.3rdpartypayer")}
|
|
||||||
</Button>
|
|
||||||
<Modal visible={isModalVisible} onOk={handleOk} onCancel={handleCancel}>
|
<Modal visible={isModalVisible} onOk={handleOk} onCancel={handleCancel}>
|
||||||
<Form
|
<Form
|
||||||
onFinish={handleFinish}
|
onFinish={handleFinish}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Card, Col, Input, Row, Typography } from "antd";
|
import { Card, Col, Input, Row, Space, Typography } from "antd";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
@@ -42,10 +42,13 @@ export function PrintCenterJobsComponent({ printCenterModal }) {
|
|||||||
<Col lg={16} md={12} sm={24} className="print-center-list">
|
<Col lg={16} md={12} sm={24} className="print-center-list">
|
||||||
<Card
|
<Card
|
||||||
extra={
|
extra={
|
||||||
<Input.Search
|
<Space wrap>
|
||||||
onChange={(e) => setSearch(e.target.value)}
|
<Jobd3RdPartyModal jobId={jobId} />
|
||||||
value={search}
|
<Input.Search
|
||||||
/>
|
onChange={(e) => setSearch(e.target.value)}
|
||||||
|
value={search}
|
||||||
|
/>
|
||||||
|
</Space>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Row gutter={[16, 16]}>
|
<Row gutter={[16, 16]}>
|
||||||
@@ -71,7 +74,6 @@ export function PrintCenterJobsComponent({ printCenterModal }) {
|
|||||||
))}
|
))}
|
||||||
</Row>
|
</Row>
|
||||||
</Card>
|
</Card>
|
||||||
<Jobd3RdPartyModal jobId={jobId} />
|
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -261,7 +261,6 @@ export default function ShopInfoGeneral({ form }) {
|
|||||||
label={t("bodyshop.fields.md_categories")}
|
label={t("bodyshop.fields.md_categories")}
|
||||||
rules={[
|
rules={[
|
||||||
{
|
{
|
||||||
required: true,
|
|
||||||
//message: t("general.validation.required"),
|
//message: t("general.validation.required"),
|
||||||
type: "array",
|
type: "array",
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1732,7 +1732,7 @@
|
|||||||
"state": "Province/State",
|
"state": "Province/State",
|
||||||
"zip": "Postal Code/Zip"
|
"zip": "Postal Code/Zip"
|
||||||
},
|
},
|
||||||
"3rdpartypayer": "Third Party Payer",
|
"3rdpartypayer": "Invoice to Third Party Payer",
|
||||||
"appointment_confirmation": "Appointment Confirmation",
|
"appointment_confirmation": "Appointment Confirmation",
|
||||||
"appointment_reminder": "Appointment Reminder",
|
"appointment_reminder": "Appointment Reminder",
|
||||||
"casl_authorization": "CASL Authorization",
|
"casl_authorization": "CASL Authorization",
|
||||||
|
|||||||
Reference in New Issue
Block a user