Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

受注編集の画面で、金額にエラーがあると、課税区分のカッコ内が表示されなくなる 不具合の修正 #5761

Merged
merged 12 commits into from
Jul 20, 2023

Conversation

maianhtu010596
Copy link
Contributor

@maianhtu010596 maianhtu010596 commented Sep 1, 2022

概要(Overview・Refs Issue)

以下のissueの対応です。
#5753 受注編集の画面で、金額にエラーがあると、課税区分のカッコ内が表示されなくなる

問題を修正した後の結果は次のようになります。
image

方針(Policy)

実装に関する補足(Appendix)

テスト(Test)

相談(Discussion)

マイナーバージョン互換性保持のための制限事項チェックリスト

  • 既存機能の仕様変更はありません
  • フックポイントの呼び出しタイミングの変更はありません
  • フックポイントのパラメータの削除・データ型の変更はありません
  • twigファイルに渡しているパラメータの削除・データ型の変更はありません
  • Serviceクラスの公開関数の、引数の削除・データ型の変更はありません
  • 入出力ファイル(CSVなど)のフォーマット変更はありません

レビュワー確認項目

  • 動作確認
  • コードレビュー
  • E2E/Unit テスト確認(テストの追加・変更が必要かどうか)
  • 互換性が保持されているか
  • セキュリティ上の問題がないか
    • 権限を超えた操作が可能にならないか
    • 不要なファイルアップロードがないか
    • 外部へ公開されるファイルや機能の追加ではないか
    • テンプレートでのエスケープ漏れがないか

@chihiro-adachi chihiro-adachi changed the title 以下のissue/5753の対応です 受注編集の画面で、金額にエラーがあると、課税区分のカッコ内が表示されなくなる 不具合の修正 Sep 1, 2022
@chihiro-adachi chihiro-adachi added this to the 4.2.0 milestone Sep 1, 2022
@chihiro-adachi chihiro-adachi modified the milestones: 4.2.0, 4.2.x Sep 28, 2022
@xuelian311 xuelian311 modified the milestones: 4.2.x, 4.2.2 May 24, 2023
@shinya shinya self-assigned this May 26, 2023
@shinya
Copy link
Contributor

shinya commented May 26, 2023

@maianhtu010596
PRありがとうございます。
本体のMain Branch(4.2)のコミットが進んでいるので同期取りますね。

@codecov-commenter
Copy link

codecov-commenter commented May 26, 2023

Codecov Report

Merging #5761 (99b20b4) into 4.2 (24a6b63) will increase coverage by 0.01%.
The diff coverage is 95.00%.

❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more.

@@             Coverage Diff              @@
##                4.2    #5761      +/-   ##
============================================
+ Coverage     82.54%   82.55%   +0.01%     
- Complexity     6422     6425       +3     
============================================
  Files           475      475              
  Lines         25849    25855       +6     
============================================
+ Hits          21337    21345       +8     
+ Misses         4512     4510       -2     
Flag Coverage Δ
E2E 69.46% <50.00%> (-0.01%) ⬇️
Unit 79.70% <95.00%> (-0.03%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
...be/Service/PurchaseFlow/Processor/TaxProcessor.php 90.69% <66.66%> (+3.66%) ⬆️
...c/Eccube/Controller/Admin/Order/EditController.php 84.39% <100.00%> (+0.15%) ⬆️
src/Eccube/Service/OrderHelper.php 96.50% <100.00%> (+0.26%) ⬆️

... and 2 files with indirect coverage changes

@carkn carkn modified the milestones: 4.2.2, 4.2.3 Jun 30, 2023
@shinya
Copy link
Contributor

shinya commented Jul 13, 2023

@maianhtu010596
上記のレビュー指摘内容について、対応お願いできますでしょうか。
よろしくお願いいたします。

@shinya
Copy link
Contributor

shinya commented Jul 19, 2023

@chihiro-adachi @kiy0taka
OrderHelperへのメソッドの移動、それに伴うテストの追加を行いました。
確認をお願い致します。

@@ -221,6 +221,12 @@ public function index(Request $request, RouterInterface $router, $id = null)

$form->handleRequest($request);
$purchaseContext = new PurchaseContext($OriginOrder, $OriginOrder->getCustomer());

foreach ($TargetOrder->getOrderItems() as $orderItem) {
if($orderItem->getTaxDisplayType() == null){
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shinya
if($orderItem->getTaxDisplayType() == null){

if ($orderItem->getTaxDisplayType() == null) {

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

修正しました

) {
$this->entityManager = $entityManager;
$this->taxRuleRepository = $taxRuleRepository;
$this->taxRuleService = $taxRuleService;
$this->orderHelper = $orderHelper;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shinya
phpstanの指摘修正お願いします。

あと空白ずれてる?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ズレ直しておきました

@@ -77,7 +80,7 @@ public function process(ItemHolderInterface $itemHolder, PurchaseContext $contex
$item->setTaxType($this->getTaxType($OrderItemType));
}
if (!$item->getTaxDisplayType()) {
$item->setTaxDisplayType($this->getTaxDisplayType($OrderItemType));
$item->setTaxDisplayType($this->orderHelper->getTaxDisplayType($OrderItemType));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shinya
phpstanの指摘修正お願いします。

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

メンバ変数の宣言が漏れている、という指摘であってますでしょうか?
そちら反映いたしました(認識違いあればおっしゃってください。)

*
* @param $OrderItemType
*
* @return TaxType
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TaxType -> TaxDisplayType

*/
protected function getTaxDisplayType($OrderItemType)
{
if ($OrderItemType instanceof OrderItemType) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

処理内容はそのまま記述するのではなく、orderHelperに移譲してください。

return $this->orderHelper->getTaxDisplayType($OrderItemType)

* - ポイント値引き: 税込
*
* @param $OrderItemType
*
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

deprecatedのアノテーションを追加お願いします。
以下のように記載いただければ。

@deprecated OrderHelper::getTaxDisplayTypeを使用してください

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants