提交
This commit is contained in:
parent
939c50afea
commit
29080f29bc
|
@ -52,4 +52,14 @@ public class Order extends BaseEntity
|
||||||
@Excel(name = "订单状态", readConverterExp = "1=拟定,2=已发布,3=完工")
|
@Excel(name = "订单状态", readConverterExp = "1=拟定,2=已发布,3=完工")
|
||||||
@ApiModelProperty("订单状态")
|
@ApiModelProperty("订单状态")
|
||||||
private String status;
|
private String status;
|
||||||
|
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@Excel(name = "订单日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
|
@ApiModelProperty("订单日期")
|
||||||
|
private LocalDate orderDate;
|
||||||
|
|
||||||
|
@Excel(name = "用料")
|
||||||
|
@ApiModelProperty("用料")
|
||||||
|
@Size(max = 200, message = "用料长度不能超过200个字符")
|
||||||
|
private String material;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,9 @@ package com.ruoyi.bst.order.domain;
|
||||||
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -15,4 +17,11 @@ public class OrderQuery extends OrderVO{
|
||||||
@ApiModelProperty("状态列表")
|
@ApiModelProperty("状态列表")
|
||||||
private List<String> statusList;
|
private List<String> statusList;
|
||||||
|
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@ApiModelProperty("订单日期范围")
|
||||||
|
private List<LocalDate> orderDateRange;
|
||||||
|
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@ApiModelProperty("交货日期范围")
|
||||||
|
private List<LocalDate> deliveryDateRange;
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ public enum OrderStatus {
|
||||||
|
|
||||||
// 允许修改的列表
|
// 允许修改的列表
|
||||||
public static List<String> canEdit() {
|
public static List<String> canEdit() {
|
||||||
return asList(PROPOSED);
|
return asList(PROPOSED, RELEASED);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 允许发布的列表
|
// 允许发布的列表
|
||||||
|
|
|
@ -18,7 +18,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
bo.create_by,
|
bo.create_by,
|
||||||
bo.create_time,
|
bo.create_time,
|
||||||
bo.deleted,
|
bo.deleted,
|
||||||
bo.status
|
bo.status,
|
||||||
|
bo.order_date,
|
||||||
|
bo.material
|
||||||
from bst_order bo
|
from bst_order bo
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
|
@ -31,12 +33,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="query.deleted != null "> and bo.deleted = #{query.deleted}</if>
|
<if test="query.deleted != null "> and bo.deleted = #{query.deleted}</if>
|
||||||
<if test="query.deleted == null "> and bo.deleted = false</if>
|
<if test="query.deleted == null "> and bo.deleted = false</if>
|
||||||
<if test="query.status != null and query.status != ''"> and bo.status = #{query.status}</if>
|
<if test="query.status != null and query.status != ''"> and bo.status = #{query.status}</if>
|
||||||
|
<if test="query.material != null and query.material != ''"> and bo.material like concat('%', #{query.material}, '%')</if>
|
||||||
<if test="query.statusList != null and query.statusList.size() > 0">
|
<if test="query.statusList != null and query.statusList.size() > 0">
|
||||||
and bo.status in
|
and bo.status in
|
||||||
<foreach item="item" collection="query.statusList" open="(" separator="," close=")">
|
<foreach item="item" collection="query.statusList" open="(" separator="," close=")">
|
||||||
#{item}
|
#{item}
|
||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
|
<if test="query.orderDateRange != null and query.orderDateRange.size() > 1">
|
||||||
|
and bo.order_date >= #{query.orderDateRange[0]} and bo.order_date <= #{query.orderDateRange[1]}
|
||||||
|
</if>
|
||||||
|
<if test="query.deliveryDateRange != null and query.deliveryDateRange.size() > 1">
|
||||||
|
and bo.delivery_date >= #{query.deliveryDateRange[0]} and bo.delivery_date <= #{query.deliveryDateRange[1]}
|
||||||
|
</if>
|
||||||
${query.params.dataScope}
|
${query.params.dataScope}
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
|
@ -65,6 +74,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="createTime != null">create_time,</if>
|
<if test="createTime != null">create_time,</if>
|
||||||
<if test="deleted != null">deleted,</if>
|
<if test="deleted != null">deleted,</if>
|
||||||
<if test="status != null and status != ''">`status`,</if>
|
<if test="status != null and status != ''">`status`,</if>
|
||||||
|
<if test="orderDate != null">order_date,</if>
|
||||||
|
<if test="material != null">material,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="orderNo != null and orderNo != ''">#{orderNo},</if>
|
<if test="orderNo != null and orderNo != ''">#{orderNo},</if>
|
||||||
|
@ -77,6 +88,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="createTime != null">#{createTime},</if>
|
<if test="createTime != null">#{createTime},</if>
|
||||||
<if test="deleted != null">#{deleted},</if>
|
<if test="deleted != null">#{deleted},</if>
|
||||||
<if test="status != null and status != ''">#{status},</if>
|
<if test="status != null and status != ''">#{status},</if>
|
||||||
|
<if test="orderDate != null">#{orderDate},</if>
|
||||||
|
<if test="material != null">#{material},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
@ -109,6 +122,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="data.createTime != null">create_time = #{data.createTime},</if>
|
<if test="data.createTime != null">create_time = #{data.createTime},</if>
|
||||||
<if test="data.deleted != null">deleted = #{data.deleted},</if>
|
<if test="data.deleted != null">deleted = #{data.deleted},</if>
|
||||||
<if test="data.status != null and data.status != ''">`status` = #{data.status},</if>
|
<if test="data.status != null and data.status != ''">`status` = #{data.status},</if>
|
||||||
|
<if test="data.orderDate != null">order_date = #{data.orderDate},</if>
|
||||||
|
<if test="data.material != null">material = #{data.material},</if>
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<delete id="deleteOrderById" parameterType="Long">
|
<delete id="deleteOrderById" parameterType="Long">
|
||||||
|
|
|
@ -44,6 +44,9 @@ public class OrderConverterImpl implements OrderConverter {
|
||||||
bo.setCustomer(data.getCustomer());
|
bo.setCustomer(data.getCustomer());
|
||||||
bo.setCreateBy(user.getNickName());
|
bo.setCreateBy(user.getNickName());
|
||||||
bo.setRemark(data.getRemark());
|
bo.setRemark(data.getRemark());
|
||||||
|
bo.setOrderNo(data.getOrderNo());
|
||||||
|
bo.setOrderDate(data.getOrderDate());
|
||||||
|
bo.setMaterial(data.getMaterial());
|
||||||
if (submit) {
|
if (submit) {
|
||||||
bo.setStatus(OrderStatus.RELEASED.getStatus());
|
bo.setStatus(OrderStatus.RELEASED.getStatus());
|
||||||
} else {
|
} else {
|
||||||
|
@ -67,6 +70,9 @@ public class OrderConverterImpl implements OrderConverter {
|
||||||
bo.setNum(data.getNum());
|
bo.setNum(data.getNum());
|
||||||
bo.setCustomer(data.getCustomer());
|
bo.setCustomer(data.getCustomer());
|
||||||
bo.setRemark(data.getRemark());
|
bo.setRemark(data.getRemark());
|
||||||
|
bo.setOrderNo(data.getOrderNo());
|
||||||
|
bo.setOrderDate(data.getOrderDate());
|
||||||
|
bo.setMaterial(data.getMaterial());
|
||||||
if (submit) {
|
if (submit) {
|
||||||
bo.setStatus(OrderStatus.RELEASED.getStatus());
|
bo.setStatus(OrderStatus.RELEASED.getStatus());
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,6 @@ import com.ruoyi.bst.prodProcess.domain.ProdProcessVO;
|
||||||
import com.ruoyi.bst.prodProcess.service.IProdProcessService;
|
import com.ruoyi.bst.prodProcess.service.IProdProcessService;
|
||||||
import com.ruoyi.common.utils.DateUtils;
|
import com.ruoyi.common.utils.DateUtils;
|
||||||
import com.ruoyi.common.utils.ServiceUtil;
|
import com.ruoyi.common.utils.ServiceUtil;
|
||||||
import com.ruoyi.common.utils.SnowFlakeUtil;
|
|
||||||
import com.ruoyi.common.utils.collection.CollectionUtils;
|
import com.ruoyi.common.utils.collection.CollectionUtils;
|
||||||
import com.ruoyi.common.utils.collection.DiffListVO;
|
import com.ruoyi.common.utils.collection.DiffListVO;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
@ -94,7 +93,6 @@ public class OrderServiceImpl implements OrderService
|
||||||
@Override
|
@Override
|
||||||
public int insertOrder(Order order)
|
public int insertOrder(Order order)
|
||||||
{
|
{
|
||||||
order.setOrderNo(String.valueOf(SnowFlakeUtil.newId()));
|
|
||||||
order.setCreateTime(DateUtils.getNowDate());
|
order.setCreateTime(DateUtils.getNowDate());
|
||||||
return orderMapper.insertOrder(order);
|
return orderMapper.insertOrder(order);
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,4 +72,23 @@ public class OrderProd extends BaseEntity
|
||||||
@ApiModelProperty("排序")
|
@ApiModelProperty("排序")
|
||||||
private Integer sort;
|
private Integer sort;
|
||||||
|
|
||||||
|
@Excel(name = "处理方式")
|
||||||
|
@ApiModelProperty("处理方式")
|
||||||
|
@Size(max = 50, message = "处理方式长度不能超过50个字符")
|
||||||
|
private String handleWay;
|
||||||
|
|
||||||
|
@Excel(name = "效果")
|
||||||
|
@ApiModelProperty("效果")
|
||||||
|
@Size(max = 50, message = "效果长度不能超过50个字符")
|
||||||
|
private String effect;
|
||||||
|
|
||||||
|
@Excel(name = "颜色")
|
||||||
|
@ApiModelProperty("颜色")
|
||||||
|
@Size(max = 50, message = "颜色长度不能超过50个字符")
|
||||||
|
private String color;
|
||||||
|
|
||||||
|
@Excel(name = "盖子颜色")
|
||||||
|
@ApiModelProperty("盖子颜色")
|
||||||
|
@Size(max = 50, message = "盖子颜色长度不能超过50个字符")
|
||||||
|
private String coverColor;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,5 +17,4 @@ public class OrderProdQuery extends OrderProdVO{
|
||||||
|
|
||||||
@ApiModelProperty("是否拼接明细")
|
@ApiModelProperty("是否拼接明细")
|
||||||
private Boolean assembleProcessList;
|
private Boolean assembleProcessList;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
bop.deleted,
|
bop.deleted,
|
||||||
bop.create_time,
|
bop.create_time,
|
||||||
bop.sort,
|
bop.sort,
|
||||||
|
bop.handle_way,
|
||||||
|
bop.effect,
|
||||||
|
bop.color,
|
||||||
|
bop.cover_color,
|
||||||
bo.order_no as order_no
|
bo.order_no as order_no
|
||||||
from bst_order_prod bop
|
from bst_order_prod bop
|
||||||
left join bst_order bo on bo.id = bop.order_id
|
left join bst_order bo on bo.id = bop.order_id
|
||||||
|
@ -38,6 +42,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="query.deleted != null "> and bop.deleted = #{query.deleted}</if>
|
<if test="query.deleted != null "> and bop.deleted = #{query.deleted}</if>
|
||||||
<if test="query.deleted == null "> and bop.deleted = false</if>
|
<if test="query.deleted == null "> and bop.deleted = false</if>
|
||||||
<if test="query.orderNo != null and query.orderNo != ''"> and bo.order_no like concat('%', #{query.orderNo}, '%')</if>
|
<if test="query.orderNo != null and query.orderNo != ''"> and bo.order_no like concat('%', #{query.orderNo}, '%')</if>
|
||||||
|
<if test="query.handleWay != null and query.handleWay != ''"> and bop.handle_way like concat('%', #{query.handleWay}, '%')</if>
|
||||||
|
<if test="query.effect != null and query.effect != ''"> and bop.effect like concat('%', #{query.effect}, '%')</if>
|
||||||
|
<if test="query.color != null and query.color != ''"> and bop.color like concat('%', #{query.color}, '%')</if>
|
||||||
|
<if test="query.coverColor != null and query.coverColor != ''"> and bop.cover_color like concat('%', #{query.coverColor}, '%')</if>
|
||||||
<if test="query.orderIds != null and query.orderIds.size() > 0">
|
<if test="query.orderIds != null and query.orderIds.size() > 0">
|
||||||
and bop.order_id in
|
and bop.order_id in
|
||||||
<foreach collection="query.orderIds" item="item" open="(" close=")" separator=",">
|
<foreach collection="query.orderIds" item="item" open="(" close=")" separator=",">
|
||||||
|
@ -74,6 +82,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="deleted != null">deleted,</if>
|
<if test="deleted != null">deleted,</if>
|
||||||
<if test="createTime != null">create_time,</if>
|
<if test="createTime != null">create_time,</if>
|
||||||
<if test="sort != null">sort,</if>
|
<if test="sort != null">sort,</if>
|
||||||
|
<if test="handleWay != null">handle_way,</if>
|
||||||
|
<if test="effect != null">effect,</if>
|
||||||
|
<if test="color != null">color,</if>
|
||||||
|
<if test="coverColor != null">cover_color,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="orderId != null">#{orderId},</if>
|
<if test="orderId != null">#{orderId},</if>
|
||||||
|
@ -88,6 +100,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="deleted != null">#{deleted},</if>
|
<if test="deleted != null">#{deleted},</if>
|
||||||
<if test="createTime != null">#{createTime},</if>
|
<if test="createTime != null">#{createTime},</if>
|
||||||
<if test="sort != null">#{sort},</if>
|
<if test="sort != null">#{sort},</if>
|
||||||
|
<if test="handleWay != null">#{handleWay},</if>
|
||||||
|
<if test="effect != null">#{effect},</if>
|
||||||
|
<if test="color != null">#{color},</if>
|
||||||
|
<if test="coverColor != null">#{coverColor},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
@ -106,6 +122,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
deleted,
|
deleted,
|
||||||
create_time,
|
create_time,
|
||||||
sort,
|
sort,
|
||||||
|
handle_way,
|
||||||
|
effect,
|
||||||
|
color,
|
||||||
|
cover_color,
|
||||||
</trim>
|
</trim>
|
||||||
values
|
values
|
||||||
<foreach collection="list" item="i" separator=",">
|
<foreach collection="list" item="i" separator=",">
|
||||||
|
@ -134,6 +154,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="i.createTime == null">default,</if>
|
<if test="i.createTime == null">default,</if>
|
||||||
<if test="i.sort != null ">#{i.sort},</if>
|
<if test="i.sort != null ">#{i.sort},</if>
|
||||||
<if test="i.sort == null ">default,</if>
|
<if test="i.sort == null ">default,</if>
|
||||||
|
<if test="i.handleWay != null ">#{i.handleWay},</if>
|
||||||
|
<if test="i.handleWay == null ">default,</if>
|
||||||
|
<if test="i.effect != null ">#{i.effect},</if>
|
||||||
|
<if test="i.effect == null ">default,</if>
|
||||||
|
<if test="i.color != null ">#{i.color},</if>
|
||||||
|
<if test="i.color == null ">default,</if>
|
||||||
|
<if test="i.coverColor != null ">#{i.coverColor},</if>
|
||||||
|
<if test="i.coverColor == null ">default,</if>
|
||||||
</trim>
|
</trim>
|
||||||
</foreach>
|
</foreach>
|
||||||
</insert>
|
</insert>
|
||||||
|
@ -261,6 +289,46 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</otherwise>
|
</otherwise>
|
||||||
</choose>
|
</choose>
|
||||||
</foreach>
|
</foreach>
|
||||||
|
<foreach open="handle_way = CASE id" collection="list" item="item" close="END,">
|
||||||
|
<choose>
|
||||||
|
<when test="item.handleWay != null ">
|
||||||
|
WHEN #{item.id} THEN #{item.handleWay}
|
||||||
|
</when>
|
||||||
|
<otherwise>
|
||||||
|
WHEN #{item.id} THEN `handle_way`
|
||||||
|
</otherwise>
|
||||||
|
</choose>
|
||||||
|
</foreach>
|
||||||
|
<foreach open="effect = CASE id" collection="list" item="item" close="END,">
|
||||||
|
<choose>
|
||||||
|
<when test="item.effect != null ">
|
||||||
|
WHEN #{item.id} THEN #{item.effect}
|
||||||
|
</when>
|
||||||
|
<otherwise>
|
||||||
|
WHEN #{item.id} THEN `effect`
|
||||||
|
</otherwise>
|
||||||
|
</choose>
|
||||||
|
</foreach>
|
||||||
|
<foreach open="color = CASE id" collection="list" item="item" close="END,">
|
||||||
|
<choose>
|
||||||
|
<when test="item.color != null ">
|
||||||
|
WHEN #{item.id} THEN #{item.color}
|
||||||
|
</when>
|
||||||
|
<otherwise>
|
||||||
|
WHEN #{item.id} THEN `color`
|
||||||
|
</otherwise>
|
||||||
|
</choose>
|
||||||
|
</foreach>
|
||||||
|
<foreach open="cover_color = CASE id" collection="list" item="item" close="END,">
|
||||||
|
<choose>
|
||||||
|
<when test="item.coverColor != null ">
|
||||||
|
WHEN #{item.id} THEN #{item.coverColor}
|
||||||
|
</when>
|
||||||
|
<otherwise>
|
||||||
|
WHEN #{item.id} THEN `cover_color`
|
||||||
|
</otherwise>
|
||||||
|
</choose>
|
||||||
|
</foreach>
|
||||||
</trim>
|
</trim>
|
||||||
where id in
|
where id in
|
||||||
<foreach item="item" collection="list" open="(" separator="," close=")">
|
<foreach item="item" collection="list" open="(" separator="," close=")">
|
||||||
|
@ -305,6 +373,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="data.deleted != null">deleted = #{data.deleted},</if>
|
<if test="data.deleted != null">deleted = #{data.deleted},</if>
|
||||||
<if test="data.createTime != null">create_time = #{data.createTime},</if>
|
<if test="data.createTime != null">create_time = #{data.createTime},</if>
|
||||||
<if test="data.sort != null">sort = #{data.sort},</if>
|
<if test="data.sort != null">sort = #{data.sort},</if>
|
||||||
|
<if test="data.handleWay != null">handle_way = #{data.handleWay},</if>
|
||||||
|
<if test="data.effect != null">effect = #{data.effect},</if>
|
||||||
|
<if test="data.color != null">color = #{data.color},</if>
|
||||||
|
<if test="data.coverColor != null">cover_color = #{data.coverColor},</if>
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<delete id="deleteOrderProdById" parameterType="Long">
|
<delete id="deleteOrderProdById" parameterType="Long">
|
||||||
|
|
|
@ -49,6 +49,10 @@ public class OrderProdConverterImpl implements OrderProdConverter {
|
||||||
bo.setNum(prod.getNum());
|
bo.setNum(prod.getNum());
|
||||||
bo.setRemark(prod.getRemark());
|
bo.setRemark(prod.getRemark());
|
||||||
bo.setSort(prod.getSort());
|
bo.setSort(prod.getSort());
|
||||||
|
bo.setHandleWay(prod.getHandleWay());
|
||||||
|
bo.setEffect(prod.getEffect());
|
||||||
|
bo.setColor(prod.getColor());
|
||||||
|
bo.setCoverColor(prod.getCoverColor());
|
||||||
bo.setProcessList(prodProcessConverter.toBOListByCreate(prod.getProcessList()));
|
bo.setProcessList(prodProcessConverter.toBOListByCreate(prod.getProcessList()));
|
||||||
|
|
||||||
boList.add(bo);
|
boList.add(bo);
|
||||||
|
@ -79,6 +83,10 @@ public class OrderProdConverterImpl implements OrderProdConverter {
|
||||||
bo.setNum(prod.getNum());
|
bo.setNum(prod.getNum());
|
||||||
bo.setRemark(prod.getRemark());
|
bo.setRemark(prod.getRemark());
|
||||||
bo.setSort(prod.getSort());
|
bo.setSort(prod.getSort());
|
||||||
|
bo.setHandleWay(prod.getHandleWay());
|
||||||
|
bo.setEffect(prod.getEffect());
|
||||||
|
bo.setColor(prod.getColor());
|
||||||
|
bo.setCoverColor(prod.getCoverColor());
|
||||||
bo.setProcessList(prodProcessConverter.toBOListByUpdate(prod.getProcessList()));
|
bo.setProcessList(prodProcessConverter.toBOListByUpdate(prod.getProcessList()));
|
||||||
|
|
||||||
boList.add(bo);
|
boList.add(bo);
|
||||||
|
|
|
@ -8,7 +8,6 @@ import lombok.Data;
|
||||||
|
|
||||||
import javax.validation.constraints.Min;
|
import javax.validation.constraints.Min;
|
||||||
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.NotNull;
|
||||||
import javax.validation.constraints.Size;
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -44,26 +43,6 @@ public class ProdProcess extends BaseEntity
|
||||||
@NotNull(message = "是否最终工序不能为空", groups = {ValidGroup.Create.class})
|
@NotNull(message = "是否最终工序不能为空", groups = {ValidGroup.Create.class})
|
||||||
private Boolean isEnd;
|
private Boolean isEnd;
|
||||||
|
|
||||||
@Excel(name = "处理方式")
|
|
||||||
@ApiModelProperty("处理方式")
|
|
||||||
@Size(max = 50, message = "处理方式长度不能超过50个字符")
|
|
||||||
private String handleWay;
|
|
||||||
|
|
||||||
@Excel(name = "效果")
|
|
||||||
@ApiModelProperty("效果")
|
|
||||||
@Size(max = 50, message = "效果长度不能超过50个字符")
|
|
||||||
private String effect;
|
|
||||||
|
|
||||||
@Excel(name = "颜色")
|
|
||||||
@ApiModelProperty("颜色")
|
|
||||||
@Size(max = 50, message = "颜色长度不能超过50个字符")
|
|
||||||
private String color;
|
|
||||||
|
|
||||||
@Excel(name = "盖子颜色")
|
|
||||||
@ApiModelProperty("盖子颜色")
|
|
||||||
@Size(max = 50, message = "盖子颜色长度不能超过50个字符")
|
|
||||||
private String coverColor;
|
|
||||||
|
|
||||||
@Excel(name = "排序")
|
@Excel(name = "排序")
|
||||||
@ApiModelProperty("排序")
|
@ApiModelProperty("排序")
|
||||||
private Integer sort;
|
private Integer sort;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package com.ruoyi.bst.prodProcess.domain;
|
package com.ruoyi.bst.prodProcess.domain;
|
||||||
|
|
||||||
|
import com.ruoyi.common.annotation.Excel;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
@ -22,18 +23,40 @@ public class ProdProcessVO extends ProdProcess{
|
||||||
@ApiModelProperty("订单状态")
|
@ApiModelProperty("订单状态")
|
||||||
private String orderStatus;
|
private String orderStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("订单图片")
|
||||||
|
private String orderPicture;
|
||||||
|
|
||||||
@ApiModelProperty("生产车间名称")
|
@ApiModelProperty("生产车间名称")
|
||||||
private String deptName;
|
private String deptName;
|
||||||
|
|
||||||
@ApiModelProperty("订单产品名称")
|
@ApiModelProperty("订单产品名称")
|
||||||
private String orderProdName;
|
private String orderProdName;
|
||||||
|
|
||||||
|
@ApiModelProperty("产品图片")
|
||||||
|
private String orderProdPicture;
|
||||||
|
|
||||||
@ApiModelProperty("总上报数")
|
@ApiModelProperty("总上报数")
|
||||||
private BigDecimal reportNum;
|
private BigDecimal reportNum;
|
||||||
|
|
||||||
@ApiModelProperty("有效清点数")
|
@ApiModelProperty("有效清点数")
|
||||||
private BigDecimal storeNum;
|
private BigDecimal storeNum;
|
||||||
|
|
||||||
|
@Excel(name = "处理方式")
|
||||||
|
@ApiModelProperty("处理方式")
|
||||||
|
private String handleWay;
|
||||||
|
|
||||||
|
@Excel(name = "效果")
|
||||||
|
@ApiModelProperty("效果")
|
||||||
|
private String effect;
|
||||||
|
|
||||||
|
@Excel(name = "颜色")
|
||||||
|
@ApiModelProperty("颜色")
|
||||||
|
private String color;
|
||||||
|
|
||||||
|
@Excel(name = "盖子颜色")
|
||||||
|
@ApiModelProperty("盖子颜色")
|
||||||
|
private String coverColor;
|
||||||
|
|
||||||
@ApiModelProperty("进度")
|
@ApiModelProperty("进度")
|
||||||
public BigDecimal getProgress() {
|
public BigDecimal getProgress() {
|
||||||
if (this.storeNum == null || this.getNum() == null) {
|
if (this.storeNum == null || this.getNum() == null) {
|
||||||
|
|
|
@ -13,10 +13,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
bpp.dept_id,
|
bpp.dept_id,
|
||||||
bpp.num,
|
bpp.num,
|
||||||
bpp.is_end,
|
bpp.is_end,
|
||||||
bpp.handle_way,
|
|
||||||
bpp.effect,
|
|
||||||
bpp.color,
|
|
||||||
bpp.cover_color,
|
|
||||||
bpp.remark,
|
bpp.remark,
|
||||||
bpp.create_time,
|
bpp.create_time,
|
||||||
bpp.deleted,
|
bpp.deleted,
|
||||||
|
@ -24,7 +20,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
bpp.dept_process,
|
bpp.dept_process,
|
||||||
bop.name as order_prod_name,
|
bop.name as order_prod_name,
|
||||||
bop.order_id as order_id,
|
bop.order_id as order_id,
|
||||||
|
bop.handle_way,
|
||||||
|
bop.effect,
|
||||||
|
bop.color,
|
||||||
|
bop.cover_color,
|
||||||
|
bop.picture as order_prod_picture,
|
||||||
bo.order_no as order_no,
|
bo.order_no as order_no,
|
||||||
|
bo.picture as order_picture,
|
||||||
bo.status as order_status,
|
bo.status as order_status,
|
||||||
sd.dept_name as dept_name
|
sd.dept_name as dept_name
|
||||||
from bst_prod_process bpp
|
from bst_prod_process bpp
|
||||||
|
@ -38,10 +40,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="query.orderProdId != null "> and bpp.order_prod_id = #{query.orderProdId}</if>
|
<if test="query.orderProdId != null "> and bpp.order_prod_id = #{query.orderProdId}</if>
|
||||||
<if test="query.deptId != null "> and bpp.dept_id = #{query.deptId}</if>
|
<if test="query.deptId != null "> and bpp.dept_id = #{query.deptId}</if>
|
||||||
<if test="query.isEnd != null "> and bpp.is_end = #{query.isEnd}</if>
|
<if test="query.isEnd != null "> and bpp.is_end = #{query.isEnd}</if>
|
||||||
<if test="query.handleWay != null and query.handleWay != ''"> and bpp.handle_way like concat('%', #{query.handleWay}, '%')</if>
|
<if test="query.handleWay != null and query.handleWay != ''"> and bop.handle_way like concat('%', #{query.handleWay}, '%')</if>
|
||||||
<if test="query.effect != null and query.effect != ''"> and bpp.effect like concat('%', #{query.effect}, '%')</if>
|
<if test="query.effect != null and query.effect != ''"> and bop.effect like concat('%', #{query.effect}, '%')</if>
|
||||||
<if test="query.color != null and query.color != ''"> and bpp.color like concat('%', #{query.color}, '%')</if>
|
<if test="query.color != null and query.color != ''"> and bop.color like concat('%', #{query.color}, '%')</if>
|
||||||
<if test="query.coverColor != null and query.coverColor != ''"> and bpp.cover_color like concat('%', #{query.coverColor}, '%')</if>
|
<if test="query.coverColor != null and query.coverColor != ''"> and bop.cover_color like concat('%', #{query.coverColor}, '%')</if>
|
||||||
<if test="query.remark != null and query.remark != ''"> and bpp.remark like concat('%', #{query.remark}, '%')</if>
|
<if test="query.remark != null and query.remark != ''"> and bpp.remark like concat('%', #{query.remark}, '%')</if>
|
||||||
<if test="query.deleted != null "> and bpp.deleted = #{query.deleted}</if>
|
<if test="query.deleted != null "> and bpp.deleted = #{query.deleted}</if>
|
||||||
<if test="query.deleted == null "> and bpp.deleted = false</if>
|
<if test="query.deleted == null "> and bpp.deleted = false</if>
|
||||||
|
@ -97,10 +99,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="deptId != null">dept_id,</if>
|
<if test="deptId != null">dept_id,</if>
|
||||||
<if test="num != null">num,</if>
|
<if test="num != null">num,</if>
|
||||||
<if test="isEnd != null">is_end,</if>
|
<if test="isEnd != null">is_end,</if>
|
||||||
<if test="handleWay != null">handle_way,</if>
|
|
||||||
<if test="effect != null">effect,</if>
|
|
||||||
<if test="color != null">color,</if>
|
|
||||||
<if test="coverColor != null">cover_color,</if>
|
|
||||||
<if test="remark != null">remark,</if>
|
<if test="remark != null">remark,</if>
|
||||||
<if test="createTime != null">create_time,</if>
|
<if test="createTime != null">create_time,</if>
|
||||||
<if test="deleted != null">deleted,</if>
|
<if test="deleted != null">deleted,</if>
|
||||||
|
@ -112,10 +110,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="deptId != null">#{deptId},</if>
|
<if test="deptId != null">#{deptId},</if>
|
||||||
<if test="num != null">#{num},</if>
|
<if test="num != null">#{num},</if>
|
||||||
<if test="isEnd != null">#{isEnd},</if>
|
<if test="isEnd != null">#{isEnd},</if>
|
||||||
<if test="handleWay != null">#{handleWay},</if>
|
|
||||||
<if test="effect != null">#{effect},</if>
|
|
||||||
<if test="color != null">#{color},</if>
|
|
||||||
<if test="coverColor != null">#{coverColor},</if>
|
|
||||||
<if test="remark != null">#{remark},</if>
|
<if test="remark != null">#{remark},</if>
|
||||||
<if test="createTime != null">#{createTime},</if>
|
<if test="createTime != null">#{createTime},</if>
|
||||||
<if test="deleted != null">#{deleted},</if>
|
<if test="deleted != null">#{deleted},</if>
|
||||||
|
@ -131,10 +125,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
dept_id,
|
dept_id,
|
||||||
num,
|
num,
|
||||||
is_end,
|
is_end,
|
||||||
handle_way,
|
|
||||||
effect,
|
|
||||||
color,
|
|
||||||
cover_color,
|
|
||||||
remark,
|
remark,
|
||||||
create_time,
|
create_time,
|
||||||
deleted,
|
deleted,
|
||||||
|
@ -152,14 +142,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="i.num == null ">default,</if>
|
<if test="i.num == null ">default,</if>
|
||||||
<if test="i.isEnd != null ">#{i.isEnd},</if>
|
<if test="i.isEnd != null ">#{i.isEnd},</if>
|
||||||
<if test="i.isEnd == null ">default,</if>
|
<if test="i.isEnd == null ">default,</if>
|
||||||
<if test="i.handleWay != null ">#{i.handleWay},</if>
|
|
||||||
<if test="i.handleWay == null ">default,</if>
|
|
||||||
<if test="i.effect != null ">#{i.effect},</if>
|
|
||||||
<if test="i.effect == null ">default,</if>
|
|
||||||
<if test="i.color != null ">#{i.color},</if>
|
|
||||||
<if test="i.color == null ">default,</if>
|
|
||||||
<if test="i.coverColor != null ">#{i.coverColor},</if>
|
|
||||||
<if test="i.coverColor == null ">default,</if>
|
|
||||||
<if test="i.remark != null ">#{i.remark},</if>
|
<if test="i.remark != null ">#{i.remark},</if>
|
||||||
<if test="i.remark == null ">default,</if>
|
<if test="i.remark == null ">default,</if>
|
||||||
<if test="i.createTime != null ">#{i.createTime},</if>
|
<if test="i.createTime != null ">#{i.createTime},</if>
|
||||||
|
@ -217,46 +199,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</otherwise>
|
</otherwise>
|
||||||
</choose>
|
</choose>
|
||||||
</foreach>
|
</foreach>
|
||||||
<foreach open="handle_way = CASE id" collection="list" item="item" close="END,">
|
|
||||||
<choose>
|
|
||||||
<when test="item.handleWay != null ">
|
|
||||||
WHEN #{item.id} THEN #{item.handleWay}
|
|
||||||
</when>
|
|
||||||
<otherwise>
|
|
||||||
WHEN #{item.id} THEN `handle_way`
|
|
||||||
</otherwise>
|
|
||||||
</choose>
|
|
||||||
</foreach>
|
|
||||||
<foreach open="effect = CASE id" collection="list" item="item" close="END,">
|
|
||||||
<choose>
|
|
||||||
<when test="item.effect != null ">
|
|
||||||
WHEN #{item.id} THEN #{item.effect}
|
|
||||||
</when>
|
|
||||||
<otherwise>
|
|
||||||
WHEN #{item.id} THEN `effect`
|
|
||||||
</otherwise>
|
|
||||||
</choose>
|
|
||||||
</foreach>
|
|
||||||
<foreach open="color = CASE id" collection="list" item="item" close="END,">
|
|
||||||
<choose>
|
|
||||||
<when test="item.color != null ">
|
|
||||||
WHEN #{item.id} THEN #{item.color}
|
|
||||||
</when>
|
|
||||||
<otherwise>
|
|
||||||
WHEN #{item.id} THEN `color`
|
|
||||||
</otherwise>
|
|
||||||
</choose>
|
|
||||||
</foreach>
|
|
||||||
<foreach open="cover_color = CASE id" collection="list" item="item" close="END,">
|
|
||||||
<choose>
|
|
||||||
<when test="item.coverColor != null ">
|
|
||||||
WHEN #{item.id} THEN #{item.coverColor}
|
|
||||||
</when>
|
|
||||||
<otherwise>
|
|
||||||
WHEN #{item.id} THEN `cover_color`
|
|
||||||
</otherwise>
|
|
||||||
</choose>
|
|
||||||
</foreach>
|
|
||||||
<foreach open="remark = CASE id" collection="list" item="item" close="END,">
|
<foreach open="remark = CASE id" collection="list" item="item" close="END,">
|
||||||
<choose>
|
<choose>
|
||||||
<when test="item.remark != null ">
|
<when test="item.remark != null ">
|
||||||
|
@ -344,10 +286,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="data.deptId != null">dept_id = #{data.deptId},</if>
|
<if test="data.deptId != null">dept_id = #{data.deptId},</if>
|
||||||
<if test="data.num != null">num = #{data.num},</if>
|
<if test="data.num != null">num = #{data.num},</if>
|
||||||
<if test="data.isEnd != null">is_end = #{data.isEnd},</if>
|
<if test="data.isEnd != null">is_end = #{data.isEnd},</if>
|
||||||
<if test="data.handleWay != null">handle_way = #{data.handleWay},</if>
|
|
||||||
<if test="data.effect != null">effect = #{data.effect},</if>
|
|
||||||
<if test="data.color != null">color = #{data.color},</if>
|
|
||||||
<if test="data.coverColor != null">cover_color = #{data.coverColor},</if>
|
|
||||||
<if test="data.remark != null">remark = #{data.remark},</if>
|
<if test="data.remark != null">remark = #{data.remark},</if>
|
||||||
<if test="data.createTime != null">create_time = #{data.createTime},</if>
|
<if test="data.createTime != null">create_time = #{data.createTime},</if>
|
||||||
<if test="data.deleted != null">deleted = #{data.deleted},</if>
|
<if test="data.deleted != null">deleted = #{data.deleted},</if>
|
||||||
|
|
|
@ -28,12 +28,9 @@ public class ProdProcessConverterImpl implements ProdProcessConverter {
|
||||||
bo.setDeptId(process.getDeptId());
|
bo.setDeptId(process.getDeptId());
|
||||||
bo.setNum(process.getNum());
|
bo.setNum(process.getNum());
|
||||||
bo.setIsEnd(process.getIsEnd());
|
bo.setIsEnd(process.getIsEnd());
|
||||||
bo.setHandleWay(process.getHandleWay());
|
|
||||||
bo.setEffect(process.getEffect());
|
|
||||||
bo.setColor(process.getColor());
|
|
||||||
bo.setCoverColor(process.getCoverColor());
|
|
||||||
bo.setSort(process.getSort());
|
bo.setSort(process.getSort());
|
||||||
bo.setDeptProcess(process.getDeptProcess());
|
bo.setDeptProcess(process.getDeptProcess());
|
||||||
|
bo.setRemark(process.getRemark());
|
||||||
boList.add(bo);
|
boList.add(bo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,12 +51,9 @@ public class ProdProcessConverterImpl implements ProdProcessConverter {
|
||||||
bo.setDeptId(process.getDeptId());
|
bo.setDeptId(process.getDeptId());
|
||||||
bo.setNum(process.getNum());
|
bo.setNum(process.getNum());
|
||||||
bo.setIsEnd(process.getIsEnd());
|
bo.setIsEnd(process.getIsEnd());
|
||||||
bo.setHandleWay(process.getHandleWay());
|
|
||||||
bo.setEffect(process.getEffect());
|
|
||||||
bo.setColor(process.getColor());
|
|
||||||
bo.setCoverColor(process.getCoverColor());
|
|
||||||
bo.setSort(process.getSort());
|
bo.setSort(process.getSort());
|
||||||
bo.setDeptProcess(process.getDeptProcess());
|
bo.setDeptProcess(process.getDeptProcess());
|
||||||
|
bo.setRemark(process.getRemark());
|
||||||
boList.add(bo);
|
boList.add(bo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user