FPSMS-frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 line
516 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. 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. }