|
@ -40,7 +40,8 @@ namespace BBWYB.Server.Business |
|
|
Id2 = ps.PurchaserId2, |
|
|
Id2 = ps.PurchaserId2, |
|
|
Name = ps.PurchaserName, |
|
|
Name = ps.PurchaserName, |
|
|
Location = ps.PurchaserLocation, |
|
|
Location = ps.PurchaserLocation, |
|
|
Platform = scheme.PurchasePlatform |
|
|
Platform = ps.PurchasePlatform ?? Enums.Platform.阿里巴巴, |
|
|
|
|
|
MemberId = ps.PurchaserMemberId |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -204,6 +205,7 @@ namespace BBWYB.Server.Business |
|
|
PurchaserLocation = p.Location, |
|
|
PurchaserLocation = p.Location, |
|
|
PurchaserName = p.Name, |
|
|
PurchaserName = p.Name, |
|
|
PurchasePlatform = p.Platform, |
|
|
PurchasePlatform = p.Platform, |
|
|
|
|
|
PurchaserMemberId = p.MemberId |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
var purchaseSchemeProductSkuList = fsql.Select<PurchaseSchemeProductSku>().Where(p => purchaseSchemeIdList.Contains(p.SkuPurchaseSchemeId)) |
|
|
var purchaseSchemeProductSkuList = fsql.Select<PurchaseSchemeProductSku>().Where(p => purchaseSchemeIdList.Contains(p.SkuPurchaseSchemeId)) |
|
@ -235,7 +237,8 @@ namespace BBWYB.Server.Business |
|
|
Id2 = schemeProduct.PurchaserId2, |
|
|
Id2 = schemeProduct.PurchaserId2, |
|
|
Location = schemeProduct.PurchaserLocation, |
|
|
Location = schemeProduct.PurchaserLocation, |
|
|
Name = schemeProduct.PurchaserName, |
|
|
Name = schemeProduct.PurchaserName, |
|
|
Platform = schemeProduct.PurchasePlatform |
|
|
Platform = schemeProduct.PurchasePlatform, |
|
|
|
|
|
MemberId = schemeProduct.PurchaserMemberId |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|