parent
758e682114
commit
474640f5c1
|
|
@ -222,7 +222,7 @@ public class SavePayByWorkflowApiPlugin implements Serializable {
|
||||||
DataEntityPropertyCollection properties = dataEntity.getDataEntityType().getProperties();
|
DataEntityPropertyCollection properties = dataEntity.getDataEntityType().getProperties();
|
||||||
for (IDataEntityProperty property : properties) {
|
for (IDataEntityProperty property : properties) {
|
||||||
String remark = property.getName();
|
String remark = property.getName();
|
||||||
Object value = dataEntity.get("name");
|
Object value = dataEntity.get(remark);
|
||||||
if (value instanceof DynamicObject) {
|
if (value instanceof DynamicObject) {
|
||||||
returnData.put(remark, ((DynamicObject)value).getPkValue());
|
returnData.put(remark, ((DynamicObject)value).getPkValue());
|
||||||
} else if (value instanceof Date) {
|
} else if (value instanceof Date) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue