Commit d205ff9a by manxiaoqiang

2

parent a0190bdf
...@@ -518,11 +518,15 @@ public class ContractServiceImpl implements ContractService{ ...@@ -518,11 +518,15 @@ public class ContractServiceImpl implements ContractService{
//同步修改trackingio的数据 //同步修改trackingio的数据
if(contract.getPlatform().equals("tkio")){ if(contract.getPlatform().equals("tkio")){
accountService.update(contract); accountService.update(contract);
}else if(contract.getPlatform().equals("io")){
accountIOService.update(contract);
} }
}else{ }else{
//同步修改trackingio的数据 //同步修改trackingio的数据
if(contract.getPlatform().equals("tkio")){ if(contract.getPlatform().equals("tkio")){
accountService.forbiden(contract); accountService.forbiden(contract);
}else if(contract.getPlatform().equals("io")){
accountIOService.update(contract);
} }
contract.setStatus("cancel"); contract.setStatus("cancel");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment