IDEMPIERE-1496 Customer RMA and Vendor RMA Create From dialog missing translation / based on patch from Flemming Birch

This commit is contained in:
Carlos Ruiz 2013-11-20 09:46:51 -05:00
parent 692b1f5541
commit f701e71d88
1 changed files with 3 additions and 8 deletions

View File

@ -48,12 +48,7 @@ public abstract class CreateFromRMA extends CreateFrom {
public boolean dynInit() throws Exception public boolean dynInit() throws Exception
{ {
log.config(""); log.config("");
setTitle(Msg.getElement(Env.getCtx(), "M_RMA_ID") + " .. " + Msg.translate(Env.getCtx(), "CreateFrom"));
boolean isSOTrx = true;
String value = Env.getContext(Env.getCtx(), getGridTab().getWindowNo(), MRMA.COLUMNNAME_IsSOTrx);
if (value != null && value.equalsIgnoreCase("N"))
isSOTrx = false;
setTitle(isSOTrx ? "Customer" : "Vendor" + " RMA - Create Lines From");
return true; return true;
} }
@ -187,9 +182,9 @@ public abstract class CreateFromRMA extends CreateFrom {
// Header Info // Header Info
Vector<String> columnNames = new Vector<String>(7); Vector<String> columnNames = new Vector<String>(7);
columnNames.add(Msg.getMsg(Env.getCtx(), "Select")); columnNames.add(Msg.getMsg(Env.getCtx(), "Select"));
columnNames.add("Line"); columnNames.add(Msg.translate(Env.getCtx(), "Line"));
columnNames.add(Msg.translate(Env.getCtx(), "M_Product_ID")); columnNames.add(Msg.translate(Env.getCtx(), "M_Product_ID"));
columnNames.add("ASI"); columnNames.add(Msg.translate(Env.getCtx(), "SerNo"));
columnNames.add(Msg.translate(Env.getCtx(), "Quantity")); columnNames.add(Msg.translate(Env.getCtx(), "Quantity"));
columnNames.add(Msg.getElement(Env.getCtx(), "QtyDelivered", false)); columnNames.add(Msg.getElement(Env.getCtx(), "QtyDelivered", false));