Fixed pack in does not recognize uuid reference.
This commit is contained in:
parent
3f6be1c60d
commit
7470545d87
|
@ -226,7 +226,7 @@ public class PoFiller{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Element e = element.properties.get(qName);
|
Element e = element.properties.get(qName);
|
||||||
if ("table".equalsIgnoreCase(e.attributes.getValue("reference"))) {
|
if (ReferenceUtils.isTableLookup(e) || ReferenceUtils.isUUIDLookup(e)) {
|
||||||
int id = setTableReference(qName);
|
int id = setTableReference(qName);
|
||||||
if (id < 0) {
|
if (id < 0) {
|
||||||
notFounds.add(qName);
|
notFounds.add(qName);
|
||||||
|
|
Loading…
Reference in New Issue