|
|
@@ -87,7 +87,7 @@ public class wmslog : IHttpHandler, IReadOnlySessionState
|
|
|
sqlPara.Add(new CDAParameter("LOGIDLINK", HttpContext.Current.Request["LOGIDLINK"].ToString()));
|
|
|
}
|
|
|
//如果入库单号不为空,取消时间查询条件 add 夏常明 2023-8-23
|
|
|
- if (string.IsNullOrEmpty(charg))
|
|
|
+ if (!string.IsNullOrEmpty(charg))
|
|
|
{
|
|
|
if (!string.IsNullOrEmpty(starttime))
|
|
|
{
|
|
|
@@ -169,7 +169,7 @@ public class wmslog : IHttpHandler, IReadOnlySessionState
|
|
|
AND t.datastuts IN ('S', 'E')";
|
|
|
|
|
|
//如果入库单号不为空,取消时间查询条件 add 夏常明 2023-8-23
|
|
|
- if (string.IsNullOrEmpty(charg))
|
|
|
+ if (!string.IsNullOrEmpty(charg))
|
|
|
{
|
|
|
if (!string.IsNullOrEmpty(starttime) && string.IsNullOrEmpty(bglogid))
|
|
|
{
|