We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
対応状況(受注ステータス)を追加すると、管理画面の会員編集画面でエラーになる。 原因は、対応状況の表示の色分けがハードコーディングされているため。
表示の色分けは mtb_order_status_color を使用するように変更する。
ec-cube/src/Eccube/Resource/template/admin/Customer/edit.twig
Line 422 in d5d6e10
エラーが発生する該当行を以下のように修正し、エラーを回避することはできた。 {{ attribute(cssClassStatus, Order.OrderStatus.id) is defined ? attribute(cssClassStatus, Order.OrderStatus.id) : 'badge-ec-glay' }}
The text was updated successfully, but these errors were encountered:
以下で修正されました。 #4437
Sorry, something went wrong.
No branches or pull requests
概要(Overview)
対応状況(受注ステータス)を追加すると、管理画面の会員編集画面でエラーになる。
原因は、対応状況の表示の色分けがハードコーディングされているため。
期待する内容(Expect) or 要望 (Requirement)
表示の色分けは mtb_order_status_color を使用するように変更する。
環境 (environment)
関連情報 (Ref)
ec-cube/src/Eccube/Resource/template/admin/Customer/edit.twig
Line 422 in d5d6e10
エラーが発生する該当行を以下のように修正し、エラーを回避することはできた。
{{ attribute(cssClassStatus, Order.OrderStatus.id) is defined ? attribute(cssClassStatus, Order.OrderStatus.id) : 'badge-ec-glay' }}
The text was updated successfully, but these errors were encountered: