|
|
|
@ -461,6 +461,48 @@
|
|
|
|
|
) t0 left join base_product bp on bp.product_code = t0.materialCode
|
|
|
|
|
where t0.quality is not null
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="getDLData" resultType="com.op.quality.domain.QcStaticTable">
|
|
|
|
|
SELECT
|
|
|
|
|
concat(q.material_code,'-',q.project_no,'-',CONVERT(varchar(10),q.ymdms, 120)) yearMonth,
|
|
|
|
|
material_code materialCode,
|
|
|
|
|
ymdms,rule_name ruleName,
|
|
|
|
|
project_no projectNo,
|
|
|
|
|
STUFF(
|
|
|
|
|
(SELECT ',' + t.actual_value
|
|
|
|
|
FROM (select
|
|
|
|
|
bpa.cpk_type cpkType,
|
|
|
|
|
CONVERT(varchar(7),qct.income_time, 120) ymdms,
|
|
|
|
|
qctd.rule_name, qctd.project_no,qctd.actual_value
|
|
|
|
|
from qc_check_task qct
|
|
|
|
|
left join qc_check_task_detail qctd on qct.record_id = qctd.belong_to
|
|
|
|
|
left join base_product_attached bpa on concat('0000000',bpa.product_code) = qct.material_code
|
|
|
|
|
where qct.check_type = #{checkType} and qctd.property_code = '1' and qct.check_time is not null
|
|
|
|
|
<if test="ymArrayStart != null ">and CONVERT(varchar(7),qct.income_time, 120) >= #{ymArrayStart}</if>
|
|
|
|
|
<if test="ymArrayEnd != null ">and #{ymArrayEnd} >=CONVERT(varchar(7),qct.income_time,120) </if>
|
|
|
|
|
and qctd.project_id = #{projectId} and bpa.cpk_type = #{cpkType}
|
|
|
|
|
) t
|
|
|
|
|
WHERE t.cpkType = q.cpkType and t.project_no = q.project_no and t.ymdms=q.ymdms
|
|
|
|
|
FOR xml path('')
|
|
|
|
|
),1,1,''
|
|
|
|
|
) quality
|
|
|
|
|
FROM (
|
|
|
|
|
select
|
|
|
|
|
bpa.cpk_type cpkType,
|
|
|
|
|
CONVERT(varchar(7),qct.income_time, 120) ymdms,
|
|
|
|
|
qctd.rule_name,qctd.project_no,qctd.actual_value
|
|
|
|
|
from qc_check_task qct
|
|
|
|
|
left join qc_check_task_detail qctd on qct.record_id = qctd.belong_to
|
|
|
|
|
left join base_product_attached bpa on concat('0000000',bpa.product_code) = qct.material_code
|
|
|
|
|
where qct.check_type = #{checkType} and qctd.property_code = '1' and qct.check_time is not null
|
|
|
|
|
<if test="ymArrayStart != null ">and CONVERT(varchar(7),qct.income_time, 120) >= #{ymArrayStart}</if>
|
|
|
|
|
<if test="ymArrayEnd != null ">and #{ymArrayEnd}>=CONVERT(varchar(7),qct.income_time,120) </if>
|
|
|
|
|
and qctd.project_id = #{projectId} and bpa.cpk_type = #{cpkType}
|
|
|
|
|
) q
|
|
|
|
|
GROUP BY q.cpkType, q.ymdms,q.rule_name,q.project_no
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="getProjectList" resultType="com.op.quality.domain.QcStaticTable">
|
|
|
|
|
select qcp.id recordId,
|
|
|
|
|
qcp.rule_name ruleName
|
|
|
|
@ -885,4 +927,10 @@
|
|
|
|
|
<if test="ymArrayEnd != null ">and #{ymArrayEnd} >= CONVERT(varchar(10),qct.income_time, 120)</if>
|
|
|
|
|
order by qct.income_time
|
|
|
|
|
</select>
|
|
|
|
|
<select id="getCpkTypeList" resultType="com.op.quality.domain.QcCPKInfo">
|
|
|
|
|
select material_code cpkType,sdd.dict_label
|
|
|
|
|
from qc_product_cpk_upDown qpcu
|
|
|
|
|
left join lanju_op_cloud.dbo.sys_dict_data sdd on sdd.dict_type = 'qms_category' and sdd.dict_value = qpcu.material_code
|
|
|
|
|
where qpcu.del_flag = '0'
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|
|
|
|
|