diff --git a/dictation_server/src/features/accounts/accounts.controller.ts b/dictation_server/src/features/accounts/accounts.controller.ts index da3c147..03fcc6c 100644 --- a/dictation_server/src/features/accounts/accounts.controller.ts +++ b/dictation_server/src/features/accounts/accounts.controller.ts @@ -361,19 +361,16 @@ export class AccountsController { const { limit, offset, accountId } = body; // XXX Task2261で本実装する - const currentDate = new Date(); const orderHistories: LicenseOrder[] = []; const orderHistory: LicenseOrder = { - orderDate: currentDate, - issueDate: currentDate, + orderDate: '2023/01/01', + issueDate: '2023/01/01', numberOfOrder: 50, poNumber: 'PO001', status: 'Issue Requesting', }; orderHistories.push(orderHistory); const getOrderHistoriesResponce = new GetOrderHistoriesResponce(); - getOrderHistoriesResponce.limit = 1; - getOrderHistoriesResponce.offset = 1; getOrderHistoriesResponce.total = 1; getOrderHistoriesResponce.orderHistories = orderHistories; /* =