|
|
|
@ -33,6 +33,7 @@ public class ConstructTaskOutstandingTableFromMasterTable extends ConstructOutst
|
|
|
|
m.clear();
|
|
|
|
m.clear();
|
|
|
|
m.readFromCursor(tagMetadata);
|
|
|
|
m.readFromCursor(tagMetadata);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (m.containsNonNullValue(TaskToTagMetadata.TAG_UUID)) {
|
|
|
|
TaskOutstanding oe = new TaskOutstanding();
|
|
|
|
TaskOutstanding oe = new TaskOutstanding();
|
|
|
|
oe.setValue(TaskOutstanding.ENTITY_ID_PROPERTY, itemId);
|
|
|
|
oe.setValue(TaskOutstanding.ENTITY_ID_PROPERTY, itemId);
|
|
|
|
oe.setValue(TaskOutstanding.COLUMN_STRING, NameMaps.TAG_ADDED_COLUMN);
|
|
|
|
oe.setValue(TaskOutstanding.COLUMN_STRING, NameMaps.TAG_ADDED_COLUMN);
|
|
|
|
@ -40,6 +41,7 @@ public class ConstructTaskOutstandingTableFromMasterTable extends ConstructOutst
|
|
|
|
oe.setValue(TaskOutstanding.CREATED_AT, createdAt);
|
|
|
|
oe.setValue(TaskOutstanding.CREATED_AT, createdAt);
|
|
|
|
outstandingDao.createNew(oe);
|
|
|
|
outstandingDao.createNew(oe);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
} finally {
|
|
|
|
tagMetadata.close();
|
|
|
|
tagMetadata.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|