feat:添加生产工单打印功能;二维码相关功能回显问题

This commit is contained in:
yanshikui
2024-11-18 16:43:37 +08:00
parent a2127f626f
commit a6f9d715d1
12 changed files with 215 additions and 113 deletions

View File

@@ -85,6 +85,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where workorder_id = #{workorderId}
</select>
<select id="selectProWorkorderListByParentId" parameterType="Long" resultMap="ProWorkorderResult">
<include refid="selectProWorkorderVo"/>
where parent_id = #{parentId}
</select>
<select id="checkWorkorderCodeUnique" parameterType="ProWorkorder" resultMap="ProWorkorderResult">
<include refid="selectProWorkorderVo"/>
where workorder_code = #{workorderCode} limit 1

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<import resource="classpath:ureport-console-context.xml"/>
<bean id="pmReportBean" class="com.ktg.mes.report.bean.PmReportBean"></bean>
</beans>