IDEMPIERE-2720 Run as Job + EMail : title not translated

This commit is contained in:
Nicolas Micoud 2015-07-15 08:23:51 -05:00
parent e5b4b954cb
commit 27cf18d1f1
1 changed files with 2 additions and 2 deletions

View File

@ -700,13 +700,13 @@ public abstract class AbstractProcessDialog extends Window implements IProcessUI
if (sendEmail) if (sendEmail)
{ {
MClient client = MClient.get(m_ctx, AD_Client_ID); MClient client = MClient.get(m_ctx, AD_Client_ID);
client.sendEMailAttachments(AD_User_ID, process.getName(), m_pi.getSummary() + " " + m_pi.getLogInfo(), getDownloadFiles()); client.sendEMailAttachments(AD_User_ID, process.get_Translation("Name", Env.getAD_Language(Env.getCtx())), m_pi.getSummary() + " " + m_pi.getLogInfo(), getDownloadFiles());
} }
if (createNotice) if (createNotice)
{ {
MNote note = new MNote(m_ctx, "BackgroundJob", AD_User_ID, null); MNote note = new MNote(m_ctx, "BackgroundJob", AD_User_ID, null);
note.setTextMsg(process.getName() + "\n" + m_pi.getSummary()); note.setTextMsg(process.get_Translation("Name", Env.getAD_Language(Env.getCtx())) + "\n" + m_pi.getSummary());
note.setRecord(MPInstance.Table_ID, m_pi.getAD_PInstance_ID()); note.setRecord(MPInstance.Table_ID, m_pi.getAD_PInstance_ID());
note.saveEx(); note.saveEx();