From b5183994e1bf84de518a7f5e25d68da7a954f463 Mon Sep 17 00:00:00 2001 From: "maruyama.t" Date: Tue, 1 Aug 2023 01:55:17 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20291:=20=E7=94=BB=E9=9D=A2?= =?UTF-8?q?=E5=AE=9F=E8=A3=85=EF=BC=88=E6=B3=A8=E6=96=87=E5=B1=A5=E6=AD=B4?= =?UTF-8?q?=E7=94=BB=E9=9D=A2=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task2260: 画面実装(注文履歴画面)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2260) - 元PBI or タスクへのリンク(内容・目的などはそちらにあるはず) - 何をどう変更したか、追加したライブラリなど - このPull Requestでの対象/対象外 - 影響範囲(他の機能にも影響があるか) ## レビューポイント - 特にレビューしてほしい箇所 - 軽微なものや自明なものは記載不要 - 修正範囲が大きい場合などに記載 - 全体的にや仕様を満たしているか等は本当に必要な時のみ記載 ## UIの変更 - Before/Afterのスクショなど - スクショ置き場 ## 動作確認状況 - ローカルで確認、develop環境で確認など ## 補足 - 相談、参考資料などがあれば --- .../src/features/accounts/accounts.controller.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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; /* =