From 67700f26262cdd6c6882a8660629e2c02548b11d Mon Sep 17 00:00:00 2001 From: Sai Date: Sat, 10 Jun 2023 03:24:33 +0800 Subject: [PATCH] =?UTF-8?q?1.=20FQC=E6=9F=A5=E8=A9=A2=20=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E9=87=8D=E8=A4=87=E8=B3=87=E6=96=99=E5=95=8F=E9=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/AMES/FqcInhouseMasterController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AMESCoreStudio.WebApi/Controllers/AMES/FqcInhouseMasterController.cs b/AMESCoreStudio.WebApi/Controllers/AMES/FqcInhouseMasterController.cs index 9e3f6af..0789d32 100644 --- a/AMESCoreStudio.WebApi/Controllers/AMES/FqcInhouseMasterController.cs +++ b/AMESCoreStudio.WebApi/Controllers/AMES/FqcInhouseMasterController.cs @@ -115,7 +115,7 @@ namespace AMESCoreStudio.WebApi.Controllers.AMES var q = from q1 in _context.FqcInhouseMasters join q2 in _context.FqcInhouseDetails on new { q1.InhouseNo, q1.SeqID } equals new { q2.InhouseNo, q2.SeqID } into j0 from q2 in j0.DefaultIfEmpty() - join q3 in _context.FqcResultMasters on q1.InhouseNo equals q3.InhouseNo into j1 + join q3 in _context.FqcResultMasters on new { q1.InhouseNo, q1.SeqID } equals new { q3.InhouseNo, q3.SeqID } into j1 from q3 in j1.DefaultIfEmpty() join q4 in _context.WipInfos on q1.WipNo equals q4.WipNO into s from q4 in s.DefaultIfEmpty()