| | |
| | | } |
| | | //用于判断iqc,ipqc首检,ipqc巡检,fqc |
| | | string strType = ""; |
| | | string strService = ""; |
| | | if (xlsInService.Contains("&")) |
| | | { |
| | | strType = xlsInService.Split('&')[1]; |
| | | strService = xlsInService.Split('&')[0]; |
| | | } |
| | | else { |
| | | strType = ""; |
| | | strService = xlsInService; |
| | | } |
| | | //这是一个随机值,将会被当作父亲guid存到file表中,服务端根据这个guid读取相应的文件 |
| | | string upGuid = Guid.NewGuid().ToString(); |
| | |
| | | try |
| | | { |
| | | string strJson = UtilityHelper.HttpPost("", |
| | | "XlsInOut/" + xlsInService, |
| | | "XlsInOut/" + strService, |
| | | JsonConvert.SerializeObject(_obj)); |
| | | var _rtn = UtilityHelper.ReturnToDynamic(strJson); |
| | | MsgHelper.ShowInformation("提示:" + _rtn.rtnMsg); |