Browse Source

update

create_edit_user
MSI\derek 2 months ago
parent
commit
3afa9588f2
2 changed files with 5 additions and 0 deletions
  1. +1
    -0
      src/app/api/po/index.ts
  2. +4
    -0
      src/components/PoSearch/PoSearch.tsx

+ 1
- 0
src/app/api/po/index.ts View File

@@ -8,6 +8,7 @@ export interface PoResult {
id: number id: number
code: string code: string
orderDate: string orderDate: string
supplier: string
estimatedArrivalDate: string estimatedArrivalDate: string
completedDate: string completedDate: string
status: string status: string


+ 4
- 0
src/components/PoSearch/PoSearch.tsx View File

@@ -56,6 +56,10 @@ const PoSearch: React.FC<Props> = ({ po }) => {
name: "orderDate", name: "orderDate",
label: t("OrderDate"), label: t("OrderDate"),
}, },
{
name: "supplier",
label: t("Supplier"),
},
{ {
name: "status", name: "status",
label: t("Status"), label: t("Status"),


Loading…
Cancel
Save