|
|
@ -1414,7 +1414,7 @@ namespace EasyBL.WEBAPP.ShowEasy |
|
|
|
new object[] { |
|
|
|
JoinType.Left, t1.OrgID == t2.OrgID && t1.ItemType == t2.ArgumentID && t2.ArgumentClassID=="ServiceItem" |
|
|
|
} ) |
|
|
|
.Where((t1, t2) => t1.Effective == "Y" && t1.LangID== sLanguageID && t1.OrgID== sORIGID && t1.ServiceID== sServiceID && t2.ArgumentClassID== "ServiceItem" && t1.ItemType!="02") |
|
|
|
.Where((t1, t2) => t1.Effective == "Y" && t1.LangID== sLanguageID && t1.OrgID== sORIGID && t1.ServiceID== sServiceID && t2.ArgumentClassID== "ServiceItem") |
|
|
|
.Select((t1, t2) => new ArgumentDTO |
|
|
|
{ |
|
|
|
ArgumentID =t1.Guid, |
|
|
@ -1749,7 +1749,7 @@ namespace EasyBL.WEBAPP.ShowEasy |
|
|
|
//堆高機
|
|
|
|
var lstServiceCostRules = db.Queryable<SETB_PDT_ServiceCostRules>() |
|
|
|
.Where(x => x.QSID == objONSiteItem.Guid) |
|
|
|
.OrderBy(x => x.CreateDate) |
|
|
|
.OrderBy(x => x.Weight_Min) |
|
|
|
.Select(x => new ServiceCostRulesDTO { Guid = x.Guid, Weight_Min = x.Weight_Min, Weight_Max = x.Weight_Max, Price = x.Price, PricingMode = x.PricingMode, Memo = x.Memo, CreateDate = x.CreateDate }) |
|
|
|
.ToList(); |
|
|
|
|
|
|
|