瀏覽代碼

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)}


Loading…
取消
儲存