|
|
|
@ -2,13 +2,14 @@ package core.process;
|
|
|
|
|
|
|
|
|
|
import core.operation.FillInformation;
|
|
|
|
|
import error.GExcptInit;
|
|
|
|
|
import gdms.Configuration;
|
|
|
|
|
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
//评阅老师评阅
|
|
|
|
|
public class C_ReviewerFillReview extends TempProcess {
|
|
|
|
|
public class C_ReviewerFillReview extends C_FillInformation {
|
|
|
|
|
public String graduationDesignId;
|
|
|
|
|
public Map<String,String> vMap;
|
|
|
|
|
protected static String buttonName ="评阅老师评阅";
|
|
|
|
@ -23,8 +24,7 @@ public class C_ReviewerFillReview extends TempProcess {
|
|
|
|
|
FillInformation fillInformation=new FillInformation();
|
|
|
|
|
fillInformation.setOptions(new HashMap<>());
|
|
|
|
|
fillInformation.addOptions("table",table);
|
|
|
|
|
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-ddHH:mm:ss");
|
|
|
|
|
String date=df.format(new Date());
|
|
|
|
|
String date= Configuration.dateFormat.format(new Date());
|
|
|
|
|
vMap.put("reviewer_score_date",date);
|
|
|
|
|
Map<String, String>limits = new HashMap<>();
|
|
|
|
|
limits.put("id",this.getGraduationDesignId());
|
|
|
|
|