Commit b51cae42 by Neo Turing

签发后自动回传

parent c9d5bad9
......@@ -159,7 +159,8 @@ namespace Kivii.Third.Bestseller.Entities
if (thirdDetails.IsNullOrEmpty()) return false;
var reports = conn.SelectByIds<Report>(thirdDetails.ConvertAll(o => o.ReportKvid));
if (reports.IsNullOrEmpty()) return false;
if (reports.Exists(o => o.Status != (int)ReportStatusType.ReportCollected)) return false;
if (reports.Exists(o => o.Status <= (int)ReportStatusType.ReportIssue)) return false;
//if (reports.Exists(o => o.Status != (int)ReportStatusType.ReportCollected)) return false;
var client = new JsonHttpClient(Configs._defaultUrl);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment