FPSMS-frontend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.ts 428 B

il y a 6 mois
il y a 5 mois
il y a 6 mois
il y a 5 mois
il y a 5 mois
123456789101112131415
  1. import { cache } from "react";
  2. import "server-only";
  3. // import { serverFetchJson } from "@/app/utils/fetchUtil";
  4. // import { BASE_API_URL } from "@/config/api";
  5. import { serverFetchJson } from "../../utils/fetchUtil";
  6. import { BASE_API_URL } from "../../../config/api";
  7. export interface QrCodeInfo {
  8. // warehouse qrcode
  9. warehouseId?: number;
  10. // item qrcode
  11. stockInLineId?: number;
  12. itemId: number;
  13. lotNo?: string;
  14. }