From 3b30ee603512dc3ea72b04ba3cc47f87c54a0923 Mon Sep 17 00:00:00 2001 From: "oura.a" Date: Wed, 2 Aug 2023 01:20:18 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20295:=20develop=E5=8B=95=E4=BD=9C?= =?UTF-8?q?=E7=A2=BA=E8=AA=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task2214: develop動作確認](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2214) dev動作確認で出た指摘点を修正しました。 指摘点は以下となります。 ・Distributorのスペルが違う  →多言語対応を修正 ・子アカウント行で、shortageは正の場合赤字  →赤字対応を追加 ・戻るときにグルグルを追加する  →画面更新時のLoading画像を追加 ・注文後に画面更新する  →ポップアップを閉じた際の情報再取得を追加 ・アカウントIDについては押せるようなカーソルにすべき  →表内のアカウント名選択時のカーソルをポインターに修正 ## レビューポイント なし ## UIの変更 なし ## 動作確認状況 ローカルで動作確認済み ## 補足 なし --- .../src/pages/LicensePage/partnerLicense.tsx | 18 +++++++++++++++++- dictation_client/src/translation/de.json | 4 ++-- dictation_client/src/translation/en.json | 4 ++-- dictation_client/src/translation/es.json | 4 ++-- dictation_client/src/translation/fr.json | 4 ++-- 5 files changed, 25 insertions(+), 9 deletions(-) diff --git a/dictation_client/src/pages/LicensePage/partnerLicense.tsx b/dictation_client/src/pages/LicensePage/partnerLicense.tsx index 524702e..c0904cb 100644 --- a/dictation_client/src/pages/LicensePage/partnerLicense.tsx +++ b/dictation_client/src/pages/LicensePage/partnerLicense.tsx @@ -35,6 +35,7 @@ import { import { LicenseOrderPopup } from "./licenseOrderPopup"; import LicenseSummary from "./licenseSummary"; import { LicenseOrderHistory } from "../LicenseOrderHistoryPage"; +import progress_activit from "../../assets/images/progress_activit.svg"; const PartnerLicense: React.FC = (): JSX.Element => { const dispatch: AppDispatch = useDispatch(); @@ -211,6 +212,7 @@ const PartnerLicense: React.FC = (): JSX.Element => { { setIsCardLicenseIssuePopupOpen(false); + dispatch(getMyAccountAsync()); }} /> )} @@ -218,6 +220,7 @@ const PartnerLicense: React.FC = (): JSX.Element => { { setIslicenseOrderPopupOpen(false); + dispatch(getMyAccountAsync()); }} /> )} @@ -385,6 +388,7 @@ const PartnerLicense: React.FC = (): JSX.Element => { {childrenPartnerLicensesInfo.map((value) => ( { if (value.tier !== 5) { handleRowClick(value); @@ -397,7 +401,13 @@ const PartnerLicense: React.FC = (): JSX.Element => { {value.accountId} {value.stockLicense} {value.issuedRequested} - {value.shortage} + + 0 ? styles.isAlert : ""} + > + {value.shortage} + + {value.issueRequesting}
    { + Loading diff --git a/dictation_client/src/translation/de.json b/dictation_client/src/translation/de.json index f450fc9..b7fc6c5 100644 --- a/dictation_client/src/translation/de.json +++ b/dictation_client/src/translation/de.json @@ -15,7 +15,7 @@ "copyRight": "(de)OM Digital Solutions 2023", "tier1": "(de)Admin", "tier2": "(de)BC", - "tier3": "(de)Distributer", + "tier3": "(de)Distributor", "tier4": "(de)Dealer", "tier5": "(de)Customer" } @@ -322,4 +322,4 @@ "orderCancel": "(de)Order Cancel" } } -} \ No newline at end of file +} diff --git a/dictation_client/src/translation/en.json b/dictation_client/src/translation/en.json index d40e498..f7de0bb 100644 --- a/dictation_client/src/translation/en.json +++ b/dictation_client/src/translation/en.json @@ -15,7 +15,7 @@ "copyRight": "OM Digital Solutions 2023", "tier1": "Admin", "tier2": "BC", - "tier3": "Distributer", + "tier3": "Distributor", "tier4": "Dealer", "tier5": "Customer" } @@ -322,4 +322,4 @@ "orderCancel": "Order Cancel" } } -} \ No newline at end of file +} diff --git a/dictation_client/src/translation/es.json b/dictation_client/src/translation/es.json index 6d49532..4c71576 100644 --- a/dictation_client/src/translation/es.json +++ b/dictation_client/src/translation/es.json @@ -15,7 +15,7 @@ "copyRight": "(es)OM Digital Solutions 2023", "tier1": "(es)Admin", "tier2": "(es)BC", - "tier3": "(es)Distributer", + "tier3": "(es)Distributor", "tier4": "(es)Dealer", "tier5": "(es)Customer" } @@ -322,4 +322,4 @@ "orderCancel": "(es)Order Cancel" } } -} \ No newline at end of file +} diff --git a/dictation_client/src/translation/fr.json b/dictation_client/src/translation/fr.json index 28f3107..460ee5a 100644 --- a/dictation_client/src/translation/fr.json +++ b/dictation_client/src/translation/fr.json @@ -15,7 +15,7 @@ "copyRight": "(fr)OM Digital Solutions 2023", "tier1": "(fr)Admin", "tier2": "(fr)BC", - "tier3": "(fr)Distributer", + "tier3": "(fr)Distributor", "tier4": "(fr)Dealer", "tier5": "(fr)Customer" } @@ -322,4 +322,4 @@ "orderCancel": "(fr)Order Cancel" } } -} \ No newline at end of file +}