Browse Source

2024.8.20 询价申请第一版

java8
yuejiayang 2 years ago
parent
commit
5d858a5738
  1. 6
      src/main/resources/mapper/project/ProjectMapper.xml

6
src/main/resources/mapper/project/ProjectMapper.xml

@ -3,7 +3,8 @@
<mapper namespace="com.xujie.sys.modules.project.mapper.ProjectMapper">
<select id="queryProject" resultType="com.xujie.sys.modules.project.entity.Project">
select p.project_category,
select p.id as projectId,
p.project_category,
p.project_name,
p.status,
p.project_source,
@ -37,7 +38,8 @@
p.project_no,
b.bu_desc,
b.id as buId,
c.customer_desc
c.customer_desc,
CKT_MES_II_REAL.dbo.plm_get_customer_desc(p.site,p.final_customer_id) as final_customer_name
from plm_project_info p
left join BU b on p.bu_no = b.bu_no and p.site = b.site
left join plm_customer_information c on p.site = c.site and p.customer_no = c.customer_no

Loading…
Cancel
Save