Ver a proveniência

[Demand Forecast] update all "Rough Schedule" display name to "Demand Forecast"

create_edit_user
jason.lam há 3 meses
ascendente
cometimento
d28ee02533
7 ficheiros alterados com 13 adições e 13 eliminações
  1. +2
    -2
      src/app/(main)/scheduling/rough/edit/page.tsx
  2. +2
    -2
      src/app/(main)/scheduling/rough/page.tsx
  3. +2
    -2
      src/app/(main)/settings/rss/page.tsx
  4. +3
    -3
      src/components/Breadcrumb/Breadcrumb.tsx
  5. +2
    -2
      src/components/NavigationContent/NavigationContent.tsx
  6. +1
    -1
      src/components/RoughSchedule/RoughSchedileSearchView.tsx
  7. +1
    -1
      src/components/RoughScheduleDetail/RoughScheudleDetailView.tsx

+ 2
- 2
src/app/(main)/scheduling/rough/edit/page.tsx Ver ficheiro

@@ -11,7 +11,7 @@ import { Suspense } from "react";
import RoughScheduleDetailView from "@/components/RoughScheduleDetail/RoughScheudleDetailView";

export const metadata: Metadata = {
title: "Rough Scheduling Detail",
title: "Demand Forecast Detail",
};

const roughSchedulingDetail: React.FC = async () => {
@@ -28,7 +28,7 @@ const roughSchedulingDetail: React.FC = async () => {
rowGap={2}
>
<Typography variant="h4" marginInlineEnd={2}>
{t("Rough Scheduling Detail")}
{t("Demand Forecast Detail")}
</Typography>
{/* <Button
variant="contained"


+ 2
- 2
src/app/(main)/scheduling/rough/page.tsx Ver ficheiro

@@ -10,7 +10,7 @@ import Link from "next/link";
import { Suspense } from "react";

export const metadata: Metadata = {
title: "Rough Scheduling",
title: "Demand Forecast",
};

const roughScheduling: React.FC = async () => {
@@ -27,7 +27,7 @@ const roughScheduling: React.FC = async () => {
rowGap={2}
>
<Typography variant="h4" marginInlineEnd={2}>
{t("Rough Scheduling")}
{t("Demand Forecast")}
</Typography>
{/* <Button
variant="contained"


+ 2
- 2
src/app/(main)/settings/rss/page.tsx Ver ficheiro

@@ -12,7 +12,7 @@ import RoughScheduleLoading from "@/components/RoughScheduleSetting/RoughSchedul
import RoughScheduleSetting from "@/components/RoughScheduleSetting/RoughScheduleSetting";

export const metadata: Metadata = {
title: "Rough Schedule Setting",
title: "Demand Forecast Setting",
};

const roughScheduleSetting: React.FC = async () => {
@@ -29,7 +29,7 @@ const roughScheduleSetting: React.FC = async () => {
rowGap={2}
>
<Typography variant="h4" marginInlineEnd={2}>
{t("Rough Schedule Setting")}
{t("Demand Forecast Setting")}
</Typography>
{/* <Button
variant="contained"


+ 3
- 3
src/components/Breadcrumb/Breadcrumb.tsx Ver ficheiro

@@ -13,9 +13,9 @@ const pathToLabelMap: { [path: string]: string } = {
"/tasks": "Task Template",
"/tasks/create": "Create Task Template",
"/settings/qcItem": "Qc Item",
"/settings/rss": "Rough Schedule Setting",
"/scheduling/rough": "Rough Scheduling",
"/scheduling/rough/edit": "Rough Scheduling Detail",
"/settings/rss": "Demand Forecast Setting",
"/scheduling/rough": "Demand Forecast",
"/scheduling/rough/edit": "Demand Forecast Detail",
"/scheduling/detail": "Detail Scheduling",
};



+ 2
- 2
src/components/NavigationContent/NavigationContent.tsx Ver ficheiro

@@ -173,7 +173,7 @@ const NavigationContent: React.FC = () => {
children: [
{
icon: <RequestQuote />,
label: "Rough Scheduling",
label: "Demand Forecast",
path: "/scheduling/rough",
},
{
@@ -215,7 +215,7 @@ const NavigationContent: React.FC = () => {
},
{
icon: <RequestQuote />,
label: "Rough Schedule Setting",
label: "Demand Forecast Setting",
path: "/settings/rss",
},
{


+ 1
- 1
src/components/RoughSchedule/RoughSchedileSearchView.tsx Ver ficheiro

@@ -89,7 +89,7 @@ const RSOverview: React.FC<Props> = ({ records }) => {
},
{
name: "scheduledPeriod",
label: "Rough Schedule Period",
label: "Demand Forecast Period",
},
{
name: "scheduledAt",


+ 1
- 1
src/components/RoughScheduleDetail/RoughScheudleDetailView.tsx Ver ficheiro

@@ -46,7 +46,7 @@ const RoughScheduleDetailView: React.FC<Props> = ({
const { t } = useTranslation();
const router = useRouter();
const [isEdit, setIsEdit] = useState(false);
//const title = "Rough Schedule Detail"
//const title = "Demand Forecast Detail"
const [mode, redirPath] = useMemo(() => {
// var typeId = TypeEnum.CONSUMABLE_ID
var title = "";


Carregando…
Cancelar
Guardar