FPSMS-frontend
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

25 líneas
650 B

  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 Uom {
  8. id: number;
  9. code: string;
  10. udfudesc: string;
  11. /** Short UoM label from M18 (`udfShortDesc`), e.g. 箱. */
  12. udfShortDesc?: string | null;
  13. unit1: string;
  14. unit1Qty: number;
  15. unit2?: string;
  16. unit2Qty: number;
  17. unit3?: string;
  18. unit3Qty: number;
  19. unit4?: string;
  20. unit4Qty: number;
  21. sizeInGram: number;
  22. gramPerSmallestUnit: number;
  23. }