Przeglądaj źródła

HT API新レイアウト対応

develop
sosuke.iwabuchi 2 lat temu
rodzic
commit
4d4df1b544
2 zmienionych plików z 1 dodań i 2 usunięć
  1. +0
    -1
      src/api/custom/hello-techno/index.ts
  2. +1
    -1
      src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useParkingList.tsx

+ 0
- 1
src/api/custom/hello-techno/index.ts Wyświetl plik

@@ -10,7 +10,6 @@ export type HTParking = {
customer_name: string;
parking_management_code: string;
parking_name: string;
name: string; // 旧API仕様
};
export type HTAdjustData = {
customer_code: string;


+ 1
- 1
src/pages/dashboard/receipt-issuing-order/custom/hello-techno/hooks/useParkingList.tsx Wyświetl plik

@@ -220,7 +220,7 @@ function Row({ data, onNext }: RowProps) {
return (
<TableRow hover sx={{ cursor: "pointer" }} onClick={handleClick}>
<TableCell>{data.customer_name}</TableCell>
<TableCell>{data.parking_name ?? data.name}</TableCell>
<TableCell>{data.parking_name}</TableCell>
<TableCell>{data.parking_management_code}</TableCell>
</TableRow>
);


Ładowanie…
Anuluj
Zapisz