diff --git a/src/api/season-ticket-contract.ts b/src/api/season-ticket-contract.ts index 247ef26..b2ddd39 100644 --- a/src/api/season-ticket-contract.ts +++ b/src/api/season-ticket-contract.ts @@ -34,6 +34,7 @@ export type PaymentPlan = { payment_method: string | null; payment_plan_date: string | null; payment_status: string | null; + payment_name: string | null; revision: number; }; diff --git a/src/pages/dashboard/contract/component/PayingPlanList.tsx b/src/pages/dashboard/contract/component/PayingPlanList.tsx index d018376..9c6ac64 100644 --- a/src/pages/dashboard/contract/component/PayingPlanList.tsx +++ b/src/pages/dashboard/contract/component/PayingPlanList.tsx @@ -4,6 +4,7 @@ import { Table, TableBody, TableCell, + TableHead, TableRow, Typography, } from "@mui/material"; @@ -49,6 +50,14 @@ export default function PayingPlanList({}: PayingPlanListProps) { お支払い状況 + + + 支払予定日 + 名称 + 支払方法 + 状況 + + {paymentPlans .filter((ele, index) => { @@ -58,6 +67,7 @@ export default function PayingPlanList({}: PayingPlanListProps) { return ( {ele.payment_plan_date} + {ele.payment_name} {ele.payment_method} {ele.payment_status}