wbc
2025-07-17 4ad6fad83f528dedfd596c7c83017557555ecb75
小步生产订单字段提交
已修改23个文件
23 ■■■■ 文件已修改
StandardPda/.vs/MESApplication/v17/.suo 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/bin/Debug/net8.0/MES.Service.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/bin/Debug/net8.0/MES.Service.pdb 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.AssemblyInfo.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.AssemblyInfoInputs.cache 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.pdb 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/obj/Debug/net8.0/ref/MES.Service.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/obj/Debug/net8.0/refint/MES.Service.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MES.Service/service/WomcaaManager.cs 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/bin/Debug/net8.0/MES.Service.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/bin/Debug/net8.0/MES.Service.pdb 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.exe 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.pdb 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.AssemblyInfo.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.AssemblyInfoInputs.cache 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.csproj.AssemblyReference.cache 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.pdb 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/obj/Debug/net8.0/apphost.exe 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/obj/Debug/net8.0/ref/MESApplication.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/obj/Debug/net8.0/refint/MESApplication.dll 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/.vs/MESApplication/v17/.suo
Binary files differ
StandardPda/MES.Service/bin/Debug/net8.0/MES.Service.dll
Binary files differ
StandardPda/MES.Service/bin/Debug/net8.0/MES.Service.pdb
Binary files differ
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.AssemblyInfo.cs
@@ -14,7 +14,7 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("MES.Service")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f81fe14abe290f73aa783f356d72fa449495293b")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f7005dbf2453239fadf2d0e3208518791e57ee12")]
[assembly: System.Reflection.AssemblyProductAttribute("MES.Service")]
[assembly: System.Reflection.AssemblyTitleAttribute("MES.Service")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.AssemblyInfoInputs.cache
@@ -1 +1 @@
b2e75464d646d4b753d6dd13a873d342520d259de38d8f994fc6dbfb937a3054
76e543b732515e90142baaa3af7e11fecda3f0d192e869576c3133934e169bfc
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.dll
Binary files differ
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.pdb
Binary files differ
StandardPda/MES.Service/obj/Debug/net8.0/ref/MES.Service.dll
Binary files differ
StandardPda/MES.Service/obj/Debug/net8.0/refint/MES.Service.dll
Binary files differ
StandardPda/MES.Service/service/WomcaaManager.cs
@@ -171,7 +171,14 @@
                        && x.OrgId == dto.FPrdOrgId
                        && x.TableType == "MES_ITEMS").First();
        var mesLinkU9_xm = Db.Queryable<MesLinkU9>()
           .Where(x => x.U9Id == Convert.ToString(dto.FProject)
                       && x.OrgId == dto.FPrdOrgId
                       && x.TableType == "MES_PROJECT").First();
        if (mesLinkU9 != null) entity.Caa006 = mesLinkU9.MesId;
        if (mesLinkU9_xm != null) entity.Project = Convert.ToInt64(mesLinkU9_xm.MesId);
        return entity;
    }
@@ -267,10 +274,16 @@
            //Cab003 = dto.FMaterialID
            var mesLinkU9 = Db.Queryable<MesLinkU9>()
                .Where(x => x.U9Id == dto.FMaterialID
                            && x.OrgId == "1002011210000095"
                            && x.OrgId == "1002503270000079"
                            && x.TableType == "MES_ITEMS").First();
            var mesLinkU9_xm = Db.Queryable<MesLinkU9>()
                  .Where(x => x.U9Id == Convert.ToString(dto.FProject)
                              && x.OrgId == "1002503270000079"
                              && x.TableType == "MES_PROJECT").First();
            if (mesLinkU9 != null) womcab.Cab003 = mesLinkU9.MesId;
            if (mesLinkU9_xm != null) entity.Project = mesLinkU9_xm.MesId;
            womcabList.Add(womcab);
        }
StandardPda/MESApplication/bin/Debug/net8.0/MES.Service.dll
Binary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MES.Service.pdb
Binary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.dll
Binary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.exe
Binary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.pdb
Binary files differ
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.AssemblyInfo.cs
@@ -14,7 +14,7 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("MESApplication")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f81fe14abe290f73aa783f356d72fa449495293b")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f7005dbf2453239fadf2d0e3208518791e57ee12")]
[assembly: System.Reflection.AssemblyProductAttribute("MESApplication")]
[assembly: System.Reflection.AssemblyTitleAttribute("MESApplication")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.AssemblyInfoInputs.cache
@@ -1 +1 @@
37c130791434ce768814adfb75e478cf705be866c0a4c940640b04e0fe2757c3
5b6db30e7db3efb381815f17d0f200037e73e41a98315717cee1443f10ce7eac
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.csproj.AssemblyReference.cache
Binary files differ
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.dll
Binary files differ
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.pdb
Binary files differ
StandardPda/MESApplication/obj/Debug/net8.0/apphost.exe
Binary files differ
StandardPda/MESApplication/obj/Debug/net8.0/ref/MESApplication.dll
Binary files differ
StandardPda/MESApplication/obj/Debug/net8.0/refint/MESApplication.dll
Binary files differ