24 lines
792 B
TypeScript
24 lines
792 B
TypeScript
import { Manufacturer as CwManufacturer } from "../../generated/prisma/client";
|
|
import { CatalogManufacturer as ApiCatalogManufacturer } from "../../../api/generated/prisma/client";
|
|
import { Translation } from "./types";
|
|
|
|
export const catalogManufacturerTranslation: Translation<
|
|
CwManufacturer,
|
|
ApiCatalogManufacturer
|
|
> = {
|
|
values: [
|
|
{ from: "manufacturerRecId", to: "id" },
|
|
{ from: "manufacturerName", to: "name" },
|
|
{ from: "manufacturerName", to: "description" },
|
|
{
|
|
from: "inactiveFlag",
|
|
to: "inactiveFlag",
|
|
process: (value) => Boolean(value),
|
|
},
|
|
{ from: "updatedBy", to: "updatedById" },
|
|
{ from: "enteredBy", to: "createdById" },
|
|
{ from: "lastUpdatedUtc", to: "updatedAt" },
|
|
{ from: "dateEnteredUtc", to: "createdAt" },
|
|
],
|
|
};
|