|
|
|
@@ -20,7 +20,7 @@ const SearchPage: React.FC<Props> = ({dataList}) => { |
|
|
|
() => [ |
|
|
|
{ |
|
|
|
label: t("Lot No."), |
|
|
|
paramName: "lot_no", |
|
|
|
paramName: "lotNo", |
|
|
|
type: "text", |
|
|
|
}, |
|
|
|
], |
|
|
|
@@ -29,11 +29,11 @@ const SearchPage: React.FC<Props> = ({dataList}) => { |
|
|
|
|
|
|
|
const columns = useMemo<Column<StockIssueResult>[]>( |
|
|
|
() => [ |
|
|
|
{ name: "item_code", label: t("Item Code") }, |
|
|
|
{ name: "item_description", label: t("Item") }, |
|
|
|
{ name: "lot_no", label: t("Lot No.") }, |
|
|
|
{ name: "store_location", label: t("Location") }, |
|
|
|
{ name: "bad_item_qty", label: t("Defective Qty") } |
|
|
|
{ name: "itemCode", label: t("Item Code") }, |
|
|
|
{ name: "itemDescription", label: t("Item") }, |
|
|
|
{ name: "lotNo", label: t("Lot No.") }, |
|
|
|
{ name: "storeLocation", label: t("Location") }, |
|
|
|
{ name: "badItemQty", label: t("Defective Qty") } |
|
|
|
], |
|
|
|
[t], |
|
|
|
); |
|
|
|
|