From a896ffd1fd2277434e9a62ee09976d7505247a7d Mon Sep 17 00:00:00 2001 From: berlin-tzen Date: Mon, 20 Feb 2023 14:10:49 +0800 Subject: [PATCH] =?UTF-8?q?[WHAT]=20OnSiteService=20=E4=BB=A5ID=E6=9F=A5?= =?UTF-8?q?=E8=A9=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ShowEasy/ONSiteMaintain_QryService.cs | 36 +++++++++++++++++-- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/EuroTran/EasyBL.WEBAPP/ShowEasy/ONSiteMaintain_QryService.cs b/EuroTran/EasyBL.WEBAPP/ShowEasy/ONSiteMaintain_QryService.cs index bbfd0fc..34998ff 100644 --- a/EuroTran/EasyBL.WEBAPP/ShowEasy/ONSiteMaintain_QryService.cs +++ b/EuroTran/EasyBL.WEBAPP/ShowEasy/ONSiteMaintain_QryService.cs @@ -1943,24 +1943,29 @@ namespace EasyBL.WEBAPP.ShowEasy } //QueryALLOnSiteServiceAsDic - public Dictionary FindAllByIDsAsDictionary(string ServiceID) + public Dictionary FindAllByIDsAsDictionary(string sLanguageID, string ServiceID) { string sMsg = null; var db = SugarBase.GetIntance(); - Dictionary saServiceDic = new Dictionary(); + Dictionary saServiceDic = new Dictionary(); try { do { + if (string.IsNullOrEmpty(sLanguageID)) { + sLanguageID = WebAppGlobalConstWord.DEFAULT_LANGUAGE; + } + var saServiceList = db.Queryable() .Where(t1 => t1.Effective == "Y") + .Where(t1 => t1.LangID == sLanguageID) .WhereIF(!string.IsNullOrEmpty(ServiceID), t1 => t1.ServiceID == ServiceID) - .Select((t1) => new SETB_PDT_ONSiteBaseInfo + .Select((t1) => new View_PDT_ONSiteBaseInfo { ServiceID = SqlFunc.GetSelfAndAutoFill(t1.ServiceID) @@ -1987,6 +1992,31 @@ namespace EasyBL.WEBAPP.ShowEasy } + public Dictionary FindAllDetailByIDsAsDictionary(string sLanguageID, string ServiceID) { + + var OnSiteServiceDic = FindAllByIDsAsDictionary(sLanguageID, ServiceID); + + SupplierMaintain_QryService sm_qry = new SupplierMaintain_QryService(); + var SupplierDic = sm_qry.FindAllByIDsAsDictionary(sLanguageID); + + foreach (var OnSiteService in OnSiteServiceDic.Values) { + + if (!string.IsNullOrEmpty(OnSiteService.SupplierID)) { + + if (SupplierDic.ContainsKey(OnSiteService.SupplierID)) { + var rsSupplier = SupplierDic[OnSiteService.SupplierID]; + OnSiteServiceDic[OnSiteService.ServiceID].SupplierName = rsSupplier.CompanyName; + } + + } + + } + + return OnSiteServiceDic; + + + } + } }