You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.3 KiB
85 lines
2.3 KiB
package core.process;
|
|
|
|
import core.operation.FillInformation;
|
|
import error.GExcptInit;
|
|
import error.GExcptSQL;
|
|
import gdms.Configuration;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
public class C_SecretaryFillReplyRecord extends C_FillInformation{
|
|
|
|
String graduationDesignId;
|
|
Map<String,String> vMap;
|
|
private static String buttonName ="提交答辩记录";
|
|
private static String iconURL="../cssFile/images/fill.png";
|
|
private static String targetURL="/home/secretary-fill-reply-record";
|
|
private static String info = "";
|
|
|
|
private static String table="graduation_design_reply_opinion_record_score";
|
|
private static String field ="reply_secretary_record_status";
|
|
|
|
public void fillInformation() throws Exception{
|
|
if(!check()) throw new GExcptInit("FillInformation Attrs Init error!");
|
|
FillInformation fillInformation=new FillInformation();
|
|
fillInformation.setOptions(new HashMap<>());
|
|
fillInformation.addOptions("table",table);
|
|
String date= Configuration.dateFormat.format(new Date());
|
|
vMap.put("secretary_record_date",date);
|
|
Map<String, String>limits = new HashMap<>();
|
|
limits.put("id",this.getGraduationDesignId());
|
|
fillInformation.addOptions("limits",limits);
|
|
fillInformation.execute(null);
|
|
updateStatus();
|
|
|
|
}
|
|
protected boolean check() {
|
|
if(this.getGraduationDesignId()==null||this.getVMap()==null)
|
|
return false;
|
|
return true;
|
|
}
|
|
public String getGraduationDesignId() {
|
|
return graduationDesignId;
|
|
}
|
|
@Override
|
|
public void setGraduationDesignId(String graduationDesignId) {
|
|
this.graduationDesignId = graduationDesignId;
|
|
}
|
|
|
|
@Override
|
|
public void updateStatus() throws GExcptSQL {
|
|
core.process.Utils.updateStatus(graduationDesignId,table, field);
|
|
}
|
|
|
|
public void setVMap(Map<String, String> vMap) {
|
|
this.vMap = vMap;
|
|
}
|
|
|
|
public Map<String, String> getVMap() {
|
|
return vMap;
|
|
}
|
|
|
|
|
|
@Override
|
|
public String getInfo() {
|
|
return info;
|
|
}
|
|
|
|
@Override
|
|
public String getTargetURL() {
|
|
return targetURL;
|
|
}
|
|
|
|
@Override
|
|
public String getIconURL() {
|
|
return iconURL;
|
|
}
|
|
|
|
@Override
|
|
public String getButtonName() {
|
|
return buttonName;
|
|
}
|
|
}
|