1.打印模板添加客户ID字段,关联所属客户

master
x_z 3 years ago
parent 83cf4129ba
commit cec467a4be

@ -32,6 +32,7 @@ import java.io.File;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import java.time.temporal.ChronoUnit; import java.time.temporal.ChronoUnit;
import java.util.Date; import java.util.Date;
import java.util.List;
@Slf4j @Slf4j
@RestController @RestController
@ -205,4 +206,17 @@ public class CompanyController {
return ResultVOUtils.success(); return ResultVOUtils.success();
} }
/**
*
*
* @param filterCompanyRequest
* @return
*/
@PostMapping("warehouse/info/getCompanyList")
public BaseResponse getCompanyList(@RequestBody FilterCompanyRequest filterCompanyRequest) {
List<CompanyEntity> companyEntities = companyService.getCompanyList(filterCompanyRequest);
return ResultVOUtils.success(companyEntities);
}
} }

@ -1,5 +1,6 @@
package com.glxp.udi.admin.entity.info; package com.glxp.udi.admin.entity.info;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize; import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@ -81,30 +82,38 @@ public class CompanyEntity {
private String unitIdFk; private String unitIdFk;
@TableField(exist = false)
private String newAuditStatus;
@TableField(exist = false)
private String noPassCause;
@TableField(exist = false)
private String auditor;
@TableField(exist = false)
private String filePath; private String filePath;
@TableField(exist = false)
private String newFilePath; private String newFilePath;
@TableField(exist = false)
private String filePath2; private String filePath2;
@TableField(exist = false)
private String newFilePath2; private String newFilePath2;
@TableField(exist = false)
private String filePath3; private String filePath3;
@TableField(exist = false)
private String newFilePath3; private String newFilePath3;
@TableField(exist = false)
private String filePath4; private String filePath4;
@TableField(exist = false)
private String newFilePath4; private String newFilePath4;
private String updateCause;
private String newAuditStatus;
private String noPassCause;
private String auditor;
private String auditStatusList;
} }

@ -1,5 +1,6 @@
package com.glxp.udi.admin.entity.param; package com.glxp.udi.admin.entity.param;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data; import lombok.Data;
@ -11,6 +12,7 @@ public class SystemPDFTemplateEntity {
private int id; private int id;
@TableField("`name`")
private String name; private String name;
private int type; private int type;
@ -19,6 +21,7 @@ public class SystemPDFTemplateEntity {
private String param; private String param;
@TableField("`path`")
private String path; private String path;
private int rowCount; private int rowCount;
@ -33,4 +36,9 @@ public class SystemPDFTemplateEntity {
private String jrxmlPath; private String jrxmlPath;
/**
* ID
*/
private String customerId;
} }

@ -19,4 +19,9 @@ public class SystemPDFTemplateSaveRequest {
private Date create_time; private Date create_time;
private Date update_time; private Date update_time;
private String jrxmlPath; private String jrxmlPath;
/**
* ID
*/
private String customerId;
} }

@ -21,4 +21,9 @@ public class SystemPDFTemplateResponse {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date update_time; private Date update_time;
private String jrxmlPath; private String jrxmlPath;
/**
* ID
*/
private String customerId;
} }

@ -1,5 +1,7 @@
package com.glxp.udi.admin.service.info; package com.glxp.udi.admin.service.info;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.glxp.udi.admin.dao.info.CompanyDao; import com.glxp.udi.admin.dao.info.CompanyDao;
import com.glxp.udi.admin.entity.info.CompanyEntity; import com.glxp.udi.admin.entity.info.CompanyEntity;
@ -9,6 +11,7 @@ import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.List;
@Slf4j @Slf4j
@Service @Service
@ -51,4 +54,15 @@ public class CompanyService {
public String findCompanyName(long customerId) { public String findCompanyName(long customerId) {
return companyDao.findCompanyName(customerId); return companyDao.findCompanyName(customerId);
} }
/**
*
* @param filterCompanyRequest
* @return
*/
public List<CompanyEntity> getCompanyList(FilterCompanyRequest filterCompanyRequest) {
QueryWrapper<CompanyEntity> wrapper = new QueryWrapper<>();
wrapper.like(StrUtil.isNotBlank(filterCompanyRequest.getCompanyName()),"companyName", filterCompanyRequest.getCompanyName());
return companyDao.selectList(wrapper);
}
} }

@ -26,15 +26,6 @@ public class SystemPDFTemplateService {
return systemPDFTemplateDao.selectPage(page, buildQueryWrapper(systemPDFTemplateRequest)); return systemPDFTemplateDao.selectPage(page, buildQueryWrapper(systemPDFTemplateRequest));
} }
private QueryWrapper<SystemPDFTemplateEntity> buildQueryWrapper(SystemPDFTemplateRequest systemPDFTemplateRequest) {
QueryWrapper<SystemPDFTemplateEntity> wrapper = new QueryWrapper<>();
wrapper.like(StrUtil.isNotBlank(systemPDFTemplateRequest.getName()), "name", systemPDFTemplateRequest.getName())
.eq(null != systemPDFTemplateRequest.getModule(), "module", systemPDFTemplateRequest.getModule())
.eq(null != systemPDFTemplateRequest.getId(), "id", systemPDFTemplateRequest.getId())
.orderByDesc("update_time");
return wrapper;
}
public Page<SystemPDFTemplateEntity> listPDFTemplates(Integer page, Integer limit) { public Page<SystemPDFTemplateEntity> listPDFTemplates(Integer page, Integer limit) {
Page<SystemPDFTemplateEntity> pageParam = new Page<>(page, limit); Page<SystemPDFTemplateEntity> pageParam = new Page<>(page, limit);
if (null == page || null == limit) { if (null == page || null == limit) {
@ -68,4 +59,14 @@ public class SystemPDFTemplateService {
public int countByName(String name) { public int countByName(String name) {
return systemPDFTemplateDao.countByName(name); return systemPDFTemplateDao.countByName(name);
} }
private QueryWrapper<SystemPDFTemplateEntity> buildQueryWrapper(SystemPDFTemplateRequest systemPDFTemplateRequest) {
QueryWrapper<SystemPDFTemplateEntity> wrapper = new QueryWrapper<>();
wrapper.like(StrUtil.isNotBlank(systemPDFTemplateRequest.getName()), "name", systemPDFTemplateRequest.getName())
.eq(null != systemPDFTemplateRequest.getModule(), "module", systemPDFTemplateRequest.getModule())
.eq(null != systemPDFTemplateRequest.getId(), "id", systemPDFTemplateRequest.getId())
.orderByDesc("update_time");
return wrapper;
}
} }

@ -46,24 +46,29 @@
<if test="jrxmlPath != null"> <if test="jrxmlPath != null">
jrxmlPath=#{jrxmlPath}, jrxmlPath=#{jrxmlPath},
</if> </if>
<if test="customerId != null and customerId != ''">
customerId = #{customerId}
</if>
</set> </set>
WHERE id=#{id} WHERE id=#{id}
</update> </update>
<insert id="insertData" parameterType="com.glxp.udi.admin.entity.param.SystemPDFTemplateEntity"> <insert id="insertData" parameterType="com.glxp.udi.admin.entity.param.SystemPDFTemplateEntity">
insert INTO system_pdf_template(name, insert INTO system_pdf_template(name,
type, module, param, path, rowCount, qrcodeCount, remark, create_time, type, module, param, path, rowCount, qrcodeCount, remark, create_time,
update_time, jrxmlPath) update_time, jrxmlPath, customerId)
values (#{name}, values (#{name},
#{type}, #{type},
#{module}, #{module},
#{param}, #{param},
#{path}, #{path},
#{rowCount}, #{rowCount},
#{qrcodeCount}, #{qrcodeCount},
#{remark}, #{remark},
#{create_time}, #{create_time},
#{update_time}, #{jrxmlPath}) #{update_time},
#{jrxmlPath},
#{customerId})
</insert> </insert>
<select id="listPDFTemplates" parameterType="java.lang.Integer" <select id="listPDFTemplates" parameterType="java.lang.Integer"
@ -72,7 +77,9 @@
FROM system_pdf_template FROM system_pdf_template
</select> </select>
<select id="countByName" resultType="java.lang.Integer"> <select id="countByName" resultType="java.lang.Integer">
select count(*) from system_pdf_template where name = #{name} select count(*)
from system_pdf_template
where name = #{name}
</select> </select>
<delete id="deleteById" parameterType="java.lang.Integer"> <delete id="deleteById" parameterType="java.lang.Integer">

Loading…
Cancel
Save