From cee6945ed257d618d2b50f28c9f43b2fd0d7ba1b Mon Sep 17 00:00:00 2001 From: x_z Date: Wed, 26 Apr 2023 10:07:10 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E5=A4=8D=E5=BA=93=E5=AD=98=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E6=B2=A1=E6=9C=89=E6=8C=89=E7=85=A7=E4=BE=9B=E5=BA=94?= =?UTF-8?q?=E5=95=86ID=E5=88=86=E7=BB=84=E5=AF=BC=E8=87=B4=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E8=A2=AB=E5=90=88=E5=B9=B6=E9=94=99=E8=AF=AF=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/mybatis/mapper/inv/invProductDao.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/mybatis/mapper/inv/invProductDao.xml b/src/main/resources/mybatis/mapper/inv/invProductDao.xml index 8b42ac88..ce1911a6 100644 --- a/src/main/resources/mybatis/mapper/inv/invProductDao.xml +++ b/src/main/resources/mybatis/mapper/inv/invProductDao.xml @@ -26,14 +26,14 @@ auth_warehouse.name invName, ip.deptCode, ip.invCode, - as.name spaceName + s.name spaceName from inv_product ip inner join basic_udirel on ip.relIdFk = basic_udirel.id inner join basic_products bp on basic_udirel.uuid = bp.uuid left join basic_corp on ip.supId = basic_corp.erpId left join auth_dept on auth_dept.code = ip.deptCode left join auth_warehouse on auth_warehouse.code = ip.invCode - left join auth_space `as` on ip.invSpaceCode = `as`.code + left join auth_space s on ip.invSpaceCode = s.code bp.diType = 1 @@ -85,7 +85,7 @@ - GROUP BY ip.relIdFk, ip.batchNo + GROUP BY ip.relIdFk, ip.batchNo, ip.supId order by ip.updateTime desc