IDEMPIERE-5280 : Avoid Msg.getMsg: NOT found log when confirming an a… (#1308)
* IDEMPIERE-5280 : Avoid Msg.getMsg: NOT found log when confirming an action on a document * IDEMPIERE-5280 : Avoid Msg.getMsg: NOT found log when confirming an action on a document - fix suggested by hengsin fix windowNo Co-Authored-By: hengsin <152246+hengsin@users.noreply.github.com> * IDEMPIERE-5280 : Avoid Msg.getMsg: NOT found log when confirming an action on a document - Fix vertical alignment of message Also fix it in another method Co-Authored-By: hengsin <152246+hengsin@users.noreply.github.com> Co-authored-by: hengsin <152246+hengsin@users.noreply.github.com>
This commit is contained in:
parent
10db6177d0
commit
eaaa26774c
|
@ -379,7 +379,7 @@ public class WDocActionPanel extends Window implements EventListener<Event>, Dia
|
||||||
String docAction = lstDocAction.getSelectedItem().getLabel();
|
String docAction = lstDocAction.getSelectedItem().getLabel();
|
||||||
MessageFormat mf = new MessageFormat(Msg.getMsg(Env.getAD_Language(Env.getCtx()), "ConfirmOnDocAction"));
|
MessageFormat mf = new MessageFormat(Msg.getMsg(Env.getAD_Language(Env.getCtx()), "ConfirmOnDocAction"));
|
||||||
Object[] arguments = new Object[]{docAction};
|
Object[] arguments = new Object[]{docAction};
|
||||||
FDialog.ask(0, this, mf.format(arguments), new Callback<Boolean>() {
|
FDialog.ask(gridTab.getWindowNo(), this, "", mf.format(arguments), new Callback<Boolean>() {
|
||||||
@Override
|
@Override
|
||||||
public void onCallback(Boolean result) {
|
public void onCallback(Boolean result) {
|
||||||
if(result)
|
if(result)
|
||||||
|
|
|
@ -315,7 +315,11 @@ public class FDialog
|
||||||
if (adMessage != null && !adMessage.equals(""))
|
if (adMessage != null && !adMessage.equals(""))
|
||||||
out.append(Msg.getMsg(Env.getCtx(), adMessage));
|
out.append(Msg.getMsg(Env.getCtx(), adMessage));
|
||||||
if (msg != null && msg.length() > 0)
|
if (msg != null && msg.length() > 0)
|
||||||
out.append("\n").append(msg);
|
{
|
||||||
|
if (out.length() > 0)
|
||||||
|
out.append("\n");
|
||||||
|
out.append(msg);
|
||||||
|
}
|
||||||
String s = out.toString().replace("\n", "<br>");
|
String s = out.toString().replace("\n", "<br>");
|
||||||
|
|
||||||
Callback<Integer> msgCallback = null;
|
Callback<Integer> msgCallback = null;
|
||||||
|
@ -579,7 +583,11 @@ public class FDialog
|
||||||
if (adMessage != null && !adMessage.equals(""))
|
if (adMessage != null && !adMessage.equals(""))
|
||||||
out.append(Msg.getMsg(Env.getCtx(), adMessage));
|
out.append(Msg.getMsg(Env.getCtx(), adMessage));
|
||||||
if (msg != null && msg.length() > 0)
|
if (msg != null && msg.length() > 0)
|
||||||
out.append("\n").append(msg);
|
{
|
||||||
|
if (out.length() > 0)
|
||||||
|
out.append("\n");
|
||||||
|
out.append(msg);
|
||||||
|
}
|
||||||
String s = out.toString().replace("\n", "<br>");
|
String s = out.toString().replace("\n", "<br>");
|
||||||
|
|
||||||
int response = Messagebox.showDialog(s, title, Messagebox.OK | Messagebox.CANCEL, Messagebox.QUESTION, msgCallback, (msgCallback == null));
|
int response = Messagebox.showDialog(s, title, Messagebox.OK | Messagebox.CANCEL, Messagebox.QUESTION, msgCallback, (msgCallback == null));
|
||||||
|
|
Loading…
Reference in New Issue