소스 검색

quick update

master
cyril.tsui 1 주 전
부모
커밋
e0b35bed78
2개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -0
      src/components/InventorySearch/InventoryLotLineTable.tsx
  2. +1
    -1
      src/components/PoSearch/PoSearch.tsx

+ 7
- 0
src/components/InventorySearch/InventoryLotLineTable.tsx 파일 보기

@@ -106,6 +106,13 @@ const InventoryLotLineTable: React.FC<Props> = ({ inventoryLotLines, pagingContr
return arrayToDateString(params.expiryDate)
},
},
{
name: "warehouse",
label: t("Warehouse"),
renderCell: (params) => {
return `${params.warehouse.code} - ${params.warehouse.name}`
},
},
{
name: "id",
label: t("qrcode"),


+ 1
- 1
src/components/PoSearch/PoSearch.tsx 파일 보기

@@ -115,7 +115,7 @@ const PoSearch: React.FC<Props> = ({
() => [
{
name: "id" as keyof PoResult,
label: "Select",
label: "",
renderCell: (params) => (
<Checkbox
checked={selectedPoIds.includes(params.id)}


불러오는 중...
취소
저장