|
@@ -10,6 +10,7 @@ import com.fs.erp.dto.ErpOrderQueryRequert;
|
|
|
import com.fs.erp.dto.ErpOrderQueryResponse;
|
|
import com.fs.erp.dto.ErpOrderQueryResponse;
|
|
|
import com.fs.erp.service.IErpOrderService;
|
|
import com.fs.erp.service.IErpOrderService;
|
|
|
import com.fs.his.config.FsSysConfig;
|
|
import com.fs.his.config.FsSysConfig;
|
|
|
|
|
+import com.fs.his.domain.FsStoreOrderScrmComment;
|
|
|
import com.fs.his.dto.ExpressInfoDTO;
|
|
import com.fs.his.dto.ExpressInfoDTO;
|
|
|
import com.fs.his.dto.FsProdItemDTO;
|
|
import com.fs.his.dto.FsProdItemDTO;
|
|
|
import com.fs.his.enums.ShipperCodeEnum;
|
|
import com.fs.his.enums.ShipperCodeEnum;
|
|
@@ -18,6 +19,7 @@ import com.fs.his.param.FsStoreOrderListSParam;
|
|
|
import com.fs.his.param.FsStoreOrderParam;
|
|
import com.fs.his.param.FsStoreOrderParam;
|
|
|
import com.fs.his.param.FsStoreOrderSalesParam;
|
|
import com.fs.his.param.FsStoreOrderSalesParam;
|
|
|
import com.fs.his.service.IFsExpressService;
|
|
import com.fs.his.service.IFsExpressService;
|
|
|
|
|
+import com.fs.his.service.IFsStoreOrderScrmCommentService;
|
|
|
import com.fs.his.utils.ConfigUtil;
|
|
import com.fs.his.utils.ConfigUtil;
|
|
|
import com.fs.his.vo.*;
|
|
import com.fs.his.vo.*;
|
|
|
import com.fs.store.utils.UserUtil;
|
|
import com.fs.store.utils.UserUtil;
|
|
@@ -52,6 +54,10 @@ public class FsStoreOrderController extends BaseController
|
|
|
{
|
|
{
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private IFsStoreOrderService fsStoreOrderService;
|
|
private IFsStoreOrderService fsStoreOrderService;
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private IFsStoreOrderScrmCommentService fsStoreOrderScrmCommentService;
|
|
|
|
|
+
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private IFsExpressService expressService;
|
|
private IFsExpressService expressService;
|
|
|
|
|
|
|
@@ -189,6 +195,18 @@ public class FsStoreOrderController extends BaseController
|
|
|
return toAjax(fsStoreOrderService.updateFsStoreOrder(fsStoreOrder));
|
|
return toAjax(fsStoreOrderService.updateFsStoreOrder(fsStoreOrder));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 修改订单评价
|
|
|
|
|
+ */
|
|
|
|
|
+ @Log(title = "订单评价", businessType = BusinessType.UPDATE)
|
|
|
|
|
+ @PutMapping("/comment")
|
|
|
|
|
+ public AjaxResult edit(@RequestBody FsStoreOrderScrmComment fsStoreOrderScrmComment)
|
|
|
|
|
+ {
|
|
|
|
|
+ return toAjax(fsStoreOrderScrmCommentService.updateFsStoreOrderScrmComment(fsStoreOrderScrmComment));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 删除订单
|
|
* 删除订单
|
|
|
*/
|
|
*/
|