|
@@ -5,16 +5,14 @@ import com.alibaba.fastjson.JSONObject;
|
|
|
import com.tourism.common.log.annotation.OperationLog;
|
|
|
import com.tourism.common.log.model.constant.SysOperationLogType;
|
|
|
import com.github.pagehelper.page.PageMethod;
|
|
|
+import com.tourism.webadmin.back.vo.*;
|
|
|
+import com.tourism.webadmin.back.dto.*;
|
|
|
+import com.tourism.webadmin.back.model.*;
|
|
|
+import com.tourism.webadmin.back.service.*;
|
|
|
import com.tourism.common.core.object.*;
|
|
|
import com.tourism.common.core.util.*;
|
|
|
import com.tourism.common.core.constant.*;
|
|
|
import com.tourism.common.core.annotation.MyRequestBody;
|
|
|
-import com.tourism.webadmin.back.dto.DeliveryOrderDto;
|
|
|
-import com.tourism.webadmin.back.dto.DeliveryOrderItemsDto;
|
|
|
-import com.tourism.webadmin.back.model.DeliveryOrder;
|
|
|
-import com.tourism.webadmin.back.model.DeliveryOrderItems;
|
|
|
-import com.tourism.webadmin.back.service.DeliveryOrderService;
|
|
|
-import com.tourism.webadmin.back.vo.DeliveryOrderVo;
|
|
|
import com.tourism.common.additional.config.ApplicationConfig;
|
|
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
@@ -191,6 +189,11 @@ public class DeliveryOrderController {
|
|
|
Set<String> translatedDictFieldSet = new HashSet<>();
|
|
|
List<DeliveryOrder> dataList =
|
|
|
ImportUtil.doImport(headerInfos, skipHeader, filename, DeliveryOrder.class, translatedDictFieldSet);
|
|
|
+ CallResult result = deliveryOrderService.verifyImportList(dataList, translatedDictFieldSet);
|
|
|
+ if (!result.isSuccess()) {
|
|
|
+ // result中返回了具体的验证失败对象,如果需要返回更加详细的错误,可根据实际情况手动修改。
|
|
|
+ return ResponseResult.errorFrom(result);
|
|
|
+ }
|
|
|
deliveryOrderService.saveNewBatch(dataList, -1);
|
|
|
return ResponseResult.success();
|
|
|
}
|
|
@@ -215,7 +218,7 @@ public class DeliveryOrderController {
|
|
|
// 导出文件的标题数组
|
|
|
// NOTE: 下面的代码中仅仅导出了主表数据,主表聚合计算数据和主表关联字典的数据。
|
|
|
// 一对一从表数据的导出,可根据需要自行添加。如:headerMap.put("slaveFieldName.xxxField", "标题名称")
|
|
|
- Map<String, String> headerMap = new LinkedHashMap<>(21);
|
|
|
+ Map<String, String> headerMap = new LinkedHashMap<>(22);
|
|
|
headerMap.put("id", "主键");
|
|
|
headerMap.put("deliveryTime", "配送时间");
|
|
|
headerMap.put("deliveryAddress", "配送地址");
|
|
@@ -224,12 +227,12 @@ public class DeliveryOrderController {
|
|
|
headerMap.put("tableware", "餐具数量");
|
|
|
headerMap.put("orderNo", "订单号");
|
|
|
headerMap.put("orderTime", "下单时间");
|
|
|
- headerMap.put("payType", "支付方式");
|
|
|
+ headerMap.put("payTypeDictMap.name", "支付方式");
|
|
|
headerMap.put("orderAmount", "订单金额");
|
|
|
headerMap.put("payAmount", "实付金额");
|
|
|
- headerMap.put("orderStatus", "订单状态");
|
|
|
+ headerMap.put("orderStatusDictMap.name", "订单状态");
|
|
|
headerMap.put("customerId", "用户id");
|
|
|
- headerMap.put("refundStatus", "退款状态");
|
|
|
+ headerMap.put("refundStatusDictMap.name", "退款状态");
|
|
|
headerMap.put("packCharge", "打包费");
|
|
|
headerMap.put("deliveryFee", "配送费");
|
|
|
headerMap.put("createUserId", "创建用户");
|
|
@@ -237,6 +240,7 @@ public class DeliveryOrderController {
|
|
|
headerMap.put("updateUserId", "更新用户");
|
|
|
headerMap.put("updateTime", "更新时间");
|
|
|
headerMap.put("dataState", "删除标记(1: 正常 -1: 已删除)");
|
|
|
+ headerMap.put("shopName", "店铺名称");
|
|
|
ExportUtil.doExport(resultList, headerMap, "deliveryOrder.xlsx");
|
|
|
}
|
|
|
|
|
@@ -276,7 +280,7 @@ public class DeliveryOrderController {
|
|
|
CallResult verifyResult;
|
|
|
// 下面是输入参数中,主表关联数据的验证。
|
|
|
DeliveryOrder deliveryOrder = MyModelUtil.copyTo(deliveryOrderDto, DeliveryOrder.class);
|
|
|
- DeliveryOrder originalData;
|
|
|
+ DeliveryOrder originalData = null;
|
|
|
if (forUpdate && deliveryOrder != null) {
|
|
|
originalData = deliveryOrderService.getById(deliveryOrder.getId());
|
|
|
if (originalData == null) {
|
|
@@ -284,6 +288,10 @@ public class DeliveryOrderController {
|
|
|
}
|
|
|
relationData.put("originalData", originalData);
|
|
|
}
|
|
|
+ verifyResult = deliveryOrderService.verifyRelatedData(deliveryOrder, originalData);
|
|
|
+ if (!verifyResult.isSuccess()) {
|
|
|
+ return ResponseResult.errorFrom(verifyResult);
|
|
|
+ }
|
|
|
// 处理主表的一对多关联 [DeliveryOrderItems]
|
|
|
List<DeliveryOrderItems> deliveryOrderItemsList =
|
|
|
MyModelUtil.copyCollectionTo(deliveryOrderItemsDtoList, DeliveryOrderItems.class);
|