修改psdt增加原值机位信息记录。 修改dnld发送消息到msg

This commit is contained in:
zhouxiunai
2019-01-09 19:55:18 +08:00
parent 4b27731803
commit c694c62a00
8 changed files with 117 additions and 5 deletions
@@ -22,6 +22,19 @@ public class PSDTHandler extends FlopBaseHandler {
@Override
protected SCHD.FLTR updateFltr(FLOP flop,SCHD.FLTR fltr)
{
//先保存当前航班机位数据
String lpsdt="";
for(STANDDATA node : fltr.getPSDT())
{
lpsdt += node.getPSST();
lpsdt += ",";
}
if(lpsdt.endsWith(","))
{
lpsdt = lpsdt.substring(0, lpsdt.length() - 1);
}
fltr.setLpsdt(lpsdt);
fltr.getPSDT().clear(); //清空旧数据
for(OPTSTANDDATA optStandata : flop.getPSDT() )
{