This commit is contained in:
磷叶 2024-12-26 18:04:02 +08:00
parent 939c50afea
commit 29080f29bc
14 changed files with 176 additions and 106 deletions

View File

@ -52,4 +52,14 @@ public class Order extends BaseEntity
@Excel(name = "订单状态", readConverterExp = "1=拟定,2=已发布,3=完工")
@ApiModelProperty("订单状态")
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;
}

View File

@ -2,7 +2,9 @@ package com.ruoyi.bst.order.domain;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDate;
import java.util.List;
/**
@ -15,4 +17,11 @@ public class OrderQuery extends OrderVO{
@ApiModelProperty("状态列表")
private List<String> statusList;
@DateTimeFormat(pattern = "yyyy-MM-dd")
@ApiModelProperty("订单日期范围")
private List<LocalDate> orderDateRange;
@DateTimeFormat(pattern = "yyyy-MM-dd")
@ApiModelProperty("交货日期范围")
private List<LocalDate> deliveryDateRange;
}

View File

@ -23,7 +23,7 @@ public enum OrderStatus {
// 允许修改的列表
public static List<String> canEdit() {
return asList(PROPOSED);
return asList(PROPOSED, RELEASED);
}
// 允许发布的列表

View File

@ -18,7 +18,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
bo.create_by,
bo.create_time,
bo.deleted,
bo.status
bo.status,
bo.order_date,
bo.material
from bst_order bo
</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 = false</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">
and bo.status in
<foreach item="item" collection="query.statusList" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="query.orderDateRange != null and query.orderDateRange.size() > 1">
and bo.order_date >= #{query.orderDateRange[0]} and bo.order_date &lt;= #{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 &lt;= #{query.deliveryDateRange[1]}
</if>
${query.params.dataScope}
</sql>
@ -65,6 +74,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createTime != null">create_time,</if>
<if test="deleted != null">deleted,</if>
<if test="status != null and status != ''">`status`,</if>
<if test="orderDate != null">order_date,</if>
<if test="material != null">material,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<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="deleted != null">#{deleted},</if>
<if test="status != null and status != ''">#{status},</if>
<if test="orderDate != null">#{orderDate},</if>
<if test="material != null">#{material},</if>
</trim>
</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.deleted != null">deleted = #{data.deleted},</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>
<delete id="deleteOrderById" parameterType="Long">

View File

@ -44,6 +44,9 @@ public class OrderConverterImpl implements OrderConverter {
bo.setCustomer(data.getCustomer());
bo.setCreateBy(user.getNickName());
bo.setRemark(data.getRemark());
bo.setOrderNo(data.getOrderNo());
bo.setOrderDate(data.getOrderDate());
bo.setMaterial(data.getMaterial());
if (submit) {
bo.setStatus(OrderStatus.RELEASED.getStatus());
} else {
@ -67,6 +70,9 @@ public class OrderConverterImpl implements OrderConverter {
bo.setNum(data.getNum());
bo.setCustomer(data.getCustomer());
bo.setRemark(data.getRemark());
bo.setOrderNo(data.getOrderNo());
bo.setOrderDate(data.getOrderDate());
bo.setMaterial(data.getMaterial());
if (submit) {
bo.setStatus(OrderStatus.RELEASED.getStatus());
}

View File

@ -19,7 +19,6 @@ import com.ruoyi.bst.prodProcess.domain.ProdProcessVO;
import com.ruoyi.bst.prodProcess.service.IProdProcessService;
import com.ruoyi.common.utils.DateUtils;
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.DiffListVO;
import org.springframework.beans.factory.annotation.Autowired;
@ -94,7 +93,6 @@ public class OrderServiceImpl implements OrderService
@Override
public int insertOrder(Order order)
{
order.setOrderNo(String.valueOf(SnowFlakeUtil.newId()));
order.setCreateTime(DateUtils.getNowDate());
return orderMapper.insertOrder(order);
}

View File

@ -72,4 +72,23 @@ public class OrderProd extends BaseEntity
@ApiModelProperty("排序")
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;
}

View File

@ -17,5 +17,4 @@ public class OrderProdQuery extends OrderProdVO{
@ApiModelProperty("是否拼接明细")
private Boolean assembleProcessList;
}

View File

@ -21,6 +21,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
bop.deleted,
bop.create_time,
bop.sort,
bop.handle_way,
bop.effect,
bop.color,
bop.cover_color,
bo.order_no as order_no
from bst_order_prod bop
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 = false</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">
and bop.order_id in
<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="createTime != null">create_time,</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 prefix="values (" suffix=")" suffixOverrides=",">
<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="createTime != null">#{createTime},</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>
</insert>
@ -106,6 +122,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
deleted,
create_time,
sort,
handle_way,
effect,
color,
cover_color,
</trim>
values
<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.sort != null ">#{i.sort},</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>
</foreach>
</insert>
@ -261,6 +289,46 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</otherwise>
</choose>
</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>
where id in
<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.createTime != null">create_time = #{data.createTime},</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>
<delete id="deleteOrderProdById" parameterType="Long">

View File

@ -49,6 +49,10 @@ public class OrderProdConverterImpl implements OrderProdConverter {
bo.setNum(prod.getNum());
bo.setRemark(prod.getRemark());
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()));
boList.add(bo);
@ -79,6 +83,10 @@ public class OrderProdConverterImpl implements OrderProdConverter {
bo.setNum(prod.getNum());
bo.setRemark(prod.getRemark());
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()));
boList.add(bo);

View File

@ -8,7 +8,6 @@ import lombok.Data;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import java.math.BigDecimal;
/**
@ -44,26 +43,6 @@ public class ProdProcess extends BaseEntity
@NotNull(message = "是否最终工序不能为空", groups = {ValidGroup.Create.class})
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 = "排序")
@ApiModelProperty("排序")
private Integer sort;

View File

@ -1,5 +1,6 @@
package com.ruoyi.bst.prodProcess.domain;
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ -22,18 +23,40 @@ public class ProdProcessVO extends ProdProcess{
@ApiModelProperty("订单状态")
private String orderStatus;
@ApiModelProperty("订单图片")
private String orderPicture;
@ApiModelProperty("生产车间名称")
private String deptName;
@ApiModelProperty("订单产品名称")
private String orderProdName;
@ApiModelProperty("产品图片")
private String orderProdPicture;
@ApiModelProperty("总上报数")
private BigDecimal reportNum;
@ApiModelProperty("有效清点数")
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("进度")
public BigDecimal getProgress() {
if (this.storeNum == null || this.getNum() == null) {

View File

@ -13,10 +13,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
bpp.dept_id,
bpp.num,
bpp.is_end,
bpp.handle_way,
bpp.effect,
bpp.color,
bpp.cover_color,
bpp.remark,
bpp.create_time,
bpp.deleted,
@ -24,7 +20,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
bpp.dept_process,
bop.name as order_prod_name,
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.picture as order_picture,
bo.status as order_status,
sd.dept_name as dept_name
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.deptId != null "> and bpp.dept_id = #{query.deptId}</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.effect != null and query.effect != ''"> and bpp.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.coverColor != null and query.coverColor != ''"> and bpp.cover_color like concat('%', #{query.coverColor}, '%')</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.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 = false</if>
@ -97,10 +99,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="deptId != null">dept_id,</if>
<if test="num != null">num,</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="createTime != null">create_time,</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="num != null">#{num},</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="createTime != null">#{createTime},</if>
<if test="deleted != null">#{deleted},</if>
@ -131,10 +125,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
dept_id,
num,
is_end,
handle_way,
effect,
color,
cover_color,
remark,
create_time,
deleted,
@ -152,14 +142,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="i.num == null ">default,</if>
<if test="i.isEnd != null ">#{i.isEnd},</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 ">default,</if>
<if test="i.createTime != null ">#{i.createTime},</if>
@ -217,46 +199,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</otherwise>
</choose>
</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,">
<choose>
<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.num != null">num = #{data.num},</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.createTime != null">create_time = #{data.createTime},</if>
<if test="data.deleted != null">deleted = #{data.deleted},</if>

View File

@ -28,12 +28,9 @@ public class ProdProcessConverterImpl implements ProdProcessConverter {
bo.setDeptId(process.getDeptId());
bo.setNum(process.getNum());
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.setDeptProcess(process.getDeptProcess());
bo.setRemark(process.getRemark());
boList.add(bo);
}
@ -54,12 +51,9 @@ public class ProdProcessConverterImpl implements ProdProcessConverter {
bo.setDeptId(process.getDeptId());
bo.setNum(process.getNum());
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.setDeptProcess(process.getDeptProcess());
bo.setRemark(process.getRemark());
boList.add(bo);
}