Ver a proveniência

quick update

master
cyril.tsui há 1 semana
ascendente
cometimento
e0b35bed78
2 ficheiros alterados com 8 adições e 1 eliminações
  1. +7
    -0
      src/components/InventorySearch/InventoryLotLineTable.tsx
  2. +1
    -1
      src/components/PoSearch/PoSearch.tsx

+ 7
- 0
src/components/InventorySearch/InventoryLotLineTable.tsx Ver ficheiro

@@ -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 Ver ficheiro

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


Carregando…
Cancelar
Guardar