Browse Source

库存地点变更增加字段

master
hp 3 years ago
parent
commit
f37184a3ec
  1. 5
      anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehiclegression/ScmVehicleGressionPageVo.java
  2. 7
      anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehiclegression/ScmVehicleGressionMapper.xml

5
anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehiclegression/ScmVehicleGressionPageVo.java

@ -44,4 +44,9 @@ public class ScmVehicleGressionPageVo implements Vo {
@ApiModelProperty("是否显示临时出门证按钮 审批流程完成后并且未上传现场照片时显示") @ApiModelProperty("是否显示临时出门证按钮 审批流程完成后并且未上传现场照片时显示")
private boolean showDownloadBtn; private boolean showDownloadBtn;
@ApiModelProperty("流程定义id")
private String procDefId;
@ApiModelProperty("流程实例id")
private String procInstId;
} }

7
anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehiclegression/ScmVehicleGressionMapper.xml

@ -32,7 +32,9 @@
svg.temporaryCard as downloadUrl, svg.temporaryCard as downloadUrl,
svg.location, svg.location,
svg.targetLocation, svg.targetLocation,
svg.operator svg.operator,
svg.procDefId,
svg.procInstId
FROM scm_vehicle_gression svg FROM scm_vehicle_gression svg
<where> <where>
${ew.sqlSegment} ${ew.sqlSegment}
@ -112,8 +114,7 @@
where vinNo = #{vinNo} where vinNo = #{vinNo}
and targetLocationSid = #{targetLocationSid} and targetLocationSid = #{targetLocationSid}
and LENGTH(nodeState) > 0 and LENGTH(nodeState) > 0
order by id desc order by id desc limit 1
limit 1
</select> </select>

Loading…
Cancel
Save