Browse Source

wms接口状态回写值对接调整

master
ruoxing.wang 2 months ago
parent
commit
a633f5845f
  1. 2
      WebService/Function.cs

2
WebService/Function.cs

@ -1112,7 +1112,7 @@ namespace Webservice
WebService.WebReference.JsonService webService = GetWebService();
//true 可以操作, false 已经移库,不能操作
string rst = webService.GetData(jsonParam);
if(!string.IsNullOrEmpty(rst) && rst.ToLower() == "true")
if(!string.IsNullOrEmpty(rst) && rst.ToLower().Contains("true"))
{
return true;
}

Loading…
Cancel
Save