|
|
@@ -1,5 +1,7 @@
|
|
|
package com.goafanti.demand.controller;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
@@ -196,6 +198,7 @@ public class AdminDemandApiController extends CertifyApiController {
|
|
|
}
|
|
|
if(AFTConstants.YES == auditResult){
|
|
|
d.setAuditStatus(DemandAuditStatus.AUDITED.getCode());
|
|
|
+ d.setReleaseDate(new Date());
|
|
|
}else if(AFTConstants.NO == auditResult){
|
|
|
d.setAuditStatus(DemandAuditStatus.UNAUDITED.getCode());
|
|
|
}
|