|
|
@@ -12,7 +12,6 @@ import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import javax.validation.Valid;
|
|
|
|
|
|
-import org.apache.commons.lang3.time.DateFormatUtils;
|
|
|
import org.apache.commons.lang3.time.DateUtils;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
@@ -584,18 +583,6 @@ public class AdminTechProjectApiController extends CertifyApiController {
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
- /** 进入项目立项 **/
|
|
|
- @RequestMapping(value = "/toSetUpProject", method = RequestMethod.GET)
|
|
|
- public Result toSetUpProject(String orderNo,String buyerName){
|
|
|
- Result res = new Result();
|
|
|
- ProjectListBo bo = new ProjectListBo();
|
|
|
- bo.setOrderNo(orderNo);
|
|
|
- bo.setBuyerName(buyerName);
|
|
|
- bo.setSignDate(DateFormatUtils.format(new Date(), AFTConstants.YYYYMMDDHHMMSS));
|
|
|
- res.setData(bo);
|
|
|
- return res;
|
|
|
- }
|
|
|
-
|
|
|
/** 项目立项 **/
|
|
|
@RequestMapping(value = "/setUpProject", method = RequestMethod.GET)
|
|
|
public Result setUpProject(String orderNo,String signComment){
|