SPC/ym-process-inspection/src/main/resources/mapper/InspectionSheetMapper.xml
2022-12-28 10:31:27 +08:00

106 lines
5.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.cnbm.processInspection.mapper.InspectionSheetMapper">
<resultMap type="com.cnbm.processInspection.entity.InspectionSheet" id="InspectionSheetMap">
<id column="id" property="id" />
<id column="order_number" property="orderNumber" />
<id column="batch_number" property="batchNumber" />
<id column="inspection_site" property="inspectionSite" />
<id column="product_id" property="productId" />
<id column="inspection_stage" property="inspectionStage" />
<id column="working_procedure_id" property="workingProcedureId" />
<id column="machine_id" property="machineId" />
<id column="shift_id" property="shiftId" />
<id column="number_of_grouped_samples" property="numberOfGroupedSamples" />
<id column="number_of_samples" property="numberOfSamples" />
<id column="number_of_defects" property="numberOfDefects" />
<id column="defective_quantity" property="defectiveQuantity" />
<id column="producer" property="producer" />
<id column="inspector" property="inspector" />
<id column="type" property="type" />
<id column="status" property="status" />
<id column="remark" property="remark" />
<id column="valid" property="valid" />
<id column="creator_id" property="creatorId" />
<id column="creator_name" property="creatorName" />
<id column="create_time" property="createTime" />
<id column="updater_id" property="updaterId" />
<id column="updater_name" property="updaterName" />
<id column="update_time" property="updateTime" />
<id column="version" property="version" />
</resultMap>
<select id="list" resultType="com.cnbm.processInspection.dto.InspectionSheetDTO">
SELECT i.*, p.name AS productName, wp.name AS workingProcedureName, m.name AS machineName, s.name AS shiftName
FROM inspection_sheet i
LEFT JOIN product p ON i.product_id=p.id
LEFT JOIN working_procedure wp ON i.working_procedure_id=wp.id
LEFT JOIN machine m ON i.machine_id=m.id
LEFT JOIN shift s ON i.shift_id=s.id
<where>
<if test="startTime != null and endTime != null">
and is.create_time BETWEEN #{startTime} AND #{endTime}
</if>
<if test="inspectionSite != null and inspectionSite != ''">
and is.inspection_site like CONCAT(CONCAT('%',#{inspectionSite}),'%')
</if>
<if test="workingProcedureId != null and workingProcedureId != ''">
and is.working_procedure_id=#{workingProcedureId}
</if>
<if test="productId != null and productId != ''">
and is.product_id=#{productId}
</if>
<if test="machineId != null and machineId != ''">
and is.machine_id=#{machineId}
</if>
<if test="orderNumber != null and orderNumber != ''">
and is.order_number like CONCAT(CONCAT('%',#{orderNumber}),'%')
</if>
<if test="batchNumber != null and batchNumber != ''">
and is.batch_number like CONCAT(CONCAT('%',#{batchNumber}),'%')
</if>
AND i.valid = 1
</where>
order by i.id asc
</select>
<select id="getNumberOfSamples" resultType="Integer">
select max(sample_size)
from product_features pf
LEFT JOIN features_stage_procedure_relation fspr ON pf.id=fspr.product_features_id
<where>
pf.valid = 1 and fspr.valid = 1
<if test="productId != null">
and pf.product_id = #{productId}
</if>
<if test="inspectionStage != null">
and fspr.inspection_stage = #{inspectionStage}
</if>
<if test="workingProcedureId != null">
and fspr.working_procedure_id = #{workingProcedureId}
</if>
</where>
</select>
<select id="getInspectionSheetFeaturesList" resultType="com.cnbm.basic.dto.ProductFeaturesDTO">
select pf.*,fspr.working_procedure_id AS workingProcedureId,wp.name AS workingProcedureName
from features_stage_procedure_relation fspr
LEFT JOIN product_features pf ON pf.id=fspr.product_features_id
LEFT JOIN working_procedure wp ON fspr.working_procedure_id=wp.id
<where>
pf.valid = 1 and fspr.valid = 1
<if test="productId != null">
and pf.product_id = #{productId}
</if>
<if test="inspectionStage != null">
and fspr.inspection_stage = #{inspectionStage}
</if>
<if test="workingProcedureId != null">
and fspr.working_procedure_id = #{workingProcedureId}
</if>
</where>
order by pf.id asc
</select>
</mapper>