|
|
@ -1797,6 +1797,19 @@ namespace EasyBL.WEBAPP.ShowEasy |
|
|
|
|
|
|
|
objONSiteItem.TruckMarkupByModel = lstTruckMarkupByModel; |
|
|
|
|
|
|
|
|
|
|
|
//卡車押車費用表
|
|
|
|
if (objONSiteItem.EscortFreeCityID != null) { |
|
|
|
|
|
|
|
var lstTruckEscortCostRules = db.Queryable<SETB_PDT_ServiceTruckCostRules>() |
|
|
|
.Where(x => x.QSID == objONSiteItem.Guid && x.CityID == objONSiteItem.EscortFreeCityID) |
|
|
|
.Select(x => new ServiceTruckCostRulesDTO { TruckID = x.TruckID, CityID = x.CityID, Price = x.Price }) |
|
|
|
.ToList(); |
|
|
|
|
|
|
|
|
|
|
|
objONSiteItem.TruckEscortCostRules = lstTruckEscortCostRules; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|