Browse Source

完成出库审批流程修改

lwx_dev
erdanergou 2 years ago
parent
commit
4c9106633c
  1. 6
      target/classes/com/dreamchaser/depository_manage/mapper/DepositoryRecordMapper.xml

6
target/classes/com/dreamchaser/depository_manage/mapper/DepositoryRecordMapper.xml

@ -148,6 +148,7 @@
<result column="code" property="code" jdbcType="VARCHAR"/>
<result column="transferId" property="transferId" jdbcType="INTEGER"/>
<result column="unit" property="unit" jdbcType="VARCHAR"/>
<result column="completeOutTime" property="completeOutTime" jdbcType="VARCHAR"/>
</resultMap>
<!-- 表查询字段 -->
@ -190,7 +191,7 @@
</sql>
<sql id="ApplicationOutRecordMinInfo">
aorm.id,aorm.mid,aorm.depositoryId,aorm.placeId,aorm.quantity,aorm.code,aorm.checkId,aorm.parentId,aorm.transferId,aorm.trueOut,aorm.unit,aorm.project
aorm.id,aorm.mid,aorm.depositoryId,aorm.placeId,aorm.quantity,aorm.code,aorm.checkId,aorm.parentId,aorm.transferId,aorm.trueOut,aorm.unit,aorm.project,aorm.completeOutTime
</sql>
<!-- 查询所有数据行数 -->
<select id="findCount" resultType="integer">
@ -1443,6 +1444,9 @@
<if test="checkId != null">
checkId = #{checkId},
</if>
<if test="minRecordCompleteTime != null">
completeOutTime = #{minRecordCompleteTime},
</if>
<if test="parentId != null ">
parentId = #{parentId},
</if>

Loading…
Cancel
Save