|
|
@@ -1,15 +1,6 @@
|
|
|
package com.goafanti.order.controller;
|
|
|
|
|
|
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
-
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.cache.annotation.Cacheable;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
-
|
|
|
import com.goafanti.common.bo.Result;
|
|
|
import com.goafanti.common.constant.ErrorConstants;
|
|
|
import com.goafanti.common.controller.CertifyApiController;
|
|
|
@@ -21,9 +12,14 @@ import com.goafanti.order.bo.InputNewOrderRefund;
|
|
|
import com.goafanti.order.bo.InputTChangeTask;
|
|
|
import com.goafanti.order.bo.NewOrderChangeBo;
|
|
|
import com.goafanti.order.service.OrderChangeService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
import java.io.IOException;
|
|
|
-import java.util.List;
|
|
|
|
|
|
@RestController
|
|
|
@RequestMapping(value = "/api/admin/orderChange")
|
|
|
@@ -253,6 +249,13 @@ public class OrderChangeApiController extends CertifyApiController {
|
|
|
}
|
|
|
/**
|
|
|
* 变更审核
|
|
|
+ * 赠送:营销-经理-总经理审核-财务(已收款情况)-总裁
|
|
|
+ * 重报:营销-经理-总经理审核-技术员-财务-财务总监-总裁
|
|
|
+ * 仅项目:营销-经理-总经理审核-技术员-技术总监-财务-财务总监-总裁
|
|
|
+ * 项目&金额:营销-经理-总经理审核-技术员-经理经理-技术总监-财务-财务总监-总裁
|
|
|
+ * 退单退款:营销-经理-总经理审核-技术员-经理经理-技术总监-财务-财务总监-总裁-董事长(大于2K,需董事长审核)-财务退票
|
|
|
+ * 退单不退款:营销-经理-总经理审核-技术员-经理经理-技术总监-财务-财务总监-总裁-财务退票
|
|
|
+ * 仅金额:营销-经理-总经理审核-技术总监-财务-财务总监-总裁
|
|
|
*/
|
|
|
@RequestMapping(value = "/orderChangeAudit", method = RequestMethod.POST)
|
|
|
public Result orderChangeAudit(String changeId,String remarks,Integer status,Integer processState,Integer rejectState){
|