This commit is contained in:
“wanyongkang”
2021-05-26 17:06:41 +08:00
parent 5b0cf4c51f
commit 28ae9d410b
4 changed files with 40 additions and 44 deletions

View File

@@ -508,9 +508,9 @@ namespace Home.Controllers
exp = exp.And(m => m.ProductId == request.ProductId);
}
if (request.PackageId > 0)
if (request.PackageId != "0")
{
exp = exp.And(m => m.PackageId == request.PackageId);
exp = exp.And(m => m.PackageName == request.PackageId);
}
if (request.ExpiredDay > -1)