Gavin
2020-10-22 5c60f8e720f4422d6be98589ad19ff965fd86cf2
1.修改现场数据上传问题
2个文件已修改
14 ■■■■■ 已修改文件
CarrierBarcodeCtrl.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DetectionDataUpload.cs 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CarrierBarcodeCtrl.cs
@@ -92,7 +92,8 @@
            }
            else
            {
                CarrierBarcode = temp;
                if (temp.Length == 13)
                    CarrierBarcode = temp;
                temp = "";
            }
        }
DetectionDataUpload.cs
@@ -157,12 +157,15 @@
                        continue;
                    }
                }
                if (autoidList != "")
                {
                    int n = detectionData.SetUploadDataStatus(autoidList);
                    int n = detectionData.SetUploadDataStatus(autoID.ToString());
                    CommonUtil.WriteLog(LogType.Inf, string.Format("已标记成功上传检测记录:{0}笔", n));
                }
                //if (autoidList != "")
                //{
                //    int n = detectionData.SetUploadDataStatus(autoidList);
                //    CommonUtil.WriteLog(LogType.Inf, string.Format("已标记成功上传检测记录:{0}笔", n));
                //}
                CommonUtil.WriteLog(LogType.Inf, string.Format("检测记录上传结束,共有{0}笔待上传数据,成功上传{1}笔", dtUpload.Rows.Count, uploadCount));
            }