Added missing template.

This commit is contained in:
Patrick Fic
2021-06-25 12:06:35 -07:00
parent 2172cc2d04
commit 630dacd8bf
9 changed files with 75 additions and 34 deletions

View File

@@ -328,6 +328,14 @@ export const TemplateList = (type, context) => {
disabled: false,
group: "ro",
},
parts_label_multi: {
title: i18n.t("printcenter.jobs.parts_label_multi"),
description: "Thank You Letter by RO",
key: "parts_label_multi",
subject: i18n.t("printcenter.jobs.parts_label_multi"),
disabled: false,
group: "ro",
},
}
: {}),
...(!type || type === "job_special"
@@ -1150,10 +1158,6 @@ export const TemplateList = (type, context) => {
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"),
@@ -1164,10 +1168,6 @@ export const TemplateList = (type, context) => {
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"),
@@ -1176,10 +1176,6 @@ export const TemplateList = (type, context) => {
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"),
@@ -1188,10 +1184,14 @@ export const TemplateList = (type, context) => {
key: "production_by_ro",
//idtype: "vendor",
disabled: false,
rangeFilter: {
object: i18n.t("reportcenter.labels.objects.jobs"),
field: i18n.t("jobs.fields.date_open"),
},
},
production_by_csr: {
title: i18n.t("reportcenter.templates.production_by_csr"),
description: "",
subject: i18n.t("reportcenter.templates.production_by_csr"),
key: "production_by_csr",
//idtype: "vendor",
disabled: false,
},
}
: {}),

View File

@@ -0,0 +1,5 @@
import React from "react";
export function PartsLabelMulti() {
return <div></div>;
}