Просмотр исходного кода

HT API新レイアウト対応

develop
sosuke.iwabuchi 2 лет назад
Родитель
Сommit
4d4df1b544
2 измененных файлов: 1 добавлений и 2 удалений
  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 Просмотреть файл

@@ -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 Просмотреть файл

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


Загрузка…
Отмена
Сохранить