fix(mapper): 修正入库检验任务请求号字段错误
- 将QmsIncomingInspectionTaskMapper.xml中查询字段check_no替换为request_no - 确保返回结果中使用正确的请求号字段 - 修复三处SQL语句中的字段命名错误
This commit is contained in:
parent
b608383244
commit
0f945a5f4b
|
|
@ -6,7 +6,7 @@
|
|||
SELECT
|
||||
t.id,
|
||||
t.task_no,
|
||||
t.check_no,
|
||||
t.request_no,
|
||||
t.material_id,
|
||||
m.material_no,
|
||||
m.material_desc,
|
||||
|
|
@ -109,7 +109,7 @@
|
|||
SELECT
|
||||
t.id,
|
||||
t.task_no,
|
||||
t.check_no,
|
||||
t.request_no,
|
||||
t.material_id,
|
||||
m.material_no,
|
||||
m.material_desc,
|
||||
|
|
@ -182,7 +182,7 @@
|
|||
<select id="getDetail" resultType="com.nflg.wms.common.pojo.vo.QmsIncomingInspectionTaskVO">
|
||||
SELECT t.id,
|
||||
t.task_no,
|
||||
t.check_no,
|
||||
t.request_no,
|
||||
t.material_id,
|
||||
m.material_no,
|
||||
m.material_desc,
|
||||
|
|
|
|||
Loading…
Reference in New Issue