IO-233 WIP CDK.

This commit is contained in:
Patrick Fic
2021-06-23 10:57:57 -07:00
parent 4f6bb02ab7
commit 5be2d7bd39
9 changed files with 177 additions and 7 deletions

View File

@@ -5,10 +5,6 @@ import { useTranslation } from "react-i18next";
import { TOGGLE_CONVERSATION_ARCHIVE } from "../../graphql/conversations.queries";
export default function ChatArchiveButton({ conversation }) {
console.log(
"🚀 ~ file: chat-archive-button.component.jsx ~ line 6 ~ conversation",
conversation
);
const [loading, setLoading] = useState(false);
const { t } = useTranslation();
const [updateConversation] = useMutation(TOGGLE_CONVERSATION_ARCHIVE);

View File

@@ -96,7 +96,7 @@ export function CdkContainer({ bodyshop, setBreadcrumbs, setSelectedHeader }) {
<Timeline pending={socket.connected && "Processing..."} reverse={true}>
{logs.map((log, idx) => (
<Timeline.Item key={idx}>
<Timeline.Item key={idx} color={LogLevelHierarchy(log.level)}>
<Space wrap align="start" style={{}}>
<Tag color={LogLevelHierarchy(log.level)}>{log.level}</Tag>
<span>{moment(log.timestamp).format("MM/DD/YYYY HH:MM:ss")}</span>

View File

@@ -1933,6 +1933,10 @@
"parts_backorder": "Backordered Parts",
"payments_by_date": "Payments by Date",
"payments_by_date_type": "Payments by Date and Type",
"production_by_last_name": "Production by Last Name",
"production_by_repair_status": "Production by Status",
"production_by_ro": "Production by RO",
"production_by_target_date": "Production by Target Date",
"purchases_by_cost_center_detail": "Purchases by Cost Center (Detail)",
"purchases_by_cost_center_summary": "Purchases by Cost Center (Summary)",
"purchases_by_date_range_detail": "Purchases by Date - Detail",

View File

@@ -1933,6 +1933,10 @@
"parts_backorder": "",
"payments_by_date": "",
"payments_by_date_type": "",
"production_by_last_name": "",
"production_by_repair_status": "",
"production_by_ro": "",
"production_by_target_date": "",
"purchases_by_cost_center_detail": "",
"purchases_by_cost_center_summary": "",
"purchases_by_date_range_detail": "",

View File

@@ -1933,6 +1933,10 @@
"parts_backorder": "",
"payments_by_date": "",
"payments_by_date_type": "",
"production_by_last_name": "",
"production_by_repair_status": "",
"production_by_ro": "",
"production_by_target_date": "",
"purchases_by_cost_center_detail": "",
"purchases_by_cost_center_summary": "",
"purchases_by_date_range_detail": "",

View File

@@ -1061,6 +1061,56 @@ export const TemplateList = (type, context) => {
field: i18n.t("jobs.fields.date_open"),
},
},
production_by_last_name: {
title: i18n.t("reportcenter.templates.production_by_last_name"),
description: "",
subject: i18n.t("reportcenter.templates.production_by_last_name"),
key: "production_by_last_name",
//idtype: "vendor",
disabled: false,
rangeFilter: {
object: i18n.t("reportcenter.labels.objects.jobs"),
field: i18n.t("jobs.fields.date_open"),
},
},
production_by_repair_status: {
title: i18n.t("reportcenter.templates.production_by_repair_status"),
description: "",
subject: i18n.t(
"reportcenter.templates.production_by_repair_status"
),
key: "production_by_repair_status",
//idtype: "vendor",
disabled: false,
rangeFilter: {
object: i18n.t("reportcenter.labels.objects.jobs"),
field: i18n.t("jobs.fields.date_open"),
},
},
production_by_target_date: {
title: i18n.t("reportcenter.templates.production_by_target_date"),
description: "",
subject: i18n.t("reportcenter.templates.production_by_target_date"),
key: "production_by_target_date",
//idtype: "vendor",
disabled: false,
rangeFilter: {
object: i18n.t("reportcenter.labels.objects.jobs"),
field: i18n.t("jobs.fields.date_open"),
},
},
production_by_ro: {
title: i18n.t("reportcenter.templates.production_by_ro"),
description: "",
subject: i18n.t("reportcenter.templates.production_by_ro"),
key: "production_by_ro",
//idtype: "vendor",
disabled: false,
rangeFilter: {
object: i18n.t("reportcenter.labels.objects.jobs"),
field: i18n.t("jobs.fields.date_open"),
},
},
}
: {}),
...(!type || type === "courtesycarcontract"