소스 검색

HT API新レイアウト対応

develop
sosuke.iwabuchi 2 년 전
부모
커밋
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>
);


Loading…
취소
저장