FR [ 2867966 ] Export PrintPaper
https://sourceforge.net/tracker/?func=detail&aid=2867966&group_id=176962&atid=879335
This commit is contained in:
parent
8989cd0851
commit
6b4d61d945
|
@ -66,6 +66,7 @@ import org.adempiere.pipo.handler.OrgRoleElementHandler;
|
|||
import org.adempiere.pipo.handler.PreferenceElementHandler;
|
||||
import org.adempiere.pipo.handler.PrintFormatElementHandler;
|
||||
import org.adempiere.pipo.handler.PrintFormatItemElementHandler;
|
||||
import org.adempiere.pipo.handler.PrintPaperElementHandler;
|
||||
import org.adempiere.pipo.handler.ProcessAccessElementHandler;
|
||||
import org.adempiere.pipo.handler.ProcessElementHandler;
|
||||
import org.adempiere.pipo.handler.ProcessParaElementHandler;
|
||||
|
@ -242,6 +243,7 @@ public class PackInHandler extends DefaultHandler {
|
|||
handlers.put("trl", new CommonTranslationHandler());
|
||||
handlers.put(ModelValidatorElementHandler.TAG_Name, new ModelValidatorElementHandler());
|
||||
handlers.put(EntityTypeElementHandler.TAG_Name, new EntityTypeElementHandler());
|
||||
handlers.put(PrintPaperElementHandler.TAG_Name, new PrintPaperElementHandler());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -51,6 +51,7 @@ import org.adempiere.pipo.handler.MenuElementHandler;
|
|||
import org.adempiere.pipo.handler.MessageElementHandler;
|
||||
import org.adempiere.pipo.handler.ModelValidatorElementHandler;
|
||||
import org.adempiere.pipo.handler.PrintFormatElementHandler;
|
||||
import org.adempiere.pipo.handler.PrintPaperElementHandler;
|
||||
import org.adempiere.pipo.handler.ProcessElementHandler;
|
||||
import org.adempiere.pipo.handler.ReferenceElementHandler;
|
||||
import org.adempiere.pipo.handler.ReportViewElementHandler;
|
||||
|
@ -65,6 +66,7 @@ import org.compiere.model.X_AD_Element;
|
|||
import org.compiere.model.X_AD_FieldGroup;
|
||||
import org.compiere.model.X_AD_Package_Exp;
|
||||
import org.compiere.model.X_AD_Package_Exp_Detail;
|
||||
import org.compiere.model.X_AD_PrintPaper;
|
||||
import org.compiere.model.X_AD_Reference;
|
||||
import org.compiere.process.ProcessInfoParameter;
|
||||
import org.compiere.process.SvrProcess;
|
||||
|
@ -126,6 +128,7 @@ public class PackOut extends SvrProcess
|
|||
CommonTranslationHandler translationHandler = new CommonTranslationHandler();
|
||||
ModelValidatorElementHandler modelValidatorHandler = new ModelValidatorElementHandler();
|
||||
EntityTypeElementHandler entitytypeHandler = new EntityTypeElementHandler();
|
||||
PrintPaperElementHandler printPaperHandler = new PrintPaperElementHandler();
|
||||
|
||||
/**
|
||||
* Prepare - e.g., get Parameters.
|
||||
|
@ -826,6 +829,14 @@ public class PackOut extends SvrProcess
|
|||
entitytypeHandler.create(getCtx(), packOutDocument);
|
||||
//getCtx().remove(X_AD_Package_Exp_Detail.COLUMNNAME_AD_EntityType_ID);
|
||||
}
|
||||
|
||||
public void createPrintPaper (int AD_PrintPaper_ID, TransformerHandler packOutDocument) throws SAXException
|
||||
{
|
||||
Env.setContext(getCtx(), X_AD_PrintPaper.COLUMNNAME_AD_PrintPaper_ID, AD_PrintPaper_ID);
|
||||
printPaperHandler.create(getCtx(), packOutDocument);
|
||||
getCtx().remove(X_AD_PrintPaper.COLUMNNAME_AD_PrintPaper_ID);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void copyFile (String sourceName, String copyName ) {
|
||||
|
|
|
@ -183,8 +183,8 @@ public class PrintFormatElementHandler extends AbstractElementHandler {
|
|||
|
||||
public void create(Properties ctx, TransformerHandler document)
|
||||
throws SAXException {
|
||||
int AD_PrintFormat_ID = Env.getContextAsInt(ctx,
|
||||
X_AD_Package_Exp_Detail.COLUMNNAME_AD_PrintFormat_ID);
|
||||
int AD_PrintFormat_ID = Env.getContextAsInt(ctx, X_AD_Package_Exp_Detail.COLUMNNAME_AD_PrintFormat_ID);
|
||||
PackOut packOut = (PackOut) ctx.get("PackOutProcess");
|
||||
|
||||
if (formats.contains(AD_PrintFormat_ID))
|
||||
return;
|
||||
|
@ -204,8 +204,11 @@ public class PrintFormatElementHandler extends AbstractElementHandler {
|
|||
ResultSet rs = pstmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
|
||||
X_AD_PrintFormat m_Printformat = new X_AD_PrintFormat(ctx, rs
|
||||
.getInt("AD_PrintFormat_ID"), null);
|
||||
X_AD_PrintFormat m_Printformat = new X_AD_PrintFormat(ctx, rs.getInt("AD_PrintFormat_ID"), null);
|
||||
|
||||
if (m_Printformat.getAD_PrintPaper_ID() > 0)
|
||||
packOut.createPrintPaper(m_Printformat.getAD_PrintPaper_ID(), document);
|
||||
|
||||
createPrintFormatBinding(atts, m_Printformat);
|
||||
document.startElement("", "", "printformat", atts);
|
||||
|
||||
|
|
|
@ -0,0 +1,255 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package org.adempiere.pipo.handler;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
|
||||
import javax.xml.transform.sax.TransformerHandler;
|
||||
|
||||
import org.adempiere.exceptions.AdempiereException;
|
||||
import org.adempiere.pipo.AbstractElementHandler;
|
||||
import org.adempiere.pipo.Element;
|
||||
import org.adempiere.pipo.PackOut;
|
||||
import org.adempiere.pipo.exception.POSaveFailedException;
|
||||
import org.compiere.model.I_AD_PrintPaper;
|
||||
import org.compiere.model.MTable;
|
||||
import org.compiere.model.PO;
|
||||
import org.compiere.model.POInfo;
|
||||
import org.compiere.util.Env;
|
||||
import org.compiere.util.Util;
|
||||
import org.xml.sax.Attributes;
|
||||
import org.xml.sax.SAXException;
|
||||
import org.xml.sax.helpers.AttributesImpl;
|
||||
|
||||
/**
|
||||
* @author teo.sarca@gmail.com
|
||||
* <li>FR [ 2867966 ] Export PrintPaper
|
||||
* https://sourceforge.net/tracker/?func=detail&aid=2867966&group_id=176962&atid=879335
|
||||
*/
|
||||
public class PrintPaperElementHandler extends AbstractElementHandler
|
||||
{
|
||||
public static final String TAG_Name = "printpaper";
|
||||
|
||||
private final List<Integer> list = new ArrayList<Integer>();
|
||||
|
||||
protected String getTagName()
|
||||
{
|
||||
return TAG_Name;
|
||||
}
|
||||
|
||||
protected String getTableName()
|
||||
{
|
||||
return I_AD_PrintPaper.Table_Name;
|
||||
}
|
||||
|
||||
protected final int getTable_ID()
|
||||
{
|
||||
return MTable.getTable_ID(getTableName());
|
||||
}
|
||||
|
||||
protected String getKeyColumnName()
|
||||
{
|
||||
return I_AD_PrintPaper.COLUMNNAME_AD_PrintPaper_ID;
|
||||
}
|
||||
|
||||
protected String getIdentifierColumnName()
|
||||
{
|
||||
return I_AD_PrintPaper.COLUMNNAME_Name;
|
||||
}
|
||||
|
||||
protected String[] getAttributeNames()
|
||||
{
|
||||
final String[] attributeNames = new String[]{
|
||||
I_AD_PrintPaper.COLUMNNAME_Name,
|
||||
I_AD_PrintPaper.COLUMNNAME_Description,
|
||||
I_AD_PrintPaper.COLUMNNAME_IsActive,
|
||||
I_AD_PrintPaper.COLUMNNAME_IsDefault,
|
||||
I_AD_PrintPaper.COLUMNNAME_IsLandscape,
|
||||
I_AD_PrintPaper.COLUMNNAME_Code,
|
||||
I_AD_PrintPaper.COLUMNNAME_MarginTop,
|
||||
I_AD_PrintPaper.COLUMNNAME_MarginLeft,
|
||||
I_AD_PrintPaper.COLUMNNAME_MarginRight,
|
||||
I_AD_PrintPaper.COLUMNNAME_MarginBottom,
|
||||
I_AD_PrintPaper.COLUMNNAME_SizeX,
|
||||
I_AD_PrintPaper.COLUMNNAME_SizeY,
|
||||
I_AD_PrintPaper.COLUMNNAME_DimensionUnits,
|
||||
};
|
||||
return attributeNames;
|
||||
}
|
||||
|
||||
protected int getExportItem_ID(Properties ctx)
|
||||
{
|
||||
final int id = Env.getContextAsInt(ctx, getKeyColumnName());
|
||||
return id;
|
||||
}
|
||||
|
||||
protected PO getCreatePO(Properties ctx, int id, String trxName)
|
||||
{
|
||||
return MTable.get(ctx, getTableName()).getPO(id, trxName);
|
||||
}
|
||||
|
||||
public void startElement(Properties ctx, Element element) throws SAXException
|
||||
{
|
||||
final String elementValue = element.getElementValue();
|
||||
final Attributes atts = element.attributes;
|
||||
|
||||
final String strIdentifier = atts.getValue(getIdentifierColumnName());
|
||||
final int id = get_IDWithColumn(ctx, getTableName(), getIdentifierColumnName(), strIdentifier);
|
||||
final PO po = getCreatePO(ctx, id, getTrxName(ctx));
|
||||
final String keyColumnName = getKeyColumnName();
|
||||
log.info(elementValue+" "+strIdentifier+"["+id+"]");
|
||||
|
||||
if (id <= 0 && keyColumnName != null && getIntValue(atts, keyColumnName, 0) <= PackOut.MAX_OFFICIAL_ID)
|
||||
{
|
||||
po.set_ValueOfColumn(keyColumnName, getIntValue(atts, keyColumnName, 0));
|
||||
}
|
||||
|
||||
final int AD_Backup_ID;
|
||||
final String Object_Status;
|
||||
if (id > 0)
|
||||
{
|
||||
AD_Backup_ID = copyRecord(ctx, getTableName(), po);
|
||||
Object_Status = "Update";
|
||||
}
|
||||
else
|
||||
{
|
||||
Object_Status = "New";
|
||||
AD_Backup_ID = 0;
|
||||
}
|
||||
|
||||
for (String attributeName : getAttributeNames())
|
||||
{
|
||||
loadAttribute(atts, attributeName, po);
|
||||
}
|
||||
|
||||
if (po.save(getTrxName(ctx)) == true)
|
||||
{
|
||||
record_log (ctx, 1, strIdentifier, getTagName(), po.get_ID(),
|
||||
AD_Backup_ID, Object_Status,
|
||||
getTableName(), getTable_ID());
|
||||
}
|
||||
else
|
||||
{
|
||||
record_log (ctx, 0, strIdentifier, getTagName(), po.get_ID(),
|
||||
AD_Backup_ID, Object_Status,
|
||||
getTableName(), getTable_ID());
|
||||
throw new POSaveFailedException("Failed to save message.");
|
||||
}
|
||||
}
|
||||
|
||||
public void endElement(Properties ctx, Element element) throws SAXException
|
||||
{
|
||||
}
|
||||
|
||||
public void create(Properties ctx, TransformerHandler document) throws SAXException
|
||||
{
|
||||
final int id = getExportItem_ID(ctx);
|
||||
if (list.contains(id))
|
||||
return;
|
||||
list.add(id);
|
||||
|
||||
final PO po = getCreatePO(ctx, id, null);
|
||||
final AttributesImpl atts = new AttributesImpl();
|
||||
createMessageBinding(atts, po);
|
||||
document.startElement("", "", getTagName(), atts);
|
||||
document.endElement("", "", getTagName());
|
||||
}
|
||||
|
||||
private AttributesImpl createMessageBinding(AttributesImpl atts, PO po)
|
||||
{
|
||||
atts.clear();
|
||||
// Add ID if it's official
|
||||
String keyColumnName = getKeyColumnName();
|
||||
if (keyColumnName != null && po.get_ID() <= PackOut.MAX_OFFICIAL_ID)
|
||||
{
|
||||
addAttribute(atts, keyColumnName, po);
|
||||
}
|
||||
for (String name : getAttributeNames())
|
||||
{
|
||||
addAttribute(atts, name, po);
|
||||
}
|
||||
return atts;
|
||||
}
|
||||
|
||||
protected void loadAttribute(Attributes atts, String name, PO po)
|
||||
{
|
||||
final String strValueExact = atts.getValue(name);
|
||||
String strValue = strValueExact;
|
||||
if (Util.isEmpty(strValue, true))
|
||||
{
|
||||
strValue = null;
|
||||
}
|
||||
else
|
||||
{
|
||||
strValue = strValue.trim();
|
||||
}
|
||||
|
||||
final POInfo poInfo = POInfo.getPOInfo(po.getCtx(), getTable_ID());
|
||||
final Class<?> clazz = poInfo.getColumnClass(poInfo.getColumnIndex(name));
|
||||
if (strValue == null)
|
||||
{
|
||||
po.set_ValueOfColumn(name, null);
|
||||
}
|
||||
else if (clazz == BigDecimal.class)
|
||||
{
|
||||
po.set_ValueOfColumn(name, new BigDecimal(strValue));
|
||||
}
|
||||
else if (clazz == Integer.class)
|
||||
{
|
||||
po.set_ValueOfColumn(name, new BigDecimal(strValue).intValueExact());
|
||||
}
|
||||
else if (clazz == String.class)
|
||||
{
|
||||
po.set_ValueOfColumn(name, strValueExact);
|
||||
}
|
||||
else if (clazz == Boolean.class)
|
||||
{
|
||||
po.set_ValueOfColumn(name, Boolean.valueOf(strValue));
|
||||
}
|
||||
else if (clazz == Timestamp.class)
|
||||
{
|
||||
Timestamp ts = Timestamp.valueOf(strValue);
|
||||
po.set_ValueOfColumn(name, ts);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new AdempiereException("Class not supported - "+clazz);
|
||||
}
|
||||
}
|
||||
|
||||
protected boolean getBooleanValue(Attributes atts, String qName, boolean defaultValue)
|
||||
{
|
||||
String s = atts.getValue(qName);
|
||||
return s != null ? Boolean.valueOf(s) : defaultValue;
|
||||
}
|
||||
|
||||
protected int getIntValue(Attributes atts, String qName, int defaultValue)
|
||||
{
|
||||
Object o = atts.getValue(qName);
|
||||
if (o == null)
|
||||
return defaultValue;
|
||||
if (o instanceof Number)
|
||||
return ((Number)o).intValue();
|
||||
return Integer.parseInt(o.toString());
|
||||
}
|
||||
|
||||
private final void addAttribute(AttributesImpl atts, String name, PO po)
|
||||
{
|
||||
Object value = po.get_Value(name);
|
||||
atts.addAttribute("", "", name, "CDATA", toStringAttribute(value));
|
||||
}
|
||||
|
||||
private final String toStringAttribute(Object value)
|
||||
{
|
||||
if (value == null)
|
||||
return "";
|
||||
if (value instanceof Boolean)
|
||||
return ((Boolean)value).booleanValue() == true ? "true" : "false";
|
||||
return value.toString();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue