3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

承認のレコード画面の表示をカスタマイズする方法

Posted at

【概要】

承認のレコードを選択すると、デフォルトでは以下のようになっています。
画面キャプチャー赤枠のように不要な「価格・数量・合計」を非表示にしたいと思います。
image.png
該当箇所についてフォームレイアウトを確認すると、以下が対象となっていました。
「Approval Summarizer」
image.png

【手順】

1.UI マクロから「approval_summarizer_sc_req_item」で検索します。
image.png


2.「価格・数量・合計」の表示は以下をコメントアウトする事で非表示にします。

${gs.getMessage('Price')}
${gs.getMessage('Quantity')}
${gs.getMessage('Total')}

image.png


3.「価格・数量・合計」の値の表示は以下をコメントアウトする事で非表示にします。

<g:currency_format value="${task.price.getDisplayValue()}" />
<td valign="top"> ${task.quantity}</td>
<g:currency_format double="${jvar_item_price}" />

image.png


4.「更新」を選択します。


5.最初の承認のレコードを選択すると、「価格・数量・合計」が非表示になっています。
image.png


※コミュニティ参考情報はこちら


以上

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?