审核订单取消申请接口修改
parent
17a4448fb6
commit
5c2355243c
|
|
@ -590,7 +590,7 @@ public class SyncTaskService {
|
|||
// id
|
||||
for (Record o : list) {
|
||||
String id = o.getStr("id");
|
||||
Record first = Db.findFirst("select * from " + tablename + " where sn = ?", id);
|
||||
Record first = Db.findFirst("select * from " + tablename + " where id = ?", id);
|
||||
if (o.toJson().equals(first.toJson())) {
|
||||
removeList.add(o);
|
||||
}
|
||||
|
|
@ -600,7 +600,7 @@ public class SyncTaskService {
|
|||
// id
|
||||
for (Record o : list) {
|
||||
String id = o.getStr("id");
|
||||
Record first = Db.findFirst("select * from " + tablename + " where sn = ?", id);
|
||||
Record first = Db.findFirst("select * from " + tablename + " where id = ?", id);
|
||||
if (o.toJson().equals(first.toJson())) {
|
||||
removeList.add(o);
|
||||
}
|
||||
|
|
@ -610,7 +610,7 @@ public class SyncTaskService {
|
|||
// id
|
||||
for (Record o : list) {
|
||||
String id = o.getStr("id");
|
||||
Record first = Db.findFirst("select * from " + tablename + " where sn = ?", id);
|
||||
Record first = Db.findFirst("select * from " + tablename + " where id = ?", id);
|
||||
if (o.toJson().equals(first.toJson())) {
|
||||
removeList.add(o);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue