main
黄海 10 months ago
parent 52ecfc6b4a
commit dff7965e3e

@ -49,6 +49,7 @@
<artifactId>aspose-pdf</artifactId>
<version>22.7.1</version>
</dependency>
<!-- Java字节码的类库,破解需要-->
<dependency>
<groupId>org.javassist</groupId>

@ -0,0 +1,15 @@
package Tools.DataEase;
import org.htmlunit.*;
import org.htmlunit.html.HtmlElement;
import org.htmlunit.html.HtmlPage;
import java.io.IOException;
public class TestRead {
public static void main(String[] args) throws IOException {
String url = "http://www.wmarkj.com:27080/#/de-link/NtXhclS0";
}
}

@ -113,21 +113,7 @@ public class FillSubject {
_form_valueMap.clear();
}
/**
*
* @return
*/
public static boolean getZhuanJaiCheckStatus(){
boolean ZhuanJiaCheck = false;
String install_area = GtzzConst.CHANGCHUAN;//长春市
//新增加的项目数据需要根据全局变量ZhuanJiaCheck=1还是ZhuanJiaCheck=0来决定是不是生成这个项目的评审专家和专家组组长
String sql = "select global_value from t_base_global where install_area=? and global_code=?";
String global_value = Db.findFirst(sql, install_area, "ZhuanJiaCheck").getStr("global_value");
if (global_value.equals("1")) {
ZhuanJiaCheck = true;
}
return ZhuanJiaCheck;
}
/**
* JSON
@ -360,7 +346,7 @@ public class FillSubject {
}
//是否需要进行专家相关的审核操作
boolean ZhuanJiaCheck = getZhuanJaiCheckStatus();
boolean ZhuanJiaCheck = gm.getZhuanJaiCheckStatus();
String subject_ids = "";
//4、修改为已扫描完成
for (Record record : list) {

@ -15,29 +15,55 @@ public class GtzzConst {
//select * from t_gtzz_step where step_code='0307'
public static String EXPERT_SHIJI="0307";
/**
4
/*
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
step_code=0201
step_code=0201
1 gm.getZhuanJaiCheckStatus()=1
便step_code=0202step_code=0203
0201
1ZhuanJiaCheck=1
便step_code=0202step_code=0203
2 gm.getZhuanJaiCheckStatus()=0
(JAVA)ZhuanJiaCheck=0
(1)ys_id=1
gm.saveYsSubject(1, subject_ids);
2ZhuanJiaCheck=0
ZhuanJiaCheck=0,
(1)ys_id=1
(2)
1
gm.saveSubjectExpert(subject_id, GtzzConst.EXPERT_CHUSHEN, GtzzConst.DEFAULT_EXPERT, GtzzConst.DEFAULT_EXPERT);
--------------------------------------------------------------------------------
,
step_code=0202
1 gm.getZhuanJaiCheckStatus()=1
step_code=0203
2 gm.getZhuanJaiCheckStatus()=0
,step_code=0203
:OK
gm.pass(String org_code='03', int progress_id=?, String message='OK', int radio_id=5)
--------------------------------------------------------------------------------
,
step_code=0305
1 gm.getZhuanJaiCheckStatus()=1
step_code=0306
2 gm.getZhuanJaiCheckStatus()=0
:
(1)
gm.saveSubjectExpert(subject_id, GtzzConst.EXPERT_SHIJI, GtzzConst.DEFAULT_EXPERT, GtzzConst.DEFAULT_EXPERT);
step_code=0203
(2),OK
gm.pass(String org_code='03', int progress_id=?, String message='OK', int radio_id=14)
step_code=0306
step_code=0307
progress_id=?
*/
}

@ -1906,6 +1906,23 @@ public class GtzzModel {
updateFinish(progress_id, FinishConst.REFUSE, "审核被拒");
}
/**
*
*
* @return
*/
public boolean getZhuanJaiCheckStatus() {
boolean ZhuanJiaCheck = false;
String install_area = GtzzConst.CHANGCHUAN;//长春市
//新增加的项目数据需要根据全局变量ZhuanJiaCheck=1还是ZhuanJiaCheck=0来决定是不是生成这个项目的评审专家和专家组组长
String sql = "select global_value from t_base_global where install_area=? and global_code=?";
String global_value = Db.findFirst(sql, install_area, "ZhuanJiaCheck").getStr("global_value");
if (global_value.equals("1")) {
ZhuanJiaCheck = true;
}
return ZhuanJiaCheck;
}
/**
*
*

Loading…
Cancel
Save