MealOrderService.java 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  1. package com.ywt.mg.services;
  2. import com.ywt.mg.configs.Constants;
  3. import com.ywt.mg.core.SqlHelper;
  4. import com.ywt.mg.core.utils.*;
  5. import com.ywt.mg.domain.entities.OrderPayment;
  6. import com.ywt.mg.domain.entities.RefundLog;
  7. import com.ywt.mg.domain.mealEntities.Shop;
  8. import com.ywt.mg.domain.mealEntities.UserMealOrderView;
  9. import com.ywt.mg.domain.models.ConstantDef;
  10. import com.ywt.mg.domain.models.ExcelDataMap;
  11. import com.ywt.mg.domain.models.enums.*;
  12. import com.ywt.mg.domain.models.nutrimeal.MealOrderInfo;
  13. import com.ywt.mg.domain.models.pojo.CustomExcelItem;
  14. import com.ywt.mg.domain.models.pojo.ExcelCollectPojo;
  15. import com.ywt.mg.params.mealOrder.MealOrderListRequest;
  16. import com.ywt.mg.web.common.ExcelDownloadSrv;
  17. import org.slf4j.Logger;
  18. import org.slf4j.LoggerFactory;
  19. import org.springframework.beans.factory.annotation.Autowired;
  20. import org.springframework.jdbc.core.BeanPropertyRowMapper;
  21. import org.springframework.jdbc.core.JdbcTemplate;
  22. import org.springframework.stereotype.Service;
  23. import java.text.SimpleDateFormat;
  24. import java.util.*;
  25. import java.util.stream.Collectors;
  26. @Service
  27. public class MealOrderService {
  28. private Logger logger = LoggerFactory.getLogger(MealOrderService.class);
  29. @Autowired
  30. private SqlHelper sqlHelper;
  31. @Autowired
  32. private DownloadRecordService downloadRecordService;
  33. @Autowired
  34. private JdbcTemplate jdbcTemplate;
  35. @Autowired
  36. private ShopService shopService;
  37. @Autowired
  38. private OrderDishService orderDishService;
  39. @Autowired
  40. private RefundLogService refundLogService;
  41. //客户端类型:商家 PC 端
  42. public static final int CLIENT_PC_MERCHANT = 1;
  43. //客户端类型:管理后台
  44. public static final int CLIENT_WEB_MG = 2;
  45. public static final String DATE_FORMAT1 = "yyyy-MM-dd";
  46. @Autowired
  47. private OrderPaymentService orderPaymentService;
  48. public List<UserMealOrderView> queryDownLoadMealOrderList(MealOrderListRequest request) {
  49. Map<String, Object> map = queryMealOrderListCommon(request);
  50. List<Object> paramList = (List<Object>) map.get(Constants.PARAM_LIST);
  51. String whereSql = (String) map.get(Constants.WHERE_SQL);
  52. // 分页查找
  53. StringBuilder sqlBuilder = new StringBuilder();
  54. // 拼凑sql语句
  55. sqlBuilder.append("select * from user_meal_order_view where ")
  56. .append(whereSql)
  57. .append("order by create_time desc");
  58. return jdbcTemplate.query(sqlBuilder.toString(), paramList.toArray(), new BeanPropertyRowMapper<>(UserMealOrderView.class));
  59. }
  60. private Map queryMealOrderListCommon(MealOrderListRequest request) {
  61. List<Object> paramList = new ArrayList<>();
  62. String whereSql = " ( 1=1 )";
  63. if (!Checker.isNone(request.getOrderNo())) {
  64. String orderNo = request.getOrderNo();
  65. whereSql += " and ( order_no like ?)";
  66. paramList.add("%" + orderNo + "%");
  67. }
  68. if (!Checker.isNone(request.getName())) {
  69. String name = request.getName();
  70. whereSql += " and ( contact_name like ?)";
  71. paramList.add("%" + name + "%");
  72. }
  73. if (!Checker.isNone(request.getMobile())) {
  74. String mobile = request.getMobile();
  75. whereSql += " and ( mobile like ?)";
  76. paramList.add("%" + mobile + "%");
  77. }
  78. if (!Checker.isNone(request.getPickupCode())) {
  79. String pickupCode = request.getPickupCode();
  80. whereSql += " and ( pickup_code like ?)";
  81. paramList.add("%" + pickupCode + "%");
  82. }
  83. if (!Checker.isNone(request.getType())) {
  84. String type = request.getType();
  85. boolean dineInStatusCompat = Checker.getBooleanValue(request.isDineInStatusCompat());
  86. if (dineInStatusCompat && (type.equals(String.valueOf(NutrimealOrderTypeEnum.DOGGY_BAG.getValue())) || type.equals(String.valueOf(NutrimealOrderTypeEnum.DINE_IN_SHOP.getValue())))) {
  87. whereSql += " and ( type = 2 or type = 3)";
  88. } else {
  89. whereSql += " and ( type = ?)";
  90. paramList.add(Integer.parseInt(type));
  91. }
  92. }
  93. if (!Checker.isNone(request.getPayType())) {
  94. String payType = request.getPayType();
  95. whereSql += " and ( pay_type = ?)";
  96. paramList.add(Integer.parseInt(payType));
  97. }
  98. if (!Checker.isNone(request.getPaymentNo())) {
  99. String paymentNo = request.getPaymentNo();
  100. whereSql += " and ( payment_no = ?)";
  101. paramList.add(paymentNo);
  102. }
  103. int hospitalId = Checker.getIntegerValue(request.getHospitalId());
  104. if (hospitalId > 0) {
  105. whereSql += " and ( hospital_id = ?)";
  106. paramList.add(hospitalId);
  107. }
  108. /**
  109. * 根据职工管理版本将shopId, 转为shopIds, 即是shopIds 拥有多个shopId
  110. *
  111. */
  112. String shopId = Checker.getStringValue(request.getShopId());
  113. String shopIds = Checker.getStringValue(request.getShopIds());
  114. if (!Checker.isNone(shopId)) {
  115. int shopIdInt = Integer.parseInt(shopId);
  116. if (shopIdInt > 0) {
  117. whereSql += " and ( shop_id = ?)";
  118. paramList.add(shopIdInt);
  119. } else if (!Checker.isNone(shopIds) && !shopIds.equals("0") && !shopIds.startsWith(",") && !shopIds.endsWith(",")) {
  120. whereSql += " and ( shop_id in (" + shopIds + "))";
  121. }
  122. }
  123. try {
  124. int clientTypeInt = 2;
  125. if (!Checker.isNone(request.getClientType())) {
  126. clientTypeInt = Integer.parseInt(request.getClientType());
  127. }
  128. if (clientTypeInt == CLIENT_PC_MERCHANT) {
  129. // PC 商家端过滤未支付订单,只显示支付成功或失败的订单
  130. whereSql += " and ( status <> 0 and payment_status > 1 )";
  131. }
  132. } catch (NumberFormatException e) {
  133. logger.warn("MealOrderService#queryMealOrderListCommon(): Cannot format clientType {} as number!", shopIds);
  134. }
  135. if (request.getbIsStaff() != null) {
  136. boolean isStaff = request.getbIsStaff();
  137. whereSql += isStaff ? " and staff_id is not null " : " and staff_id is null ";
  138. }
  139. /**
  140. * status参考下面枚举
  141. * @see com.ywt.mg.domain.models.enums.MealOrderStatusEnum
  142. */
  143. if (!Checker.isNone(request.getStatus())) {
  144. int statusInt = Integer.parseInt(request.getStatus());
  145. whereSql += " and ( (status & ?) = ? and status < ?) ";
  146. paramList.add(statusInt);
  147. paramList.add(statusInt);
  148. paramList.add(2 * statusInt);
  149. }
  150. if (!Checker.isNone(request.getStatus())) {
  151. try {
  152. int payStatusInt = Integer.parseInt(request.getStatus());
  153. if (payStatusInt == 0) {
  154. // payStatus 传 0,可以查到未支付的订单
  155. whereSql += " and ( payment_status is null or payment_status = 0 ) ";
  156. } else {
  157. whereSql += " and ( payment_status = ? ) ";
  158. paramList.add(payStatusInt);
  159. }
  160. } catch (NumberFormatException e) {
  161. logger.error("MealOrderService#queryMealOrderListCommon(orderNo={} , name={} , mobile={} , type={} , " +
  162. "status={} , payStatus={} , payTimeStart={} , payTimeEnd={} , shopId={} , clientType={} , payType={} , " +
  163. "paymentNo={} , refundTimeStart={} , refundTimeEnd={} , dineInStatusCompat={} , hospitalId={} , pickupCode={} ):\npayStatus 参数解析失败{}",
  164. request.getOrderNo(), request.getName(), request.getMobile(), request.getType(), request.getStatus(), request.getPayStatus(), request.getPayTimeStart(), request.getPayTimeEnd(), shopIds, request.getClientType(),
  165. request.getPayType(), request.getPaymentNo(), request.getRefundTimeStart(), request.getRefundTimeEnd(), request.isDineInStatusCompat(), hospitalId, request.getPickupCode(),
  166. e.getMessage(), e);
  167. }
  168. }
  169. String Format_Date = DATE_FORMAT1;
  170. SimpleDateFormat format = new SimpleDateFormat(Format_Date);
  171. try {
  172. // 支付时间
  173. if (!Checker.isNone(request.getPayTimeEnd())) {
  174. String payTimeEnd = request.getPayTimeEnd();
  175. whereSql += " and ( payment_time < ?)";
  176. Date date = format.parse(payTimeEnd);
  177. //把日期往后增加一天.整数往后推,负数往前移动
  178. Calendar calendar = new GregorianCalendar();
  179. calendar.setTime(date);
  180. calendar.add(Calendar.DATE, 1);
  181. //这个时间就是日期往后推一天的结果
  182. date = calendar.getTime();
  183. paramList.add(date);
  184. }
  185. if (!Checker.isNone(request.getPayTimeStart())) {
  186. String payTimeStart = request.getPayTimeStart();
  187. whereSql += " and ( payment_time >= ?)";
  188. Date date = format.parse(payTimeStart);
  189. paramList.add(date);
  190. }
  191. //退款时间
  192. if (!Checker.isNone(request.getRefundTimeEnd())) {
  193. String refundTimeEnd = request.getRefundTimeEnd();
  194. whereSql += " and ( refund_time < ?)";
  195. Date date = format.parse(refundTimeEnd);
  196. //把日期往后增加一天.整数往后推,负数往前移动
  197. Calendar calendar = new GregorianCalendar();
  198. calendar.setTime(date);
  199. calendar.add(Calendar.DATE, 1);
  200. //这个时间就是日期往后推一天的结果
  201. date = calendar.getTime();
  202. paramList.add(date);
  203. }
  204. if (!Checker.isNone(request.getRefundTimeStart())) {
  205. String refundTimeStart = request.getRefundTimeStart();
  206. whereSql += " and ( refund_time >= ?)";
  207. Date date = format.parse(refundTimeStart);
  208. paramList.add(date);
  209. }
  210. // 对账时间
  211. // billStartTime, billEndTime
  212. if (!Checker.isNone(request.getBillEndTime())) {
  213. String billEndTime = request.getBillEndTime();
  214. whereSql += " and ( payment_time < ? or refund_time < ? )";
  215. Date date = format.parse(billEndTime);
  216. //把日期往后增加一天.整数往后推,负数往前移动
  217. Calendar calendar = new GregorianCalendar();
  218. calendar.setTime(date);
  219. calendar.add(Calendar.DATE, 1);
  220. //这个时间就是日期往后推一天的结果
  221. date = calendar.getTime();
  222. paramList.add(date);
  223. paramList.add(date);
  224. }
  225. if (!Checker.isNone(request.getBillStartTime())) {
  226. String billStartTime = request.getBillStartTime();
  227. whereSql += " and ( payment_time >= ? or refund_time >= ? )";
  228. Date date = format.parse(billStartTime);
  229. paramList.add(date);
  230. paramList.add(date);
  231. }
  232. } catch (Exception e) {
  233. logger.error("MealOrderService#queryMealOrderListCommon(orderNo={} , name={} , mobile={} , type={} , status={} , " +
  234. "payStatus={} , payTimeStart={} , payTimeEnd={} ,billStartTime={} , billEndTime={} , shopId={} ):\n {}",
  235. request.getOrderNo(), request.getName(), request.getMobile(), request.getType(), request.getStatus(), request.getPayStatus(), request.getPayTimeStart(), request.getPayTimeEnd(), request.getBillStartTime(), request.getBillEndTime(), shopIds, e.getMessage(), e);
  236. }
  237. try {
  238. // 处理交易流水号,考虑到性能,直接采用全匹配到方式
  239. if (!Checker.isNull(request.getTransactionId())) {
  240. String transactionId = request.getTransactionId();
  241. OrderPayment orderPayment = orderPaymentService.getOrderPaymentByTransactionId(transactionId);
  242. if (!Checker.isNone(orderPayment)) {
  243. whereSql += " and ( order_no = ? )";
  244. paramList.add(orderPayment.getOrderNo());
  245. } else {
  246. whereSql += " and ( order_no = '-1' )";
  247. }
  248. }
  249. } catch (Exception e) {
  250. logger.error("MealOrderService#queryMealOrderListCommon(transactionId={} ):\n {} ", request.getTransactionId(), e.getMessage(), e);
  251. }
  252. whereSql += " and (deleted = 0)";
  253. Map<String, Object> map = new HashMap<>();
  254. map.put(Constants.WHERE_SQL, whereSql);
  255. map.put(Constants.PARAM_LIST, paramList);
  256. return map;
  257. }
  258. public void downloadMealOrderListNew(int downloadRecordId, String fileName, MealOrderListRequest request) {
  259. try {
  260. String col2 = "订单号";
  261. String col3 = "支付流水号";
  262. String col3_1 = "交易流水号";
  263. String col3_2 = "店铺名";
  264. String col4 = "客户姓名";
  265. String col5 = "客户手机号";
  266. String col6 = "取餐方式";
  267. String col7 = "状态";
  268. String col8 = "支付状态";
  269. String col9 = "支付方式";
  270. String col10 = "总价";
  271. String col11 = "支付时间";
  272. String col12 = "退款时间";
  273. String col13 = "取餐时间";
  274. String col14 = "备注";
  275. String col15 = "微信支付";
  276. String col16 = "金币支付";
  277. String col17 = "现场支付";
  278. String col18 = "医院";
  279. // String filename = "订餐订单列表";
  280. String col19 = "取餐码";
  281. String col20 = "职工";
  282. String col21 = "科室";
  283. String[] columns;
  284. String clientType = "2";
  285. if (!Checker.isNone(request.getClientType())) {
  286. clientType = request.getClientType();
  287. }
  288. int clientTypeInt = Integer.parseInt(clientType);
  289. if (clientTypeInt == CLIENT_WEB_MG) {
  290. // 管理后台显示支付流水号
  291. columns = new String[]{
  292. col2, col3, col3_1, col3_2, col18, col4, col5, col20, col21, col6, col19, col7, col8, col9,
  293. col10, col15, col16, col17, col11, col12, col13, col14
  294. };
  295. } else {
  296. columns = new String[]{
  297. col2, col4, col5, col20, col6, col19, col7, col8, col9,
  298. col10, col15, col16, col17, col11, col12, col13, col14
  299. };
  300. }
  301. List<Shop> shopList = shopService.getAllShops();
  302. ExcelDataMap map = new ExcelDataMap(columns);
  303. List<UserMealOrderView> userMealOrderViews = queryDownLoadMealOrderList(request);
  304. List<OrderPayment> orderPaymentList = orderPaymentService.getOrderPaymentListByMealOrderList(userMealOrderViews);
  305. userMealOrderViews.forEach(userMealOrderView -> {
  306. // map.getStringListSafely(col1).add(userMealOrderView.getId() + "");
  307. map.getStringListSafely(col2).add(Checker.getStringValue(userMealOrderView.getOrderNo()));
  308. map.getStringListSafely(col4).add(Checker.getStringValue(userMealOrderView.getContactName()));
  309. map.getStringListSafely(col5).add(Checker.getStringValue(userMealOrderView.getMobile()));
  310. String typeStr = NutrimealOrderTypeEnum.getDisplayName(Checker.getIntegerValue(userMealOrderView.getType()));
  311. map.getStringListSafely(col6).add(typeStr);
  312. String statusStr = NutrimealOrderStatusEnum.getDisplayName(Checker.getIntegerValue(userMealOrderView.getStatus()));
  313. map.getStringListSafely(col7).add(statusStr);
  314. String totalPriceStr = FormatUtil.intShrink100ToStr(userMealOrderView.getOrderAmount());
  315. map.getStringListSafely(col10).add(totalPriceStr);
  316. String payTime = FormatUtil.createTimeFormatList(userMealOrderView.getPaymentTime());
  317. map.getStringListSafely(col11).add(payTime);
  318. String deliveryTime = FormatUtil.createTimeFormatList(userMealOrderView.getDeliveryTime());
  319. map.getStringListSafely(col13).add(deliveryTime);
  320. map.getStringListSafely(col9).add(OrderPayTypeEnum.valueOf(Checker.getIntegerValue(userMealOrderView.getPayType())).getDisplayName());
  321. //支付状态
  322. Integer paymentStatus = userMealOrderView.getPaymentStatus();
  323. map.getStringListSafely(col8).add(paymentStatus == null ? NutrimealPaymentStatusEnum.Pending.getDisplayName() :
  324. NutrimealPaymentStatusEnum.valueOf(paymentStatus).getDisplayName());
  325. //退款时间
  326. map.getStringListSafely(col12).add(FormatUtil.createTimeFormatList(userMealOrderView.getRefundTime()));
  327. //备注
  328. String extData = Checker.getStringValue(userMealOrderView.getExtData());
  329. Map<String, Object> m = FormatUtil.stringToMapT(extData);
  330. map.getStringListSafely(col14).add(m == null ? "" : (String) m.getOrDefault("refuseOrderRemark", ""));
  331. if (clientTypeInt == CLIENT_WEB_MG) {
  332. // 管理后台显示支付流水号
  333. map.getStringListSafely(col3).add(Checker.getStringValue(userMealOrderView.getPaymentNo()));
  334. String transactionIdStr = orderPaymentService.getTransactionIdByOrderNo(orderPaymentList, Checker.getStringValue(userMealOrderView.getOrderNo()));
  335. map.getStringListSafely(col3_1).add(transactionIdStr);
  336. String shopName = getShopName(shopList, Checker.getIntegerValue(userMealOrderView.getShopId()));
  337. map.getStringListSafely(col3_2).add(shopName);
  338. map.getStringListSafely(col18).add(BizUtil.getHospitalNameByHospitalId(Checker.getIntegerValue(userMealOrderView.getHospitalId())));
  339. map.getStringListSafely(col21).add(Checker.getStringValue(userMealOrderView.getDeptName()));
  340. }
  341. String wechatPayAmount = FormatUtil.intShrink100ToStr(userMealOrderView.getWechatPayAmount());
  342. map.getStringListSafely(col15).add(wechatPayAmount);
  343. String coinPayAmount = FormatUtil.intShrink100ToStr(userMealOrderView.getCoinPayAmount());
  344. map.getStringListSafely(col16).add(coinPayAmount);
  345. String f2fPayAmount = FormatUtil.intShrink100ToStr(userMealOrderView.getF2fPayAmount());
  346. map.getStringListSafely(col17).add(f2fPayAmount);
  347. map.getStringListSafely(col19).add(Checker.getStringValue(userMealOrderView.getPickupCode()));
  348. map.getStringListSafely(col20).add(userMealOrderView.getStaffId() == null ? "否" : "是");
  349. });
  350. boolean needStat = clientTypeInt == CLIENT_WEB_MG && !Checker.isNone(userMealOrderViews);
  351. int size = userMealOrderViews.size();
  352. // List<ExcelCollectPojo> itemList = getStatisticsData(size, payTotal);
  353. // downloadRecordService.createFileAndUploadOssAndSaveToDataBase(fileName, downloadRecordId, map, itemList);
  354. List<CustomExcelItem> itemList = getStatisticsData(userMealOrderViews, shopList);
  355. downloadRecordService.createMealFileAndUploadOssAndSaveToDataBase(fileName, downloadRecordId, map,
  356. needStat ? itemList : null);
  357. } catch (Exception e) {
  358. logger.error("/mealOrder/downloadMealOrderList(): {}", e.getMessage(), e);
  359. e.printStackTrace();
  360. }
  361. }
  362. /**
  363. * 获取店铺名称
  364. *
  365. * @param shopList 店铺list
  366. * @param shopId 店铺ID
  367. * @return 店铺名称
  368. */
  369. public String getShopName(List<Shop> shopList, int shopId) {
  370. String backValue = "";
  371. Shop shop = shopList.stream().filter(p -> p.getId() == shopId).findFirst().orElse(null);
  372. if (shop != null) {
  373. backValue = shop.getName();
  374. }
  375. return backValue;
  376. }
  377. private List<CustomExcelItem> getStatisticsData(List<UserMealOrderView> userMealOrderViews, List<Shop> shopList) {
  378. int startRows = userMealOrderViews.size() + 3;
  379. Map<Integer, List<UserMealOrderView>> shopDataMap = userMealOrderViews.stream()
  380. // 过滤未支付的订单
  381. .filter(v -> Checker.getIntegerValue(v.getPaymentStatus()) > 1)
  382. .collect(Collectors.groupingBy(UserMealOrderView::getShopId));
  383. int startColumn = 3;
  384. List<CustomExcelItem> customExcelItemList = new ArrayList<>();
  385. // 按店铺统计
  386. for (Integer sId : shopDataMap.keySet()) {
  387. List<UserMealOrderView> orders = shopDataMap.get(sId);
  388. String shopName = getShopName(shopList, sId);
  389. customExcelItemList.add(new CustomExcelItem(startColumn, startRows, shopName, null));
  390. /**
  391. 4、总成本=微信点单成本+金币点单成本+现场点单成本(也等于各个菜品成本价乘以份数的相加的总额) ;
  392. 5、微信点单成本:支付方式是”微信支付“的订单,其各个菜品成本价乘以份数的相加的总额(不包含退款订单) ;
  393. 金币点单成本:支付方式是”微信+金币“的订单,其各个菜品成本价乘以份数的相加的总额(不包含退款订单) ;
  394. 现场点单成本:支付方式是”现场支付“的订单,其各个菜品成本价乘以份数的相加的总额(不包含退款订单) ;*/
  395. List<UserMealOrderView> wechatSinglePointCostList = orders.stream()
  396. .filter(p -> p.getPayType() == OrderPayTypeEnum.WECHAT.getValue()
  397. && RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(p.getRefundStatus()))
  398. .collect(Collectors.toList());
  399. int wechatSinglePointCostInt = orderDishService.getAllDishCostPriceSumByUserMealOrderViewList(wechatSinglePointCostList);
  400. List<UserMealOrderView> coinSinglePointCostList = orders.stream()
  401. .filter(p -> p.getPayType() == OrderPayTypeEnum.COIN.getValue()
  402. && RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(p.getRefundStatus()))
  403. .collect(Collectors.toList());
  404. int coinSinglePointCostInt = orderDishService.getAllDishCostPriceSumByUserMealOrderViewList(coinSinglePointCostList);
  405. List<UserMealOrderView> p2fSinglePointCostList = orders.stream()
  406. .filter(p -> p.getPayType() == OrderPayTypeEnum.F2F.getValue()
  407. && RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(p.getRefundStatus()))
  408. .collect(Collectors.toList());
  409. int p2fSinglePointCostInt = orderDishService.getAllDishCostPriceSumByUserMealOrderViewList(p2fSinglePointCostList);
  410. String wechatSinglePointCost = FormatUtil.intShrink100ToStr(wechatSinglePointCostInt);
  411. String coinSinglePointCost = FormatUtil.intShrink100ToStr(coinSinglePointCostInt);
  412. String p2fSinglePointCost = FormatUtil.intShrink100ToStr(p2fSinglePointCostInt);
  413. String allCost = FormatUtil.intShrink100ToStr(wechatSinglePointCostInt + coinSinglePointCostInt + p2fSinglePointCostInt);
  414. // 总计
  415. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows, "支付总额", null));
  416. customExcelItemList.add(new CustomExcelItem(startColumn + 2, startRows,
  417. FormatUtil.intShrink100ToStr(orders.stream()
  418. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  419. .sum()), null));
  420. customExcelItemList.add(new CustomExcelItem(startColumn + 3, startRows, "退款总额", null));
  421. customExcelItemList.add(new CustomExcelItem(startColumn + 4, startRows,
  422. FormatUtil.intShrink100ToStr(orders.stream()
  423. .filter(v -> RefundStatusEnum.SUCCESS.getValue() == Checker.getIntegerValue(v.getRefundStatus()))
  424. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  425. .sum()), null));
  426. customExcelItemList.add(new CustomExcelItem(startColumn + 5, startRows, "实际支付总额", null));
  427. customExcelItemList.add(new CustomExcelItem(startColumn + 6, startRows,
  428. FormatUtil.intShrink100ToStr(orders.stream()
  429. .filter(v -> RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(v.getRefundStatus()))
  430. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  431. .sum()), null));
  432. customExcelItemList.add(new CustomExcelItem(startColumn + 7, startRows, "总成本", null));
  433. customExcelItemList.add(new CustomExcelItem(startColumn + 8, startRows, allCost, null));
  434. startRows += 1;
  435. // 微信支付
  436. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows, "微信支付总额", null));
  437. customExcelItemList.add(new CustomExcelItem(startColumn + 2, startRows,
  438. FormatUtil.intShrink100ToStr(orders.stream()
  439. .mapToInt(v -> Checker.getIntegerValue(v.getWechatPayAmount()))
  440. .sum()), null));
  441. customExcelItemList.add(new CustomExcelItem(startColumn + 3, startRows, "微信退款总额", null));
  442. customExcelItemList.add(new CustomExcelItem(startColumn + 4, startRows,
  443. FormatUtil.intShrink100ToStr(orders.stream()
  444. .filter(v -> RefundStatusEnum.SUCCESS.getValue() == Checker.getIntegerValue(v.getRefundStatus()))
  445. .mapToInt(v -> Checker.getIntegerValue(v.getWechatPayAmount()))
  446. .sum()), null));
  447. customExcelItemList.add(new CustomExcelItem(startColumn + 5, startRows, "微信实际支付总额", null));
  448. customExcelItemList.add(new CustomExcelItem(startColumn + 6, startRows,
  449. FormatUtil.intShrink100ToStr(orders.stream()
  450. .filter(v -> RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(v.getRefundStatus()))
  451. .mapToInt(v -> Checker.getIntegerValue(v.getWechatPayAmount()))
  452. .sum()), null));
  453. customExcelItemList.add(new CustomExcelItem(startColumn + 7, startRows, "微信点单成本", null));
  454. customExcelItemList.add(new CustomExcelItem(startColumn + 8, startRows, wechatSinglePointCost, null));
  455. startRows += 1;
  456. // 金币支付
  457. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows, "金币支付总额", null));
  458. customExcelItemList.add(new CustomExcelItem(startColumn + 2, startRows,
  459. FormatUtil.intShrink100ToStr(orders.stream()
  460. .mapToInt(v -> Checker.getIntegerValue(v.getCoinPayAmount()))
  461. .sum()), null));
  462. customExcelItemList.add(new CustomExcelItem(startColumn + 3, startRows, "金币退款总额", null));
  463. customExcelItemList.add(new CustomExcelItem(startColumn + 4, startRows,
  464. FormatUtil.intShrink100ToStr(orders.stream()
  465. .filter(v -> RefundStatusEnum.SUCCESS.getValue() == Checker.getIntegerValue(v.getRefundStatus()))
  466. .mapToInt(v -> Checker.getIntegerValue(v.getCoinPayAmount()))
  467. .sum()), null));
  468. customExcelItemList.add(new CustomExcelItem(startColumn + 5, startRows, "金币实际支付总额", null));
  469. customExcelItemList.add(new CustomExcelItem(startColumn + 6, startRows,
  470. FormatUtil.intShrink100ToStr(orders.stream()
  471. .filter(v -> RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(v.getRefundStatus()))
  472. .mapToInt(v -> Checker.getIntegerValue(v.getCoinPayAmount()))
  473. .sum()), null));
  474. customExcelItemList.add(new CustomExcelItem(startColumn + 7, startRows, "金币点单成本", null));
  475. customExcelItemList.add(new CustomExcelItem(startColumn + 8, startRows, coinSinglePointCost, null));
  476. startRows += 1;
  477. // 现场支付
  478. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows, "现场支付总额", null));
  479. customExcelItemList.add(new CustomExcelItem(startColumn + 2, startRows,
  480. FormatUtil.intShrink100ToStr(orders.stream()
  481. .mapToInt(v -> Checker.getIntegerValue(v.getF2fPayAmount()))
  482. .sum()), null));
  483. customExcelItemList.add(new CustomExcelItem(startColumn + 3, startRows, "现场退款总额", null));
  484. customExcelItemList.add(new CustomExcelItem(startColumn + 4, startRows,
  485. FormatUtil.intShrink100ToStr(orders.stream()
  486. .filter(v -> RefundStatusEnum.SUCCESS.getValue() == Checker.getIntegerValue(v.getRefundStatus()))
  487. .mapToInt(v -> Checker.getIntegerValue(v.getF2fPayAmount()))
  488. .sum()), null));
  489. customExcelItemList.add(new CustomExcelItem(startColumn + 5, startRows, "现场实际支付总额", null));
  490. customExcelItemList.add(new CustomExcelItem(startColumn + 6, startRows,
  491. FormatUtil.intShrink100ToStr(orders.stream()
  492. .filter(v -> RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(v.getRefundStatus()))
  493. .mapToInt(v -> Checker.getIntegerValue(v.getF2fPayAmount()))
  494. .sum()), null));
  495. customExcelItemList.add(new CustomExcelItem(startColumn + 7, startRows, "现场点单成本", null));
  496. customExcelItemList.add(new CustomExcelItem(startColumn + 8, startRows, p2fSinglePointCost, null));
  497. startRows += 1;
  498. // 洗碗费
  499. // 目前只计算有金币支付的订单,不包括纯微信支付及现场支付订单。计算的规则是符合条件的订单的微信支付金额总和。
  500. // 等同这个 SQL 语句:
  501. // select sum(wechat_pay_amount) from nutrimeal.meal_order where deleted = 0 and pay_type = 4 and (refund_status is null or refund_status != 1) and wechat_pay_amount is not null ;
  502. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows, "2元洗碗费总额", null));
  503. customExcelItemList.add(new CustomExcelItem(startColumn + 2, startRows,
  504. FormatUtil.intShrink100ToStr(orders.stream()
  505. .filter(v -> OrderPayTypeEnum.COIN.getValue() == Checker.getIntegerValue(v.getPayType()) &&
  506. RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(v.getRefundStatus()))
  507. .mapToInt(v -> Checker.getIntegerValue(v.getWechatPayAmount()))
  508. .sum()), null));
  509. startRows += 2;
  510. // v1.3.1_nfyybyfy 新增职工统计
  511. // 职工支付
  512. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows, "职工支付总额", null));
  513. customExcelItemList.add(new CustomExcelItem(startColumn + 2, startRows,
  514. FormatUtil.intShrink100ToStr(orders.stream()
  515. .filter(v -> Checker.getIntegerValue(v.getStaffId()) > 0)
  516. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  517. .sum()), null));
  518. customExcelItemList.add(new CustomExcelItem(startColumn + 3, startRows, "退款总额", null));
  519. customExcelItemList.add(new CustomExcelItem(startColumn + 4, startRows,
  520. FormatUtil.intShrink100ToStr(orders.stream()
  521. .filter(v -> Checker.getIntegerValue(v.getStaffId()) > 0)
  522. .filter(v -> RefundStatusEnum.SUCCESS.getValue() == Checker.getIntegerValue(v.getRefundStatus()))
  523. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  524. .sum()), null));
  525. customExcelItemList.add(new CustomExcelItem(startColumn + 5, startRows, "实际支付总额", null));
  526. customExcelItemList.add(new CustomExcelItem(startColumn + 6, startRows,
  527. FormatUtil.intShrink100ToStr(orders.stream()
  528. .filter(v -> Checker.getIntegerValue(v.getStaffId()) > 0)
  529. .filter(v -> RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(v.getRefundStatus()))
  530. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  531. .sum()), null));
  532. startRows += 1;
  533. // 非职工支付
  534. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows, "非职工支付总额", null));
  535. customExcelItemList.add(new CustomExcelItem(startColumn + 2, startRows,
  536. FormatUtil.intShrink100ToStr(orders.stream()
  537. .filter(v -> Checker.getIntegerValue(v.getStaffId()) <= 0)
  538. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  539. .sum()), null));
  540. customExcelItemList.add(new CustomExcelItem(startColumn + 3, startRows, "退款总额", null));
  541. customExcelItemList.add(new CustomExcelItem(startColumn + 4, startRows,
  542. FormatUtil.intShrink100ToStr(orders.stream()
  543. .filter(v -> Checker.getIntegerValue(v.getStaffId()) <= 0)
  544. .filter(v -> RefundStatusEnum.SUCCESS.getValue() == Checker.getIntegerValue(v.getRefundStatus()))
  545. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  546. .sum()), null));
  547. customExcelItemList.add(new CustomExcelItem(startColumn + 5, startRows, "实际支付总额", null));
  548. customExcelItemList.add(new CustomExcelItem(startColumn + 6, startRows,
  549. FormatUtil.intShrink100ToStr(orders.stream()
  550. .filter(v -> Checker.getIntegerValue(v.getStaffId()) <= 0)
  551. .filter(v -> RefundStatusEnum.SUCCESS.getValue() != Checker.getIntegerValue(v.getRefundStatus()))
  552. .mapToInt(v -> Checker.getIntegerValue(v.getOrderAmount()))
  553. .sum()), null));
  554. startRows += 2;
  555. }
  556. if (customExcelItemList.size() > 0) {
  557. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows,
  558. "备注(单位:元):", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  559. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows + 1,
  560. "1、支付总额=微信支付总额+金币支付总额+现场支付总额;", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  561. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows + 2,
  562. "2、退款总额=微信退款总额+金币退款总额+现场退款总额;", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  563. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows + 3,
  564. "3、实际支付总额=微信实际支付总额+金币实际支付总额+现场实际支付总额=支付总额-退款总额;", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  565. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows + 4,
  566. "4、总成本=微信点单成本+金币点单成本+现场点单成本(也等于各个菜品成本价乘以份数的相加的总额);", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  567. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows + 5,
  568. "5、微信点单成本:支付方式是“微信支付”的订单,其各个菜品成本价乘以份数的相加的总额(不包含退款订单);", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  569. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows + 6,
  570. " 金币点单成本:支付方式是“微信+金币”的订单,其各个菜品成本价乘以份数的相加的总额(不包含退款订单);", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  571. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows + 7,
  572. " 现场点单成本:支付方式是“现场支付”的订单,其各个菜品成本价乘以份数的相加的总额(不包含退款订单);", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  573. customExcelItemList.add(new CustomExcelItem(startColumn + 1, startRows + 8,
  574. "6、2元洗碗费总额:支付方式是“微信+金币”的订单,其微信支付部分的总额(不包含退款订单)。", ExcelDownloadSrv.getCellFormat4StatRemarkWithNoSetBorder()));
  575. }
  576. return customExcelItemList;
  577. }
  578. public void downloadMealOrderBillList(int downloadRecordId, String fileName, MealOrderListRequest request) {
  579. try {
  580. String col0 = "交易类型*";
  581. String col1 = "系统参考号*";
  582. String col2 = "交易金额*";
  583. String col3 = "交易日期*";
  584. String col4 = "订单号";
  585. String col5 = "类型";
  586. String[] columns = new String[]{col0, col1, col2, col3, col4, col5};
  587. List<Shop> shopList = shopService.getAllShops();
  588. ExcelDataMap map = new ExcelDataMap(columns);
  589. List<UserMealOrderView> userMealOrderViews = queryDownLoadMealOrderList(request);
  590. // List<OrderPayment> orderPaymentList = orderPaymentService.getOrderPaymentListByMealOrderList(userMealOrderViews);
  591. List<MealOrderInfo> list = new ArrayList<>();
  592. if (!Checker.isNone(userMealOrderViews)) {
  593. for (UserMealOrderView p : userMealOrderViews) {
  594. MealOrderInfo info = new MealOrderInfo();
  595. info.setId(p.getId());
  596. // 订单号
  597. info.setOrderNo(p.getOrderNo());
  598. // // 店铺名称
  599. // String shopName = mealOrderService.getShopName(shopList, Checker.getIntegerValue(p.getShopId()));
  600. // item.put("shopName", shopName);
  601. // 客户姓名
  602. info.setContactName(p.getContactName());
  603. info.setMobile(p.getMobile());
  604. int typeInt = Checker.getIntegerValue(p.getType());
  605. String typeStr = MealOrderTypeEnum.getDisplayName(typeInt);
  606. info.setType(typeStr);
  607. // item.put("type", typeStr);
  608. // item.put("typeInt", typeInt);
  609. // 状态
  610. int statusInt = Checker.getIntegerValue(p.getStatus());
  611. String statusStr = MealOrderStatusEnum.getDisplayName(statusInt);
  612. info.setStatus(statusStr);
  613. info.setStatusInt(statusInt);
  614. // item.put("statusInt", statusInt);
  615. // item.put("status", statusStr);
  616. // 总价
  617. info.setTotalStr(FormatUtil.intShrink100ToStr(p.getOrderAmount()));
  618. info.setWechatInt(Checker.getIntegerValue(p.getWechatPayAmount()));
  619. // item.put("totalStr", FormatUtil.intShrink100ToStr(p.getOrderAmount()));
  620. // item.put("wechatStr", FormatUtil.intShrink100ToStr(p.getWechatPayAmount()));
  621. // item.put("wechatInt", Checker.getIntegerValue(p.getWechatPayAmount()));
  622. // item.put("coinStr", FormatUtil.intShrink100ToStr(p.getCoinPayAmount()));
  623. // item.put("cashStr", FormatUtil.intShrink100ToStr(p.getF2fPayAmount()));
  624. // 支付时间
  625. info.setPaymentTime(FormatUtil.createTimeFormatList(p.getPaymentTime()));
  626. // item.put("paymentTime", FormatUtil.createTimeFormatList(p.getPaymentTime()));
  627. // 取餐时间
  628. info.setCreateTime(FormatUtil.createTimeFormatList(p.getDeliveryTime()));
  629. // item.put("createTime", FormatUtil.createTimeFormatList(p.getDeliveryTime()));
  630. //支付方式
  631. // item.put("payType", OrderPayTypeEnum.valueOf(Checker.getIntegerValue(p.getPayType())).getDisplayName());
  632. //支付流水号
  633. info.setPaymentNo(Checker.getStringValue(p.getPaymentNo()));
  634. info.setRefundTime(FormatUtil.createTimeFormatList(p.getRefundTime()));
  635. // item.put("paymentNo", Checker.getStringValue(p.getPaymentNo()));
  636. // item.put("refundTime", FormatUtil.createTimeFormatList(p.getRefundTime()));
  637. Integer paymentStatus = p.getPaymentStatus();
  638. info.setPayStatus(paymentStatus == null ? PaymentStatusEnum.Pending.getDisplayName() :
  639. MealPaymentStatusEnum.valueOf(paymentStatus).getDisplayName());
  640. // item.put("payStatus", paymentStatus == null ? PaymentStatusEnum.Pending.getDisplayName() :
  641. // PaymentStatusEnum.valueOf(paymentStatus).getDisplayName());
  642. String extData = Checker.getStringValue(p.getExtData());
  643. Map<String, Object> m = FormatUtil.stringToMapT(extData);
  644. info.setRemark(m == null ? "" : (String) m.getOrDefault("refuseOrderRemark", ""));
  645. // item.put("remark", m == null ? "" : (String) m.getOrDefault("refuseOrderRemark", ""));
  646. int hid = Checker.getIntegerValue(p.getHospitalId());
  647. list.add(info);
  648. // item.put("hospitalId", hid);
  649. // item.put("hospitalName", BizUtil.getHospitalNameByHospitalId(hid));
  650. // item.put("pickupCode", Checker.getStringValue(p.getPickupCode()));
  651. // item.put("staffId", p.getStaffId());
  652. // item.put("deptName", Checker.getStringValue(p.getDeptName()));
  653. // item.put("extStatus", Checker.getIntegerValue(p.getExtStatus()));
  654. // String transactionIdStr = orderPaymentService.getTransactionIdByOrderNo(orderPaymentList, Checker.getStringValue(p.getOrderNo()));
  655. // item.put("transactionId", transactionIdStr);
  656. }
  657. if (!Checker.isNone(list)) {
  658. List<OrderPayment> orderPaymentList = orderPaymentService.getOrderPaymentListByMealOrderListB(list);
  659. // 得到退款的记录日志(需要从 refund_log 获取 refund_id 字段)
  660. List<RefundLog> refundLogList = refundLogService.getRefundLogListByMealOrderList(list);
  661. List<MealOrderInfo> refundList = new ArrayList<>();
  662. Date billStartTime = DateUtil.stringToDate(request.getBillStartTime() + ConstantDef.BILL_TIME_START_FORMAT);
  663. Date billEndTime = DateUtil.stringToDate(request.getBillEndTime() + ConstantDef.BILL_TIME_END_FORMAT);
  664. for (MealOrderInfo p : list) {
  665. if (PaymentStatusEnum.Success.getDisplayName().equals(p.getPayStatus())
  666. && Checker.getIntegerValue(p.getWechatInt()) > 0
  667. && !Checker.isNone(p.getPaymentTime())) {
  668. // "交易类型*", "系统参考号*", "交易金额*", "交易日期*", "订单号", "类型"
  669. Date paymentTime = DateUtil.stringToDate(p.getPaymentTime() + ConstantDef.BILL_TIME_LIST_FORMAT);
  670. if (!Checker.isNone(paymentTime) && paymentTime.after(billStartTime) && paymentTime.before(billEndTime)) {
  671. // 交易类型: 已支付,已退款,先处理已支付的,再处理已退款的
  672. String type = ConstantDef.BILL_PAYMENT_STR;
  673. // 交易流水号
  674. String transactionId = "";
  675. if (!Checker.isNone(orderPaymentList)) {
  676. OrderPayment orderPayment = orderPaymentList.stream().filter(o -> p.getOrderNo().equals(Checker.getStringValue(o.getOrderNo()))).findFirst().orElse(null);
  677. if (orderPayment != null && !Checker.isNone(orderPayment.getTransactionId())) {
  678. transactionId = Checker.getStringValue(orderPayment.getTransactionId());
  679. }
  680. }
  681. // 交易金额
  682. String totalStr = FormatUtil.intShrink100ToStr(p.getWechatInt());
  683. // 交易时间
  684. String paymentTimeStr = FormatUtil.createTimeFormatDetail(p.getPaymentTime());
  685. // 订单号
  686. String orderNo = Checker.getStringValue(p.getOrderNo());
  687. // 类型
  688. String typeName = "营养餐";
  689. String[] bodyStr = {type, transactionId, totalStr, paymentTimeStr, orderNo, typeName};
  690. map.getStringListSafely(col0).add(type);
  691. map.getStringListSafely(col1).add(transactionId);
  692. map.getStringListSafely(col2).add(totalStr);
  693. map.getStringListSafely(col3).add(paymentTimeStr);
  694. map.getStringListSafely(col4).add(orderNo);
  695. map.getStringListSafely(col5).add(typeName);
  696. // ExcelHelper.settingMainBodyLabelCell(sheet, cellFormat2, n, bodyStr);
  697. // n++;
  698. refundList.addAll(getRefundMealOrderList(list));
  699. }
  700. }
  701. }
  702. for (MealOrderInfo p : refundList) {
  703. if (!Checker.isNone(p) && !Checker.isNone(p.getRefundTime()) && Checker.getIntegerValue(p.getWechatInt()) > 0) {
  704. // "交易类型*", "系统参考号*", "交易金额*", "交易日期*", "订单号", "类型"
  705. Date refundTime = DateUtil.stringToDate(p.getRefundTime() + ConstantDef.BILL_TIME_LIST_FORMAT);
  706. if (!Checker.isNone(refundTime) && refundTime.after(billStartTime) && refundTime.before(billEndTime)) {
  707. String type = ConstantDef.BILL_REFUND_STR;
  708. // 交易流水号
  709. String transactionId = "";
  710. RefundLog refundLog = refundLogList.stream().filter(o -> p.getPaymentNo().equals(o.getOutOrderNo())).findFirst().orElse(null);
  711. if (refundLog != null && !Checker.isNone(refundLog.getRefundId())) {
  712. transactionId = refundLog.getRefundId();
  713. }
  714. // 交易金额
  715. String totalStr = FormatUtil.intShrink100ToStr(p.getWechatInt());
  716. // 交易时间
  717. String refundTimeStr = FormatUtil.createTimeFormatDetail(p.getRefundTime());
  718. // 订单号
  719. String orderNo = Checker.getStringValue(p.getOrderNo());
  720. // 类型
  721. String typeName = "营养餐";
  722. String[] bodyStr = {type, transactionId, totalStr, refundTimeStr, orderNo, typeName};
  723. // ExcelHelper.settingMainBodyLabelCell(sheet, cellFormat2, n, bodyStr);
  724. // n++;
  725. map.getStringListSafely(col0).add(type);
  726. map.getStringListSafely(col1).add(transactionId);
  727. map.getStringListSafely(col2).add(totalStr);
  728. map.getStringListSafely(col3).add(refundTimeStr);
  729. map.getStringListSafely(col4).add(orderNo);
  730. map.getStringListSafely(col5).add(typeName);
  731. }
  732. }
  733. }
  734. }
  735. }
  736. int size = list.size();
  737. List<ExcelCollectPojo> itemList = new ArrayList<>();
  738. downloadRecordService.createFileAndUploadOssAndSaveToDataBase(fileName, downloadRecordId, map, itemList);
  739. } catch (Exception e) {
  740. logger.error("/mealOrder/downloadMealOrderBillsList(): {}", e.getMessage(), e);
  741. e.printStackTrace();
  742. }
  743. }
  744. private List<MealOrderInfo> getRefundMealOrderList(List<MealOrderInfo> list) {
  745. if (!Checker.isNone(list)) {
  746. return list.stream().filter(p -> !Checker.isNone(p.getRefundTime())).collect(Collectors.toList());
  747. }
  748. return new ArrayList<>();
  749. }
  750. }