Commit ec250ecb by Neo Turing

签发后自动回传

parent e74f2fd7
......@@ -150,7 +150,7 @@ namespace Kivii.Third.Chinaerdos.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;
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