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 516 B

il y a 6 mois
il y a 6 mois
il y a 6 mois
il y a 6 mois
1234567891011121314151617181920
  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. export interface Uom {
  6. id: number
  7. code: string
  8. name: string
  9. unit1: string
  10. unit1Qty: number
  11. unit2?: string
  12. unit2Qty: number
  13. unit3?: string
  14. unit3Qty: number
  15. unit4?: string
  16. unit4Qty: number
  17. sizeInGram: number
  18. gramPerSmallestUnit: number
  19. }