|
|
|
@ -37,7 +37,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="checkName" column="check_name" />
|
|
|
|
|
<result property="checkType" column="check_type"/>
|
|
|
|
|
<result property="noOkQuality" column="noOk_quality"/>
|
|
|
|
|
|
|
|
|
|
<result property="reason" column="reason" />
|
|
|
|
|
<result property="productType" column="product_type" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<resultMap type="QcCheckReportIncome" id="QcCheckReportIncomeResult">
|
|
|
|
@ -73,6 +74,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="checkName" column="check_name" />
|
|
|
|
|
<result property="checkType" column="check_type"/>
|
|
|
|
|
<result property="createTimeStr" column="createTimeStr" />
|
|
|
|
|
<result property="confirm" column="confirm" />
|
|
|
|
|
<result property="confirmManCode" column="confirm_man_code" />
|
|
|
|
|
<result property="confirmManName" column="confirm_man_name" />
|
|
|
|
|
<result property="confirmManName" column="confirm_remark" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectQcCheckTaskProduceVo">
|
|
|
|
@ -81,7 +86,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
check_man_code, check_man_name, check_time, check_result, status, attr1,
|
|
|
|
|
attr2, attr3, attr4, create_by, create_time, update_by, update_time,
|
|
|
|
|
factory_code, del_flag , check_type,sample_quality,noOk_quality,
|
|
|
|
|
aNoOkquality,bNoOkquality,cNoOkquality
|
|
|
|
|
aNoOkquality,bNoOkquality,cNoOkquality,reason,product_type
|
|
|
|
|
from qc_check_task
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
@ -205,6 +210,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
|
|
<if test="checkType != null">check_type,</if>
|
|
|
|
|
<if test="typeCode != null">type_code,</if>
|
|
|
|
|
<if test="reason != null">reason,</if>
|
|
|
|
|
<if test="productType != null">product_type,</if>
|
|
|
|
|
<if test="confirmManCode != null">confirm_man_code,</if>
|
|
|
|
|
<if test="confirmManName != null">confirm_man_name,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="recordId != null">#{recordId},</if>
|
|
|
|
@ -242,6 +251,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
|
|
<if test="checkType != null">#{checkType},</if>
|
|
|
|
|
<if test="typeCode != null">#{typeCode},</if>
|
|
|
|
|
<if test="reason != null">#{reason},</if>
|
|
|
|
|
<if test="productType != null">#{productType},</if>
|
|
|
|
|
<if test="confirmManCode != null">#{confirmManCode},</if>
|
|
|
|
|
<if test="confirmManName != null">#{confirmManName},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -280,6 +293,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
|
|
<if test="factoryCode != null and factoryCode != ''">factory_code = #{factoryCode},</if>
|
|
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
|
|
<if test="reason != null">reason = #{reason},</if>
|
|
|
|
|
<if test="productType != null">product_type = #{productType},</if>
|
|
|
|
|
<if test="confirmManCode != null">confirm_man_code = #{confirmManCode},</if>
|
|
|
|
|
<if test="confirmManName != null">confirm_man_name = #{confirmManName},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
where record_id = #{recordId}
|
|
|
|
|
</update>
|
|
|
|
@ -307,7 +324,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
qct.order_no, qct.material_code, qct.material_name, qct.quality, qct.unit,
|
|
|
|
|
qct.supplier_code, qct.supplier_name, qct.income_time, qct.check_loc, qct.check_status,
|
|
|
|
|
qct.check_time, qct.check_result, qct.check_type,'首件检验' check_name,
|
|
|
|
|
CONVERT(varchar(10),qct.create_time, 120) createTimeStr
|
|
|
|
|
CONVERT(varchar(10),qct.create_time, 120) createTimeStr,
|
|
|
|
|
qct.confirm,qct.confirm_man_name
|
|
|
|
|
from qc_check_task qct
|
|
|
|
|
<where>
|
|
|
|
|
<if test="checkNo != null and checkNo != ''"> and qct.check_no = #{checkNo}</if>
|
|
|
|
@ -333,7 +351,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
'','','',
|
|
|
|
|
qct.order_no, qct.material_code, qct.material_name, qct.quality, qct.unit,
|
|
|
|
|
qct.supplier_code, qct.supplier_name, qct.income_time,'','',
|
|
|
|
|
'','', qct.check_type,'巡检检验' check_name,CONVERT(varchar(10),qct.create_time, 120) createTimeStr
|
|
|
|
|
'','', qct.check_type,'巡检检验' check_name,CONVERT(varchar(10),qct.create_time, 120) createTimeStr,
|
|
|
|
|
qct.confirm,qct.confirm_man_name
|
|
|
|
|
from qc_check_task qct
|
|
|
|
|
<where>
|
|
|
|
|
<if test="checkNo != null and checkNo != ''"> and qct.check_no = #{checkNo}</if>
|
|
|
|
@ -355,7 +374,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
and qct.check_type = 'checkTypeSCXJ'
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY qct.order_no, qct.material_code, qct.material_name, qct.quality, qct.unit,
|
|
|
|
|
qct.supplier_code, qct.supplier_name, qct.income_time, qct.check_type,CONVERT(varchar(10),qct.create_time, 120)
|
|
|
|
|
qct.supplier_code, qct.supplier_name, qct.income_time, qct.check_type,CONVERT(varchar(10),qct.create_time, 120),
|
|
|
|
|
qct.confirm,qct.confirm_man_name
|
|
|
|
|
) t
|
|
|
|
|
where 1=1
|
|
|
|
|
<if test="checkType != null ">
|
|
|
|
|