Selaa lähdekoodia

维护搬运配置枚举

k 1 vuosi sitten
vanhempi
commit
c055370eaf

+ 8 - 8
warewms-ams/src/main/resources/mapper/ams/FlowConfigHeaderMapper.xml

@@ -3,7 +3,7 @@
 PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.ruoyi.ams.config.mapper.FlowConfigHeaderMapper">
-    
+
     <resultMap type="FlowConfigHeader" id="FlowConfigHeaderResult">
         <result property="id"    column="id"    />
         <result property="flowName"    column="flow_name"    />
@@ -104,7 +104,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <where>
             <if test="flowName != null  and flowName != ''"> and flow_name like concat('%', #{flowName}, '%')</if>
         </where>
-        order by create_time desc
+        order by id
     </select>
 
     <select id="selectFlowConfigHeaderDict" parameterType="Long" resultMap="FlowConfigHeaderResult">
@@ -118,7 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="flowName != null  and flowName != ''"> and flow_name = #{flowName}</if>
         </where>
     </select>
-    
+
     <select id="selectFlowConfigHeaderById" parameterType="Long" resultMap="FlowConfigHeaderFlowConfigDetailsResult">
         select a.id, a.flow_name,a.flow_type, a.sku_type, a.sku_type_flag, a.qty, a.qty_flag, a.weight, a.weight_flag, a.supplier, a.supplier_flag, a.location_from,a.location_from_flag, a.location_from_device, a.location_to,a.location_to_flag, a.location_to_device, a.create_by, a.create_time, a.update_by, a.update_time, a.remark,
         a.qty_range,a.weight_range,a.supplier_range,b.id as sub_id, b.header_id as sub_header_id, b.lotatt_id as sub_lotatt_id,cf.lotatt_name as sub_lotatt_name, b.lotatt_flag as sub_lotatt_flag, b.create_by as sub_create_by, b.create_time as sub_create_time, b.update_by as sub_update_by, b.update_time as sub_update_time, b.remark as sub_remark,b.default_value as sub_default_value,
@@ -128,7 +128,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         left join lotatt_config cf on b.lotatt_id = cf.lotatt_id
         where a.id = #{id}
     </select>
-        
+
     <insert id="insertFlowConfigHeader" parameterType="FlowConfigHeader" useGeneratedKeys="true" keyProperty="id">
         insert into flow_config_header
         <trim prefix="(" suffix=")" suffixOverrides=",">
@@ -230,14 +230,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     </delete>
 
     <delete id="deleteFlowConfigHeaderByIds" parameterType="String">
-        delete from flow_config_header where id in 
+        delete from flow_config_header where id in
         <foreach item="id" collection="array" open="(" separator="," close=")">
             #{id}
         </foreach>
     </delete>
-    
+
     <delete id="deleteFlowConfigDetailsByHeaderIds" parameterType="String">
-        delete from flow_config_details where header_id in 
+        delete from flow_config_details where header_id in
         <foreach item="headerId" collection="array" open="(" separator="," close=")">
             #{headerId}
         </foreach>
@@ -265,4 +265,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <include refid="selectFlowConfigHeaderVo"/>
         where root_flow = #{headerId}
     </select>
-</mapper>
+</mapper>

+ 9 - 9
warewms-base/src/main/java/com/ruoyi/base/constant/Constant.java

@@ -45,39 +45,39 @@ public class Constant {
          */
         FOUR(4l),
         /**
-         * 废料搬运(氯化镍)
+         * 废料退空(硫酸镍)
          */
         FIVE(5l),
         /**
-         * 成品下线(硫酸镍)->裹膜
+         * 废料搬运(氯化镍)
          */
         SIX(6l),
         /**
-         * 成品下线(硫酸镍)->仓储区
+         * 废料退空(氯化镍)
          */
         SEVEN(7l),
         /**
-         * 成品下线(硫酸镍)-裹膜->仓储区
+         * 成品下线(硫酸镍)->裹膜
          */
         EIGHT(8l),
         /**
-         * 成品下线(氯化镍)->裹膜
+         * 成品下线(硫酸镍)->仓储区
          */
         NINE(9l),
         /**
-         * 成品下线(氯化镍)->仓储区
+         * 成品下线(硫酸镍)-裹膜->仓储区
          */
         TEN(10l),
         /**
-         * 成品下线(氯化镍)-裹膜->仓储区
+         * 成品下线(氯化镍)->裹膜
          */
         ELEVEN(11l),
         /**
-         * 辅料搬运(硫酸镍)
+         * 成品下线(氯化镍)->仓储区
          */
         TWELVE(12l),
         /**
-         * 辅料搬运(氯化镍)
+         * 成品下线(氯化镍)-裹膜->仓储区
          */
         THIRTEEN(13l),
         /**