修改psdt增加原值机位信息记录。 修改dnld发送消息到msg
This commit is contained in:
@@ -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() )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user