|
@@ -1,17 +1,38 @@
|
|
|
package org.jeecg.modules.saleCode.controller;
|
|
|
|
|
|
+import java.io.OutputStream;
|
|
|
import java.io.UnsupportedEncodingException;
|
|
|
import java.io.IOException;
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.net.URLDecoder;
|
|
|
+import java.net.URLEncoder;
|
|
|
+import java.nio.charset.StandardCharsets;
|
|
|
import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
+import com.alibaba.excel.EasyExcel;
|
|
|
+import com.alibaba.excel.ExcelWriter;
|
|
|
+import com.alibaba.excel.enums.WriteDirectionEnum;
|
|
|
+import com.alibaba.excel.support.ExcelTypeEnum;
|
|
|
+import com.alibaba.excel.write.metadata.WriteSheet;
|
|
|
+import com.alibaba.excel.write.metadata.fill.FillConfig;
|
|
|
+import com.alibaba.excel.write.metadata.fill.FillWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
import org.jeecg.common.aspect.annotation.PermissionData;
|
|
|
+import org.jeecg.common.util.DateUtils;
|
|
|
+import org.jeecg.modules.baseCode.entity.BaseProductClass;
|
|
|
+import org.jeecg.modules.baseCode.entity.BaseShipArchive;
|
|
|
+import org.jeecg.modules.baseCode.entity.BaseTemplates;
|
|
|
+import org.jeecg.modules.baseCode.service.IBaseProductClassService;
|
|
|
+import org.jeecg.modules.baseCode.service.IBaseShipArchiveService;
|
|
|
+import org.jeecg.modules.baseCode.service.IBaseTemplatesService;
|
|
|
import org.jeecg.modules.baseCode.service.ISerialPatternService;
|
|
|
+import org.jeecg.modules.cuspCode.entity.CuspCustomerProfile;
|
|
|
+import org.jeecg.modules.cuspCode.service.ICuspCustomerProfileService;
|
|
|
import org.jeecg.modules.purCode.entity.PurCommissionRequest;
|
|
|
import org.jeecg.modules.purCode.entity.PurOrder;
|
|
|
import org.jeecg.modules.purCode.service.IPurCommissionRequestService;
|
|
@@ -19,6 +40,8 @@ import org.jeecg.modules.purCode.service.IPurOrderService;
|
|
|
import org.jeecg.modules.saleCode.entity.*;
|
|
|
import org.jeecg.modules.saleCode.service.*;
|
|
|
import org.jeecg.modules.saleCode.vo.SaleOrderAlert;
|
|
|
+import org.jeecg.modules.system.entity.SysUser;
|
|
|
+import org.jeecg.modules.system.service.ISysUserService;
|
|
|
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
|
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
|
import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
@@ -34,6 +57,7 @@ import org.jeecg.modules.saleCode.entity.SaleOrder;
|
|
|
import org.jeecg.modules.saleCode.vo.SaleOrderPage;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
@@ -80,6 +104,19 @@ public class SaleOrderController {
|
|
|
private IPurOrderService purOrderService;
|
|
|
@Autowired
|
|
|
private IPurCommissionRequestService purCommissionRequestService;
|
|
|
+ @Autowired
|
|
|
+ private IBaseTemplatesService baseTemplatesService;
|
|
|
+ @Autowired
|
|
|
+ private ISysUserService sysUserService;
|
|
|
+ @Autowired
|
|
|
+ private IBaseProductClassService baseProductClassService;
|
|
|
+ @Autowired
|
|
|
+ private ICuspCustomerProfileService cuspCustomerProfileService;
|
|
|
+ @Autowired
|
|
|
+ private IBaseShipArchiveService baseShipArchiveService;
|
|
|
+
|
|
|
+ @Value(value = "${jeecg.path.upload}")
|
|
|
+ private String uploadpath;
|
|
|
|
|
|
/**
|
|
|
* 分页列表查询
|
|
@@ -821,4 +858,120 @@ public class SaleOrderController {
|
|
|
return Result.OK("文件导入失败!");
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 导出excel
|
|
|
+ *
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/exportBillXls")
|
|
|
+ public void exportBillXls(HttpServletResponse response, SaleOrder saleOrder1) throws Exception {
|
|
|
+// saleQuotation1.setId("1874732508546240513");
|
|
|
+ BaseTemplates templatesN = baseTemplatesService.getByTemplateType("订单确认无折上折");
|
|
|
+ BaseTemplates templatesZ = baseTemplatesService.getByTemplateType("订单确认有折上折");
|
|
|
+ SaleOrder saleOrder = saleOrderService.getById(saleOrder1.getId());
|
|
|
+ List<SaleOrderProduct> productList = saleOrderProductService.selectByMainId(saleOrder.getId());
|
|
|
+ List<SaleOrderShip> saleOrderShipList = saleOrderShipService.selectByMainId(saleOrder.getId());
|
|
|
+ BaseTemplates templates = null;
|
|
|
+ if (saleOrder.getDoubleDiscount() == null){
|
|
|
+ templates = templatesN;
|
|
|
+ }else{
|
|
|
+ templates = templatesZ;
|
|
|
+ }
|
|
|
+ if (templates != null) {
|
|
|
+ response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
|
|
|
+ response.setCharacterEncoding("utf-8");
|
|
|
+ try {
|
|
|
+ String fileName = URLEncoder.encode(saleOrder.getBillCode(), "UTF-8").replaceAll("\\+", "%20");
|
|
|
+ response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx");
|
|
|
+
|
|
|
+ String filePath = uploadpath + templates.getTemplateFile();
|
|
|
+
|
|
|
+ //填写合同单号和模板, getOutputStream浏览器下载方法写在下方
|
|
|
+ ExcelWriter excelWriter = EasyExcel.write(this.getOutputStream(fileName, response)).withTemplate(filePath).build();
|
|
|
+ WriteSheet writeSheet = EasyExcel.writerSheet(0, "sheet1").build();
|
|
|
+ String productionClass = saleOrder.getProductionClass();
|
|
|
+ if (StringUtils.isNotBlank(productionClass)) {
|
|
|
+
|
|
|
+ BaseProductClass classEnt = baseProductClassService.getById(productionClass);
|
|
|
+ if (classEnt != null) {
|
|
|
+ saleOrder.setProductionClass(classEnt.getName());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ String getQuotationCustomer = saleOrder.getCustomer();
|
|
|
+ if (StringUtils.isNotBlank(getQuotationCustomer)) {
|
|
|
+
|
|
|
+ CuspCustomerProfile classEnt = cuspCustomerProfileService.getById(getQuotationCustomer);
|
|
|
+ if (classEnt != null) {
|
|
|
+
|
|
|
+ saleOrder.setContacts(classEnt.getContacts());
|
|
|
+ saleOrder.setPhone(classEnt.getPhone());
|
|
|
+ saleOrder.setEmail(classEnt.getEmail());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ BigDecimal orderMoney = BigDecimal.ZERO;
|
|
|
+ for(SaleOrderProduct o:productList){
|
|
|
+ BigDecimal amount = o.getTaxAmount() == null ? BigDecimal.ZERO: o.getTaxAmount();
|
|
|
+ orderMoney = orderMoney.add(amount);
|
|
|
+ }
|
|
|
+ saleOrder.setOrderMoney(orderMoney);
|
|
|
+
|
|
|
+ String shipname = "";
|
|
|
+ String imo = "";
|
|
|
+
|
|
|
+ if(oConvertUtils.listIsNotEmpty(saleOrderShipList)){
|
|
|
+
|
|
|
+ shipname = saleOrderShipList.stream().map(SaleOrderShip::getShipName).distinct().collect(Collectors.joining());
|
|
|
+
|
|
|
+ LambdaQueryWrapper<BaseShipArchive> shipArchiveLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ shipArchiveLambdaQueryWrapper.in(BaseShipArchive::getId,saleOrderShipList.stream().map(SaleOrderShip::getShipId).collect(Collectors.joining()));
|
|
|
+ List<BaseShipArchive> baseShipArchiveList = baseShipArchiveService.list(shipArchiveLambdaQueryWrapper);
|
|
|
+
|
|
|
+ if(oConvertUtils.listIsNotEmpty(baseShipArchiveList)){
|
|
|
+ imo = baseShipArchiveList.stream().map(BaseShipArchive::getImo).distinct().collect(Collectors.joining());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ saleOrder.setShipName(shipname);
|
|
|
+ saleOrder.setImo(imo);
|
|
|
+ saleOrder.setContactsNo(saleOrder.getProjectName());
|
|
|
+ if(productList.size() > 0){
|
|
|
+
|
|
|
+ saleOrder.setQualityGrade(productList.get(0).getQualityGrade());
|
|
|
+ }
|
|
|
+ //
|
|
|
+ saleOrder.setBillDateText(DateUtils.date2Str(saleOrder.getBillDate(), DateUtils.date_sdf.get()));
|
|
|
+
|
|
|
+ int rowNum = 1;
|
|
|
+ for (SaleOrderProduct product : productList){
|
|
|
+ product.setRowNumber(rowNum++);
|
|
|
+ }
|
|
|
+ // 制单人信息
|
|
|
+ SysUser sysUser = sysUserService.getUserByName(saleOrder.getCreateBy());
|
|
|
+ saleOrder.setSalesPhone(sysUser.getPhone());
|
|
|
+ saleOrder.setSalesEmail(sysUser.getEmail());
|
|
|
+ // 组合填充时,因为多组填充的数据量不确定,需要在多组填充完之后另起一行
|
|
|
+ FillConfig fillConfig = FillConfig.builder().direction(WriteDirectionEnum.VERTICAL).forceNewRow(Boolean.TRUE).build();
|
|
|
+ excelWriter.fill(new FillWrapper(productList), fillConfig, writeSheet);
|
|
|
+ excelWriter.fill(saleOrder, writeSheet);
|
|
|
+ excelWriter.finish();
|
|
|
+
|
|
|
+ } catch (Exception ex) {
|
|
|
+ ex.printStackTrace();
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 这是ExcelUtil.getOutputStream
|
|
|
+ * 这里就是将文件下载交给了浏览器
|
|
|
+ *
|
|
|
+ * @param
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public OutputStream getOutputStream(String fileName, HttpServletResponse response) throws Exception {
|
|
|
+ // 这里文件名如果涉及中文一定要使用URL编码,否则会乱码
|
|
|
+ String exportFileName = URLEncoder.encode(fileName + ExcelTypeEnum.XLSX.getValue(), StandardCharsets.UTF_8.toString());
|
|
|
+ response.setContentType("application/force-download");
|
|
|
+ response.setHeader("Content-Disposition", "attachment;filename=" + exportFileName);
|
|
|
+ return response.getOutputStream();
|
|
|
+ }
|
|
|
+
|
|
|
}
|