Commit 13586e90 by 潘际乾

S脚本文件修改goto

parent 9e16915d
...@@ -110,7 +110,10 @@ void setApf(boolean panelvisibleflag) ...@@ -110,7 +110,10 @@ void setApf(boolean panelvisibleflag)
Platform.dbExecuteSql( sql ); Platform.dbExecuteSql( sql );
while( Platform.errorCode() <= 0 ) while( Platform.errorCode() <= 0 )
{ {
Platform.dbFetchFields( "TYP", typ, "CNT", cnt, "EDTFLG", edtflg ); Argument<String> typBox = new Argument<String>("",typ);
Argument<Integer> cntBox = new Argument<Integer>("",cnt);
Argument<String> edtflgBox = new Argument<String>("",edtflg);
Platform.dbFetchFields( "TYP", typBox, "CNT", cntBox, "EDTFLG", edtflgBox );
if( Platform.errorCode() <= 0 ) if( Platform.errorCode() <= 0 )
{ {
Platform.streamInsert( apfstream, 0, Platform.mid( typ, 1, 3 ) + Platform.mid( edtflg, 1, 1 ) + Platform.toString( cnt ) ); Platform.streamInsert( apfstream, 0, Platform.mid( typ, 1, 3 ) + Platform.mid( edtflg, 1, 1 ) + Platform.toString( cnt ) );
......
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