浏览代码

update

reset-do-picking-order
CANCERYS\kw093 1周前
父节点
当前提交
9b4db0dde5
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. +1
    -1
      src/app/(main)/stocktakemanagement/page.tsx
  2. +3
    -3
      src/components/StockTakeManagement/PickerCardList.tsx

+ 1
- 1
src/app/(main)/stocktakemanagement/page.tsx 查看文件

@@ -10,7 +10,7 @@ import { notFound } from "next/navigation";
export default async function InventoryManagementPage() {
const { t } = await getServerI18n("inventory");
return (
<I18nProvider namespaces={["inventory"]}>
<I18nProvider namespaces={["inventory","common"]}>
<Suspense fallback={<StockTakeManagementWrapper.Loading />}>
<StockTakeManagementWrapper />
</Suspense>


+ 3
- 3
src/components/StockTakeManagement/PickerCardList.tsx 查看文件

@@ -82,15 +82,15 @@ const filteredSessions = stockTakeSessions.filter((s) => {
const criteria: Criterion<PickerSearchKey>[] = [
{
type: "select",
label: "Stock Take Section Description",
label: t("Stock Take Section Description"),
paramName: "sectionDescription",
options: sectionDescriptionOptions,
},
{
type: "text",
label: "Stock Take Section",
label: t("Stock Take Section"),
paramName: "stockTakeSession",
placeholder: "e.g. A01",
placeholder: "",
},
];



正在加载...
取消
保存