IDEMPIERE-4342:[2pack]trim space on tables name of sql on packout detail (#130)
This commit is contained in:
parent
e057072bc7
commit
9ca83e7d94
|
@ -199,6 +199,9 @@ public class GenericPOElementHandler extends AbstractElementHandler {
|
||||||
|
|
||||||
for (int i = 1; i < components.length; i++) {
|
for (int i = 1; i < components.length; i++) {
|
||||||
String tables[] = components[i].split("[>]");
|
String tables[] = components[i].split("[>]");
|
||||||
|
for (int nameIndex = 0; nameIndex < tables.length; nameIndex++) {
|
||||||
|
tables [nameIndex] = tables[nameIndex].trim();
|
||||||
|
}
|
||||||
exportDetail(ctx, document, po, tables);
|
exportDetail(ctx, document, po, tables);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue