新增字段“合同单号”

This commit is contained in:
磷叶 2025-03-07 09:03:45 +08:00
parent eb1edbfee9
commit 41c68681ee
4 changed files with 26 additions and 2 deletions

View File

@ -111,4 +111,8 @@ public class OrderProd extends BaseEntity
@Size(max = 200, message = "备注长度不能超过200个字符")
private String remark;
@Excel(name = "合同单号")
@ApiModelProperty("合同单号")
@Size(max = 200, message = "合同单号长度不能超过200个字符")
private String contractNo;
}

View File

@ -28,6 +28,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
bop.content_num,
bop.no,
bop.work_name,
bop.contract_no,
bo.order_no as order_no
from bst_order_prod bop
left join bst_order bo on bo.id = bop.order_id
@ -51,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="query.coverColor != null and query.coverColor != ''"> and bop.cover_color like concat('%', #{query.coverColor}, '%')</if>
<if test="query.no != null and query.no != ''"> and bop.no like concat('%', #{query.no}, '%')</if>
<if test="query.workName != null and query.workName != ''"> and bop.work_name like concat('%', #{query.workName}, '%')</if>
<if test="query.contractNo != null and query.contractNo != ''"> and bop.contract_no like concat('%', #{query.contractNo}, '%')</if>
<if test="query.eqNames != null and query.eqNames.size() > 0">
and bop.name in
<foreach collection="query.eqNames" item="item" open="(" close=")" separator=",">
@ -109,6 +111,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="contentNum != null">content_num,</if>
<if test="no != null">no,</if>
<if test="workName != null">work_name,</if>
<if test="contractNo != null">contract_no,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="orderId != null">#{orderId},</if>
@ -130,6 +133,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="contentNum != null">#{contentNum},</if>
<if test="no != null">#{no},</if>
<if test="workName != null">#{workName},</if>
<if test="contractNo != null">#{contractNo},</if>
</trim>
</insert>
@ -154,7 +158,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
cover_color,
content_num,
no,
work_name
work_name,
contract_no
</trim>
values
<foreach collection="list" item="i" separator=",">
@ -197,6 +202,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="i.no == null ">default,</if>
<if test="i.workName != null ">#{i.workName},</if>
<if test="i.workName == null ">default,</if>
<if test="i.contractNo != null ">#{i.contractNo},</if>
<if test="i.contractNo == null ">default,</if>
</trim>
</foreach>
</insert>
@ -394,6 +401,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</otherwise>
</choose>
</foreach>
<foreach open="contract_no = CASE id" collection="list" item="item" close="END,">
<choose>
<when test="item.contractNo != null ">
WHEN #{item.id} THEN #{item.contractNo}
</when>
<otherwise>
WHEN #{item.id} THEN `contract_no`
</otherwise>
</choose>
</foreach>
</trim>
where id in
<foreach item="item" collection="list" open="(" separator="," close=")">
@ -445,6 +462,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="data.contentNum != null">content_num = #{data.contentNum},</if>
<if test="data.no != null">no = #{data.no},</if>
<if test="data.workName != null">work_name = #{data.workName},</if>
<if test="data.contractNo != null">contract_no = #{data.contractNo},</if>
</sql>
<delete id="deleteOrderProdById" parameterType="Long">

View File

@ -59,6 +59,7 @@ public class OrderProdConverterImpl implements OrderProdConverter {
bo.setContentNum(prod.getContentNum());
bo.setNo(prod.getNo());
bo.setWorkName(prod.getWorkName());
bo.setContractNo(prod.getContractNo());
bo.setProcessList(prodProcessConverter.toBOListByCreate(prod.getProcessList()));
boList.add(bo);
@ -98,6 +99,7 @@ public class OrderProdConverterImpl implements OrderProdConverter {
bo.setContentNum(prod.getContentNum());
bo.setNo(prod.getNo());
bo.setWorkName(prod.getWorkName());
bo.setContractNo(prod.getContractNo());
bo.setProcessList(prodProcessConverter.toBOListByUpdate(prod.getProcessList()));
boList.add(bo);

View File

@ -6,7 +6,7 @@ spring:
druid:
# 主库数据源
master:
url: jdbc:mysql://61.174.243.28:15864/factory?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url: jdbc:mysql://192.168.2.29:3306/factory?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root
password: a22dae15cab2bde7
# 从库数据源