Browse Source

采购订单/销售订单导出初版

fenghaifu 3 tháng trước cách đây
mục cha
commit
65778e77c3

+ 114 - 0
srm-module-code/src/main/java/org/jeecg/modules/purCode/controller/PurOrderController.java

@@ -1,21 +1,41 @@
 package org.jeecg.modules.purCode.controller;
 
+import java.io.OutputStream;
 import java.io.UnsupportedEncodingException;
 import java.io.IOException;
 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.BaseTemplates;
+import org.jeecg.modules.baseCode.service.IBaseProductClassService;
+import org.jeecg.modules.baseCode.service.IBaseTemplatesService;
 import org.jeecg.modules.baseCode.service.ISerialPatternService;
+import org.jeecg.modules.cuspCode.entity.CuspSupplierProfile;
+import org.jeecg.modules.cuspCode.service.ICuspSupplierProfileService;
 import org.jeecg.modules.purCode.entity.*;
 import org.jeecg.modules.purCode.service.*;
 import org.jeecg.modules.purCode.vo.PurOrderAlert;
 import org.jeecg.modules.saleCode.entity.*;
+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;
@@ -30,6 +50,7 @@ import org.jeecg.common.util.oConvertUtils;
 import org.jeecg.modules.purCode.vo.PurOrderPage;
 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;
@@ -70,6 +91,17 @@ public class PurOrderController {
     private IPurDeliveryNoteService purDeliveryNoteService;
     @Autowired
     private IPurPaymentRequestService purPaymentRequestService;
+    @Autowired
+    private IBaseTemplatesService baseTemplatesService;
+    @Autowired
+    private ISysUserService sysUserService;
+    @Autowired
+    private IBaseProductClassService baseProductClassService;
+    @Autowired
+    private ICuspSupplierProfileService cuspSupplierProfileService;
+
+    @Value(value = "${jeecg.path.upload}")
+    private String uploadpath;
 
     /**
      * 分页列表查询
@@ -770,4 +802,86 @@ public class PurOrderController {
         return Result.OK("文件导入失败!");
     }
 
+    /**
+     * 导出采购订单
+     *
+     * @param request
+     * @return
+     */
+    @GetMapping(value = "/exportBillXls")
+    public void exportBillXls(String id, HttpServletRequest request, HttpServletResponse response) throws IOException {
+        BaseTemplates templates = baseTemplatesService.getByTemplateType("采购订单");
+        PurOrder purOrder = purOrderService.getById(id);
+        LambdaQueryWrapper<PurOrderProduct> queryWrapper = new LambdaQueryWrapper<>();
+        queryWrapper.eq(PurOrderProduct::getHeadId, id);
+        List<PurOrderProduct> productList = purOrderProductService.list(queryWrapper);
+        if (templates != null) {
+            response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
+            response.setCharacterEncoding("utf-8");
+            try {
+                String fileName = URLEncoder.encode(purOrder.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 = purOrder.getProductionClass();
+                if (StringUtils.isNotBlank(productionClass)) {
+
+                    BaseProductClass classEnt = baseProductClassService.getById(productionClass);
+                    if (classEnt != null) {
+                        purOrder.setProductionClass(classEnt.getName());
+                    }
+                }
+                purOrder.setBillDateText(DateUtils.date2Str(purOrder.getBillDate(), DateUtils.date_sdf.get()));
+                String getSuppiler = purOrder.getSupplier();
+                if (StringUtils.isNotBlank(getSuppiler)) {
+
+                    CuspSupplierProfile classEnt = cuspSupplierProfileService.getById(getSuppiler);
+                    if (classEnt != null) {
+                        purOrder.setContacts(classEnt.getContacts());
+                        purOrder.setPhone(classEnt.getPhone());
+                        purOrder.setEmail(classEnt.getEmail());
+                    }
+                }
+                // 制单人信息
+                SysUser sysUser = sysUserService.getUserByName(purOrder.getCreateBy());
+                purOrder.setPurchaseman(sysUser.getRealname());
+                purOrder.setPurchasePhone(sysUser.getPhone());
+                purOrder.setPurchaseEmail(sysUser.getEmail());
+                //
+                int rowNum = 1;
+                for (PurOrderProduct product : productList){
+                    product.setRowNumber(rowNum++);
+                }
+                // 组合填充时,因为多组填充的数据量不确定,需要在多组填充完之后另起一行
+                FillConfig fillConfig = FillConfig.builder().direction(WriteDirectionEnum.VERTICAL).forceNewRow(Boolean.TRUE).build();
+                excelWriter.fill(new FillWrapper(productList), fillConfig, writeSheet);
+                excelWriter.fill(purOrder, 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();
+    }
+
 }

+ 15 - 4
srm-module-code/src/main/java/org/jeecg/modules/purCode/entity/PurOrder.java

@@ -3,10 +3,8 @@ package org.jeecg.modules.purCode.entity;
 import java.io.Serializable;
 import java.io.UnsupportedEncodingException;
 import java.util.Date;
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
+
+import com.baomidou.mybatisplus.annotation.*;
 import org.jeecg.common.constant.ProvinceCityArea;
 import org.jeecg.common.util.SpringContextUtils;
 import lombok.Data;
@@ -213,4 +211,17 @@ public class PurOrder implements Serializable {
 	@Excel(name = "来源2", width = 15)
     @ApiModelProperty(value = "来源2")
     private String sourceCode2;
+    //导出字段使用
+    @TableField(exist = false)
+    private String purchasePhone;
+    @TableField(exist = false)
+    private String purchaseEmail;
+    @TableField(exist = false)
+    private String contacts;
+    @TableField(exist = false)
+    private String phone;
+    @TableField(exist = false)
+    private String email;
+    @TableField(exist = false)
+    private String billDateText;
 }

+ 5 - 4
srm-module-code/src/main/java/org/jeecg/modules/purCode/entity/PurOrderProduct.java

@@ -1,10 +1,8 @@
 package org.jeecg.modules.purCode.entity;
 
 import java.io.Serializable;
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
+
+import com.baomidou.mybatisplus.annotation.*;
 import org.jeecg.common.constant.ProvinceCityArea;
 import org.jeecg.common.util.SpringContextUtils;
 import lombok.Data;
@@ -154,4 +152,7 @@ public class PurOrderProduct implements Serializable {
 	@Excel(name = "参照来源", width = 15)
     @ApiModelProperty(value = "参照来源")
     private String sourceType;
+
+    @TableField(exist = false)
+    private Integer rowNumber;
 }

+ 153 - 0
srm-module-code/src/main/java/org/jeecg/modules/saleCode/controller/SaleOrderController.java

@@ -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();
+    }
+
 }

+ 26 - 4
srm-module-code/src/main/java/org/jeecg/modules/saleCode/entity/SaleOrder.java

@@ -2,11 +2,10 @@ package org.jeecg.modules.saleCode.entity;
 
 import java.io.Serializable;
 import java.io.UnsupportedEncodingException;
+import java.math.BigDecimal;
 import java.util.Date;
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
+
+import com.baomidou.mybatisplus.annotation.*;
 import org.jeecg.common.constant.ProvinceCityArea;
 import org.jeecg.common.util.SpringContextUtils;
 import lombok.Data;
@@ -253,4 +252,27 @@ public class SaleOrder implements Serializable {
     private java.math.BigDecimal invoiceMoney;
 //    收款金额(collected money)
     private java.math.BigDecimal collectedMoney;
+
+    //导出字段使用
+    @TableField(exist = false)
+    private String salesPhone;
+    @TableField(exist = false)
+    private String salesEmail;
+
+    @TableField(exist = false)
+    private String contactsNo;
+    @TableField(exist = false)
+    private String contacts;
+    @TableField(exist = false)
+    private String phone;
+    @TableField(exist = false)
+    private String email;
+    @TableField(exist = false)
+    private String shipName;
+    @TableField(exist = false)
+    private String imo;
+    @TableField(exist = false)
+    private String qualityGrade;
+    @TableField(exist = false)
+    private String billDateText;
 }

+ 5 - 4
srm-module-code/src/main/java/org/jeecg/modules/saleCode/entity/SaleOrderProduct.java

@@ -1,10 +1,8 @@
 package org.jeecg.modules.saleCode.entity;
 
 import java.io.Serializable;
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
+
+import com.baomidou.mybatisplus.annotation.*;
 import org.jeecg.common.constant.ProvinceCityArea;
 import org.jeecg.common.util.SpringContextUtils;
 import lombok.Data;
@@ -164,4 +162,7 @@ public class SaleOrderProduct implements Serializable {
     private String currencyGys;//供应商币种
     private BigDecimal exchangeRateGys;//美元汇率
     private BigDecimal taxPriceGys;//供应商采购单价
+
+    @TableField(exist = false)
+    private Integer rowNumber;
 }