Explorar el Código

update job order type

MergeProblem1
CANCERYS\kw093 hace 1 semana
padre
commit
6fc11d68e6
Se han modificado 2 ficheros con 2 adiciones y 0 borrados
  1. +1
    -0
      src/app/api/jo/actions.ts
  2. +1
    -0
      src/components/ProductionProcess/ProductionProcessList.tsx

+ 1
- 0
src/app/api/jo/actions.ts Ver fichero

@@ -346,6 +346,7 @@ export interface AllJoborderProductProcessInfoResponse {
pickOrderStatus: string;
itemCode: string;
itemName: string;
bomDescription?: string | null;
lotNo: string;
requiredQty: number;
jobOrderId: number;


+ 1
- 0
src/components/ProductionProcess/ProductionProcessList.tsx Ver fichero

@@ -564,6 +564,7 @@ const ProductProcessList: React.FC<ProductProcessListProps> = ({
<Typography variant="subtitle1" color="blue">
{/* <strong>{t("Item Name")}:</strong> */}
{process.itemCode} {process.itemName}
{process.bomDescription ? ` (${t(process.bomDescription as string)})` : ""}
</Typography>
<Typography variant="body2" color="text.secondary">
{t("Production Priority")}: {process.productionPriority}


Cargando…
Cancelar
Guardar