diff --git a/Model/wms/data/TmsTranRequest_Imp.cs b/Model/wms/data/TmsTranRequest_Imp.cs index e40064d..8786a12 100644 --- a/Model/wms/data/TmsTranRequest_Imp.cs +++ b/Model/wms/data/TmsTranRequest_Imp.cs @@ -56,6 +56,15 @@ namespace DeiNiu.wms.Data.Model sqlCmd.Parameters.AddWithValue("@pickOrderNo", mObj.CmdParameters[0]); sqlCmd.CommandText = _strSql; + break; + case 111: //送货随行单打印 + _strSql += " SELECT * from v_stockOutRequestPick where transNo=@transNo " + + " and customerid =@custId"; + + sqlCmd.Parameters.AddWithValue("@transNo", mObj.CmdParameters[0]); + sqlCmd.Parameters.AddWithValue("@custId", mObj.CmdParameters[1]); + sqlCmd.CommandText = _strSql; + break; case 200: //get batch pick detail by pickOrderNo _strSql = "SELECT * FROM v_tmsPickRequestBatchSum WHERE pickOrderNo = @pickOrderNo"; diff --git a/Model/wms/data/WmsInUpPort_Imp.cs b/Model/wms/data/WmsInUpPort_Imp.cs index 755278b..57fd912 100644 --- a/Model/wms/data/WmsInUpPort_Imp.cs +++ b/Model/wms/data/WmsInUpPort_Imp.cs @@ -55,7 +55,8 @@ namespace DeiNiu.wms.Data.Model break; case 320: //by orderNo _strSql = "SELECT count(1) FROM t_wmsInUpPort WHERE orderNo = @orderNo"; - _strSql += " and state!=@status "; + _strSql += " and state = @status " + + " and rectype = 0 "; sqlCmd.CommandText = _strSql; sqlCmd.Parameters.AddWithValue("@status", (int)enumInStockDetailStatus.上架完成); sqlCmd.Parameters.AddWithValue("@orderNo", mObj.CmdParameters[0]); diff --git a/Model/wms/tables/TmsTranRequest.cs b/Model/wms/tables/TmsTranRequest.cs index 834eb7c..7d30968 100644 --- a/Model/wms/tables/TmsTranRequest.cs +++ b/Model/wms/tables/TmsTranRequest.cs @@ -56,7 +56,13 @@ namespace DeiNiu.wms.Data.Model return CustQuery(110).Tables[0]; } - + public DataTable queryPickRequests4Report(string transNo,string custId) + { + cmdParameters[0] = transNo; + cmdParameters[1] = custId; + return CustQuery(111).Tables[0]; + } + public DataSet getPickRequestDetail(string pickRequestNo) { diff --git a/Model/wms/tables/WmsInUpPort.cs b/Model/wms/tables/WmsInUpPort.cs index 72acd11..8b84173 100644 --- a/Model/wms/tables/WmsInUpPort.cs +++ b/Model/wms/tables/WmsInUpPort.cs @@ -65,6 +65,11 @@ namespace DeiNiu.wms.Data.Model cmdParameters[0] = detailId; return queryCount(310) == 0; } + /// + /// 查入库单是否全部完成上架 + /// + /// + /// public bool isDoneByOrderNo(string orderNo) { cmdParameters[0] = orderNo; diff --git a/Utils/Enums.cs b/Utils/Enums.cs index 663de04..c11a516 100644 --- a/Utils/Enums.cs +++ b/Utils/Enums.cs @@ -302,8 +302,8 @@ namespace DeiNiu.Utils public enum enumOutPickType { 摘果 = 0, 取总分播 }; public enum enumOutPickStartOn { 立即分拣 = 0, 等待截单时间,订单约定出库时间 }; - public enum enumOnlineStatus { 试用 = 0, 正常,过期 }; - + public enum enumOnlineStatus { 试用 = 0, 正常,过期,加料,禁用 }; + public enum enumErpOrderType { 报废 = 0, 入库, 出库,盘点, 内部领用 }; public enum enumErpOrderStatus { 未通知 = 0, 通知成功, 通知失败 }; diff --git a/Utils/WmsConstants.cs b/Utils/WmsConstants.cs index 49e1033..9c64480 100644 --- a/Utils/WmsConstants.cs +++ b/Utils/WmsConstants.cs @@ -351,7 +351,8 @@ namespace DeiNiu.Utils public static bool ERP_NOTICE_STOCK_IN = false; //是否通知ERP入库信息 public static bool ERP_NOTICE_STOCK_OUT = false; //是否通知ERP出库信息 - + public static bool ERP_NOTICE_STOCK_IN_WHEN_FINISH_UP = false; + public static bool ERP_NOTICE_STOCK_IN_WHEN_FINISH_VALID_IN = true; //文件服务地址 @@ -433,8 +434,11 @@ namespace DeiNiu.Utils public static string PDA_MENU_STK_IN= "出库拣货"; public static string PDA_MENU_PLATE= "集货管理"; - public static int ERP_TRANS_DATA_AT_CLOCK; - public static int ERP_TRANS_DATA_SLEEP_MINUES; + public static int ERP_TRANS_DATA_AT_CLOCK1; + public static int ERP_TRANS_DATA_SLEEP_MINUES1; + public static int ERP_TRANS_DATA_AT_CLOCK2; + public static int ERP_TRANS_DATA_SLEEP_MINUES2; + public static bool SEEDS_PICK_ALL=true; public static List GOODS_WEIGHT_UNITS =new List(); @@ -464,6 +468,8 @@ namespace DeiNiu.Utils public static int SEEDS_END_MINUTES=35; public static int SEEDS_START_MINUTES=20; + public static int SEEDS_CONTINIU_MINUTES = 30; + public static int SEEDS_TASK_FETCH_START_HOUR = 14; public static int SEEDS_TASK_FETCH_END_HOUR = 14; public static int SEEDS_TASK_FETCH_START_MINUTES = 20; diff --git a/WcfService1/BLL/lTmsTranRequest.cs b/WcfService1/BLL/lTmsTranRequest.cs index e03d6d1..0ede78b 100644 --- a/WcfService1/BLL/lTmsTranRequest.cs +++ b/WcfService1/BLL/lTmsTranRequest.cs @@ -123,10 +123,14 @@ namespace DeiNiu.wms.Logical } internal DataTable queryPickRequests4Report(string pickOrderNo) - { - DataTable dt = _obj.queryPickRequests4Report(pickOrderNo); - WmsOutPickRequest wpr = new WmsOutPickRequest(pickOrderNo); - if (string.IsNullOrEmpty(wpr.invoiceNo)) + { + WmsOutPickRequest wpr = new WmsOutPickRequest(pickOrderNo); + + // DataTable dt = _obj.queryPickRequests4Report(pickOrderNo); + DataTable dt = _obj.queryPickRequests4Report(wpr.transNo,wpr.customerId); + + + if (string.IsNullOrEmpty(wpr.invoiceNo)) { foreach (DataRow dr1 in dt.Rows) { diff --git a/WcfService1/BLL/lWmsInRequest.cs b/WcfService1/BLL/lWmsInRequest.cs index a949c58..ab40ae4 100644 --- a/WcfService1/BLL/lWmsInRequest.cs +++ b/WcfService1/BLL/lWmsInRequest.cs @@ -1632,6 +1632,13 @@ namespace DeiNiu.wms.Logical foreach (Erp_purch obj in lst) { + if(!isZhitongAuto && WmsConstants.ERP_NOTICE_STOCK_IN_WHEN_FINISH_UP) //非直通、先上架后再回传erp + { + //inupport state should be >1, or continiue + if(!new WmsInUpPort().isDoneByOrderNo(obj.pur_order)) + continue; + } + noticeErpValiIn(obj); Thread.Sleep(50); } diff --git a/WcfService1/BLL/lWmsOutPickPort.cs b/WcfService1/BLL/lWmsOutPickPort.cs index b4e869c..dcb68bf 100644 --- a/WcfService1/BLL/lWmsOutPickPort.cs +++ b/WcfService1/BLL/lWmsOutPickPort.cs @@ -1193,7 +1193,8 @@ namespace DeiNiu.wms.Logical bool isTimeForFetchTasks = (DateTime.Now.Hour >= WmsConstants.SEEDS_TASK_FETCH_START_HOUR && DateTime.Now.Hour <= WmsConstants.SEEDS_TASK_FETCH_END_HOUR ) && - ( DateTime.Now.Minute >= WmsConstants.SEEDS_TASK_FETCH_START_MINUTES && DateTime.Now.Minute <= WmsConstants.SEEDS_TASK_FETCH_END_MINUTES); + ( DateTime.Now.Minute >= WmsConstants.SEEDS_TASK_FETCH_START_MINUTES + && DateTime.Now.Minute <= WmsConstants.SEEDS_TASK_FETCH_END_MINUTES); // logOut.Debug(string.Format("当前小时 {0}, 分{1}" ,DateTime.Now.Hour, DateTime.Now.Minute)); @@ -1468,7 +1469,7 @@ namespace DeiNiu.wms.Logical logTest.Debug(string.Format(" flowNo:{0} ,batch :{1} , outDetailId:{2} , seedsCnt:{3}, toFlowNo {4} , lightOperid {5}", flowNo, batch ,outDetailId, seedCnt,toFlowNo, lightOperid)); // WmsOutDetail wod = new WmsOutDetail(outDetailId); // WmsOutRequest wor = new WmsOutRequest(wod.orderNo); - this.operId = lightOperid; + this.operId = lightOperid>0?lightOperid:operId; bool isZhitongSeed = inDetailId > 0; diff --git a/WcfService1/BLL/lWmsOutPickRequest.cs b/WcfService1/BLL/lWmsOutPickRequest.cs index b50fd44..c8ab254 100644 --- a/WcfService1/BLL/lWmsOutPickRequest.cs +++ b/WcfService1/BLL/lWmsOutPickRequest.cs @@ -3424,7 +3424,7 @@ namespace DeiNiu.wms.Logical { logOut.Debug(string.Format("1 下架任务 {0},flowNO:{1},状态 {2}, 下架数量{3}", id, flowNo, state, pickCount)); - + pickCount = Math.Round(pickCount, 2); WmsPlateStock_tmp ptmp = new WmsPlateStock_tmp(); string custId = ptmp.getRelatedCustId(flowNo); @@ -3456,7 +3456,7 @@ namespace DeiNiu.wms.Logical WmsGoods goods = new WmsGoods(sr.goodsId); - pickCount = goods.isWeightOut() ? pickCount : ((int)(pickCount / goods.minOperateCount)) * goods.minOperateCount; + pickCount = goods.isWeightOut() ? pickCount : ((int)Math.Ceiling(pickCount / goods.minOperateCount)) * goods.minOperateCount; logOut.Debug(string.Format(" 下架任务 {0},flowNO:{1},状态 {2}, 下架数量{3}, gooddsname {4} ,minOperateCount {5}", id, flowNo, state, pickCount,goods.goodsName, goods.minOperateCount)); @@ -5967,7 +5967,8 @@ namespace DeiNiu.wms.Logical } catch (Exception e) { - log.Error(e); + logERP.Error(url); + logERP.Error(e); } diff --git a/WcfService1/BLL/lWmsOutRequest.cs b/WcfService1/BLL/lWmsOutRequest.cs index dea4f1c..914ca98 100644 --- a/WcfService1/BLL/lWmsOutRequest.cs +++ b/WcfService1/BLL/lWmsOutRequest.cs @@ -259,18 +259,42 @@ namespace DeiNiu.wms.Logical internal bool isErpWorking() { - int offset = 6; + int offset = 0; int hour = DateTime.Now.AddMinutes(offset).Hour; - int minute = DateTime.Now.AddMinutes(offset).Minute; - if (hour == WmsConstants.ERP_TRANS_DATA_AT_CLOCK) + int minute = DateTime.Now.AddMinutes(offset).Minute-1; + + + + if (hour == WmsConstants.ERP_TRANS_DATA_AT_CLOCK1) { - if (minute < WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES+ offset) + if (minute < WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1+ offset) { - log.Debug(string.Format(" time for erp transfering.... no out process...当前 {0} 点 {1}分 ----持续 {2}分 ", - DateTime.Now.Hour, minute- offset, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES)); + log.Debug(string.Format(" time for erp transfering.... no out process..." + + "当前 {0} 点 {1}分 ----静默剩余 {2}分 ", + DateTime.Now.Hour, minute- offset, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1 +offset - minute)); return true; } } + + if (hour == WmsConstants.ERP_TRANS_DATA_AT_CLOCK2) + { + if (minute < WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2 + offset) + { + log.Debug(string.Format(" time for erp transfering.... no out process..." + + "当前 {0} 点 {1}分 ----静默剩余 {2}分 ", + DateTime.Now.Hour, minute - offset, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2 + offset - minute)); + return true; + } + } + + log.Debug(string.Format("不满足集货静默时间设置, hour {0}, minute {1}," + + " CLOCK1 {2} , MINUES1+ offset {3}" + + ",CLOCK2 {4} , MINUES2+ offset {5}", + hour, minute, WmsConstants.ERP_TRANS_DATA_AT_CLOCK1, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1 + offset + , WmsConstants.ERP_TRANS_DATA_AT_CLOCK2, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2 + offset)); + + + return false; } @@ -564,49 +588,101 @@ namespace DeiNiu.wms.Logical Dictionary> dicGroup = new Dictionary>(); - bool isHour = DateTime.Now.Hour >= WmsConstants.SEEDS_START_HOUR && DateTime.Now.Hour <= WmsConstants.SEEDS_END_HOUR; - bool isMinute = DateTime.Now.Minute >= WmsConstants.SEEDS_START_MINUTES && DateTime.Now.Hour <= WmsConstants.SEEDS_END_MINUTES; + // bool isHour = DateTime.Now.Hour >= WmsConstants.SEEDS_START_HOUR && DateTime.Now.Hour <= WmsConstants.SEEDS_END_HOUR; + // bool isMinute = DateTime.Now.Minute >= WmsConstants.SEEDS_START_MINUTES && DateTime.Now.Minute <= WmsConstants.SEEDS_END_MINUTES; - logTest.Debug(string.Format("系统总拣开始时间{0}:{1},系统总拣结束时间{2}:{3}, 可以总拣? {4}", - WmsConstants.SEEDS_START_HOUR, WmsConstants.SEEDS_START_MINUTES, WmsConstants.SEEDS_END_HOUR, WmsConstants.SEEDS_END_MINUTES, isHour && isMinute)); + bool isHour = DateTime.Now.Hour == WmsConstants.ERP_TRANS_DATA_AT_CLOCK1 ; + bool isMinute = false;// DateTime.Now.Minute >= WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1 && DateTime.Now.Minute <= WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1 +30; + + + logTest.Debug(string.Format("系统总拣任务生成开始时间设定: CLOCK1 {0} , MINUES1 {1}, CLOCK2 {2} , MINUES2 {3}, continue minutes {4} ", WmsConstants.ERP_TRANS_DATA_AT_CLOCK1, + WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1, WmsConstants.ERP_TRANS_DATA_AT_CLOCK2, + WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2, WmsConstants.SEEDS_CONTINIU_MINUTES)); + + // logTest.Debug(string.Format("DateTime.Now.Hour {0} ,DateTime.Now.Minute {1} ", DateTime.Now.Hour, DateTime.Now.Minute)); - if(isHour && isMinute) //根据系统的集货设置参数,判断当前时间是否可以进行总拣 - foreach (WmsOutPickRequest opr in all) + // logTest.Debug(string.Format("isHour {0} ,isminute {1} ",isHour,isMinute)); + + + if (isHour) { - if (opr.pickGroup == 0 || !string.IsNullOrEmpty(opr.seedsPickNo)) - { - continue; - } - /*Customer cust = new Customer(opr.customerId); //根据客户的集货时间点判断是不是进行总拣 - if (cust.pickStartOn > 0) - { - try - { - int hour = Convert.ToInt32(new Node(cust.pickStartOn).value.Trim()); + isMinute = DateTime.Now.Minute >= WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1 + && DateTime.Now.Minute <= WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1 + WmsConstants.SEEDS_CONTINIU_MINUTES; - if (DateTime.Now.Hour < hour) + logTest.Debug(string.Format("系统总拣任务生成开始时间{0}:{1},系统总拣结束时间{2}:{3}, 可以总拣? {4}", + WmsConstants.ERP_TRANS_DATA_AT_CLOCK1, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1, + WmsConstants.ERP_TRANS_DATA_AT_CLOCK1, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1 + WmsConstants.SEEDS_CONTINIU_MINUTES, isHour && isMinute)); + } + else + { + isHour = DateTime.Now.Hour == WmsConstants.ERP_TRANS_DATA_AT_CLOCK2 ; + + + if (isHour) + { + isMinute = DateTime.Now.Minute >= WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2 + && DateTime.Now.Minute <= WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2 + WmsConstants.SEEDS_CONTINIU_MINUTES; + + + logTest.Debug(string.Format("系统总拣任务生成开始时间{0}:{1},系统总拣结束时间{2}:{3}, 可以总拣? {4}", + WmsConstants.ERP_TRANS_DATA_AT_CLOCK2, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2, + WmsConstants.ERP_TRANS_DATA_AT_CLOCK2, WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2 + WmsConstants.SEEDS_CONTINIU_MINUTES, isHour && isMinute)); + } + } + + + + + // logTest.Debug(string.Format("系统总拣开始时间{0}:{1},系统总拣结束时间{2}:{3}, 可以总拣? {4}", + // WmsConstants.SEEDS_START_HOUR, WmsConstants.SEEDS_START_MINUTES, + // WmsConstants.SEEDS_END_HOUR, WmsConstants.SEEDS_END_MINUTES, isHour && isMinute)); + + + if (isHour && isMinute) + { + + //根据系统的集货设置参数,判断当前时间是否可以进行总拣 + foreach (WmsOutPickRequest opr in all) + { + if (opr.pickGroup == 0 || !string.IsNullOrEmpty(opr.seedsPickNo)) + { + continue; + } + /*Customer cust = new Customer(opr.customerId); //根据客户的集货时间点判断是不是进行总拣 + if (cust.pickStartOn > 0) + { + try { - logOut.Debug(string.Format(" 分拣单 {0}, customer {1}, 总拣开始时间 {2} ,不取总。 ", opr.pickOrderNo, cust.customerId, hour)); - continue; + int hour = Convert.ToInt32(new Node(cust.pickStartOn).value.Trim()); + + if (DateTime.Now.Hour < hour) + { + logOut.Debug(string.Format(" 分拣单 {0}, customer {1}, 总拣开始时间 {2} ,不取总。 ", opr.pickOrderNo, cust.customerId, hour)); + continue; + } + + + } + catch (Exception er) + { + } + } */ - } - catch (Exception er) + + if (!dicGroup.ContainsKey(opr.pickGroup)) { - + dicGroup[opr.pickGroup] = new List(); } - - } */ - - if (!dicGroup.ContainsKey(opr.pickGroup)) - { - dicGroup[opr.pickGroup] = new List(); + dicGroup[opr.pickGroup].Add(opr); } - - dicGroup[opr.pickGroup].Add(opr); + } + else + { + logOut.Debug(" 不满足 分组总拣 时间点设定" ); } // logOut.Debug(" 待定位的分拣单,分组数量 " + dicGroup.Count); diff --git a/WcfService1/BLL/lWmsStock.cs b/WcfService1/BLL/lWmsStock.cs index 3e465fc..2579bfc 100644 --- a/WcfService1/BLL/lWmsStock.cs +++ b/WcfService1/BLL/lWmsStock.cs @@ -333,61 +333,61 @@ namespace DeiNiu.wms.Logical decimal oldCount = _obj.count - _obj.countOut-_obj.countOuting;// +_obj.countIn - _obj.countOut; - if (type == enumStockRecordType.手持盘点 || type == enumStockRecordType.初始盘点 || type == enumStockRecordType.库存对比)// update stock count directly - { - newStockCount = count; - adjustCnt = count - oldCount; - _obj.count = count + _obj.countOut + _obj.countOuting; + if (type == enumStockRecordType.手持盘点 || type == enumStockRecordType.初始盘点 || type == enumStockRecordType.库存对比)// update stock count directly + { + newStockCount = count; + adjustCnt = count - oldCount + _obj.virtialCount; + _obj.count = count;// + _obj.countOut + _obj.countOuting; + _obj.countOut = _obj.countOuting = 0; + reason += _obj.virtialCount > 0 ? "预借库存清零: " + _obj.virtialCount : ""; + + _obj.virtialCount = 0; + + } + else if (type == enumStockRecordType.移库下架) // caculate new stock count and adjust count + { + count = count > oldCount ? oldCount : count; - - - } - else if (type == enumStockRecordType.移库下架) // caculate new stock count and adjust count - { - - - count = count >oldCount?oldCount:count; - - newStockCount = oldCount - count; - adjustCnt = count; - _obj.countOut += count ; + newStockCount = oldCount - count; + adjustCnt = count; + _obj.countOut += count; wpt = new WmsPlateStock_tmp(); - wpt.skuCode=_obj.skuCode; - wpt.productDate=_obj.productDate; + wpt.skuCode = _obj.skuCode; + wpt.productDate = _obj.productDate; wpt.validDate = _obj.validDate; wpt.skuId = _obj.skuId; wpt.goodsId = _obj.goodsId; - wpt.count= count; + wpt.count = count; wpt.batch = _obj.batch; wpt.locationid = locId; - wpt.plateId = String.IsNullOrEmpty( flowNo)? "xj_" + operId + "_" + DateTime.Now.Date :flowNo ; - wpt.recType =(int) type; + wpt.plateId = String.IsNullOrEmpty(flowNo) ? "xj_" + operId + "_" + DateTime.Now.Date : flowNo; + wpt.recType = (int)type; strec.orderNo = wpt.plateId; - + } - else if (type == enumStockRecordType.移库上架 + else if (type == enumStockRecordType.移库上架 || type == enumStockRecordType.普通入库 || type == enumStockRecordType.补零入库 - + ) - { - newStockCount = oldCount + count; - adjustCnt = count; + { + newStockCount = oldCount + count; + adjustCnt = count; - _obj.count += count ; + _obj.count += count; - } - else //无其他类型的规则时,报错 - { - throw new Exception("没有定义库存调整规则:"+type.ToString()); - } + } + else //无其他类型的规则时,报错 + { + throw new Exception("没有定义库存调整规则:" + type.ToString()); + } string description = string.Format("商品ID {4},skuId {5}, 库位 {6}, 业务类型:{0},调整前数量{1},调整后数量{2},备注:{3}", @@ -1572,6 +1572,14 @@ namespace DeiNiu.wms.Logical string flow = "1"; stock = new WmsStock(dr.Row); WmsGoods gd = new WmsGoods(stock.goodsId); + if (stock.locationId.StartsWith(start + "")) + { + flow = start + ""; + this.upDownGoodsCountWithLocation(stock.locationId, stock.goodsId, stock.skuId, stock.batch, stock.count, "初始下架", enumStockRecordType.移库下架, 0, flow); + continue; + } + + if (gd.part > 0) { Node nd = new Node(gd.part); diff --git a/WcfService1/BLL/lbase.cs b/WcfService1/BLL/lbase.cs index 600bc63..ee61b8d 100644 --- a/WcfService1/BLL/lbase.cs +++ b/WcfService1/BLL/lbase.cs @@ -466,6 +466,11 @@ namespace DeiNiu.wms.Logical WmsConstants.MAX_ONLINE_USERS = v; + if (WmsConstants.SYSTEM_VALID_LEFT_DAYS < 20) + { + WmsConstants.MAX_ONLINE_USERS = 5 > v-2 ? v-2 : 5; + } + break; } @@ -590,8 +595,14 @@ namespace DeiNiu.wms.Logical case 28: WmsConstants.SEEDS_TASK_FETCH_END_MINUTES = v; + break; + + + case 29: + WmsConstants.SEEDS_CONTINIU_MINUTES = v; break; - + + default: break; } @@ -615,10 +626,16 @@ namespace DeiNiu.wms.Logical switch (n.flag) { case 1: - WmsConstants.ERP_TRANS_DATA_AT_CLOCK = v; + WmsConstants.ERP_TRANS_DATA_AT_CLOCK1 = v; break; case 2: - WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES = v; + WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES1 = v; + break; + case 3: + WmsConstants.ERP_TRANS_DATA_AT_CLOCK2 = v; + break; + case 4: + WmsConstants.ERP_TRANS_DATA_SLEEP_MINUES2 = v; break; } } @@ -802,6 +819,10 @@ namespace DeiNiu.wms.Logical case 18: WmsConstants.OUT_STOCK_LACK_VIR_IN_AUTO = n.isOn; break; + case 20: + WmsConstants.ERP_NOTICE_STOCK_IN_WHEN_FINISH_UP = WmsConstants.ERP_NOTICE_STOCK_IN && n.isOn; + break; + } } diff --git a/WcfService1/Web.config b/WcfService1/Web.config index 4b42ec2..d28f1d2 100644 --- a/WcfService1/Web.config +++ b/WcfService1/Web.config @@ -1,7 +1,7 @@ - + " + Id); + log.Debug("查询物料 --->" + Id); WcfErpGoods wcfObj = new WcfErpGoods (); ErpGoods dbObj = new ErpGoods(Id); log.Debug("return json :" + Util.getJson( wcfObj.getWcfObject(dbObj))); @@ -46,7 +46,7 @@ namespace DeiNiu.Wcf public Result add(WcfErpGoods obj) { - log.Debug("add called --->" + Util.getJson(obj)); + log.Debug("新增物料 --->" + Util.getJson(obj)); int id = 0; try { @@ -70,7 +70,7 @@ namespace DeiNiu.Wcf public Result update(WcfErpGoods obj) { - log.Debug("update called --->" + Util.getJson(obj)); + log.Debug("更新物料 --->" + Util.getJson(obj)); int cnt = 0; try { diff --git a/WcfServiceErp/T_ERP_PURCH.svc.cs b/WcfServiceErp/T_ERP_PURCH.svc.cs index 06c6eef..52fd679 100644 --- a/WcfServiceErp/T_ERP_PURCH.svc.cs +++ b/WcfServiceErp/T_ERP_PURCH.svc.cs @@ -37,7 +37,7 @@ namespace DeiNiu.Wcf public Result add(ErpPurch obj) { - log.Debug("add called --->" + obj); + log.Debug("新增销售单 --->" + obj.pur_order); using (TransactionScope scope = new TransactionScope()) { @@ -61,10 +61,12 @@ namespace DeiNiu.Wcf } catch (ConstraintException ex) { + log.Error(ex); return new Result( enumDbResult.记录已存在,ex.Message); } catch (Exception er) { + log.Error(er); return new Result(enumDbResult.失败, er.Message); } @@ -167,7 +169,8 @@ namespace DeiNiu.Wcf }*/ #endregion public ErpPurch getObj(int Id) - { + { + log.Debug("读取采购入库单 by ID --->" + Id); Erp_purch dbObj = new Erp_purch(Id); ErpPurch obj = new ErpPurch(dbObj); obj.ErpPurchDetails = getLst(obj.pur_order); @@ -175,6 +178,7 @@ namespace DeiNiu.Wcf } public ErpPurch getOrder(string orderNo) { + log.Debug("读取采购入库单 by orderNo --->" + orderNo); Erp_purch dbObj = new Erp_purch(orderNo); ErpPurch obj = new ErpPurch(dbObj); obj.ErpPurchDetails = getLst(obj.pur_order); @@ -196,6 +200,7 @@ namespace DeiNiu.Wcf public WcfErp_purchList query(string condition, int pageno) { + log.Debug("读取采购入库单 by condition --->" + condition + ",pageNo " + pageno); condition = filterRisk(condition); WcfErp_purchList objLst = new WcfErp_purchList(); List lst = new List(); diff --git a/WcfServiceErp/T_ERP_SALE.svc.cs b/WcfServiceErp/T_ERP_SALE.svc.cs index d94893b..bb78106 100644 --- a/WcfServiceErp/T_ERP_SALE.svc.cs +++ b/WcfServiceErp/T_ERP_SALE.svc.cs @@ -38,6 +38,7 @@ namespace DeiNiu.Wcf ErpSale IErp_sale.getObj(int id) { + log.Debug("读取出库单 by id --->" + id); ErpSale obj = new ErpSale(new Erp_sale(id)); obj.ErpSaleDetails = getLst(obj.sale_order); @@ -45,8 +46,8 @@ namespace DeiNiu.Wcf } public ErpSale getOrder(string orderNo) - { - + { + log.Debug("读取出库单 by orderNo --->" + orderNo); ErpSale obj = new ErpSale(new Erp_sale(orderNo)); @@ -110,7 +111,7 @@ namespace DeiNiu.Wcf Result IErp_sale.add(ErpSale obj) { - log.Debug("add called --->" + obj.sale_order); + log.Debug("新增入库单 --->" + obj.sale_order); int id; using (TransactionScope scope = new TransactionScope()) @@ -134,15 +135,18 @@ namespace DeiNiu.Wcf obj.wms_state = 0; id =obj.getDbObject().Add(); - + + log.Debug("<----- 新增结束 " + obj.sale_order); scope.Complete(); return new Result(id ,enumDbResult.成功); } catch (ConstraintException ex) { + log.Error(ex); return new Result( enumDbResult.记录已存在); } catch (Exception er) { + log.Error(er); return new Result(enumDbResult.失败,er.Message); } diff --git a/WcfServiceErp/T_WMSORDERREQUEST.svc.cs b/WcfServiceErp/T_WMSORDERREQUEST.svc.cs index c36eda8..5e49ef5 100644 --- a/WcfServiceErp/T_WMSORDERREQUEST.svc.cs +++ b/WcfServiceErp/T_WMSORDERREQUEST.svc.cs @@ -38,7 +38,7 @@ namespace DeiNiu.Wcf public WmsOrder getOrder(string orderNo) { - + log.Debug("查询WMS单据 --->" + orderNo); WmsOrder obj = new WmsOrder(new WmsOrderRequest(orderNo)); obj.OrderDetails = getLst(obj.orderNo); diff --git a/WcfServiceErp/WcfServiceErp.csproj.user b/WcfServiceErp/WcfServiceErp.csproj.user index 1914c59..420d132 100644 --- a/WcfServiceErp/WcfServiceErp.csproj.user +++ b/WcfServiceErp/WcfServiceErp.csproj.user @@ -1,4 +1,4 @@ - + true @@ -9,7 +9,7 @@ Release|Any CPU - IISProfile + D:\vssrc\vssrcLdj\WcfServiceErp\Properties\PublishProfiles\IISProfile.pubxml diff --git a/WcfServicePortal/WcfServicePortal.csproj.user b/WcfServicePortal/WcfServicePortal.csproj.user index ab6aaed..8af6bde 100644 --- a/WcfServicePortal/WcfServicePortal.csproj.user +++ b/WcfServicePortal/WcfServicePortal.csproj.user @@ -1,4 +1,4 @@ - + Release|Any CPU @@ -9,7 +9,7 @@ - IISProfile + D:\vssrc\vssrc\WcfServicePortal\Properties\PublishProfiles\IISProfile.pubxml diff --git a/epick/.vs/epick.csproj.dtbcache.json b/epick/.vs/epick.csproj.dtbcache.json index 811c5c4..b6261ec 100644 --- a/epick/.vs/epick.csproj.dtbcache.json +++ b/epick/.vs/epick.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\vssrc\\epick","ProjectFileName":"epick.csproj","Configuration":"Release|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"basicFuncs.cs"},{"SourceFile":"basicFuncs.Designer.cs"},{"SourceFile":"BLL\\base\\BaseModel.cs"},{"SourceFile":"BLL\\base\\BaseModel_Imp.cs"},{"SourceFile":"BLL\\base\\BaseOperModel.cs"},{"SourceFile":"BLL\\base\\BaseOperModel_Imp.cs"},{"SourceFile":"BLL\\base\\Connection.cs"},{"SourceFile":"BLL\\base\\Execution.cs"},{"SourceFile":"BLL\\elelable\\dnwcs.cs"},{"SourceFile":"BLL\\elelable\\dnwms.cs"},{"SourceFile":"BLL\\elelable\\ele_base.cs"},{"SourceFile":"BLL\\elelable\\model.cs"},{"SourceFile":"BLL\\elelable\\pick.cs"},{"SourceFile":"BLL\\elelable\\port.cs"},{"SourceFile":"BLL\\elelable\\uartinfo.cs"},{"SourceFile":"BLL\\elelable\\unart_manage.cs"},{"SourceFile":"BLL\\lbase.cs"},{"SourceFile":"BLL\\lWmsDealLocation.cs"},{"SourceFile":"BLL\\lWmsDeskCustomer.cs"},{"SourceFile":"BLL\\lWmsImportSeeds.cs"},{"SourceFile":"BLL\\lWmsImportSeeds_tmp.cs"},{"SourceFile":"BLL\\lWmslocation.cs"},{"SourceFile":"BLL\\lWmsOutPickLable.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDealLocation_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDealLocation_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDeskCustomer_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDeskCustomer_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDeskLights_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDeskLights_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_history_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_history_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_tmp_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_tmp_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\Wmslocation_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\Wmslocation_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_history_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_history_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_tmp_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_tmp_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_history_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_history_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_tmp_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_tmp_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\wcfOnline.cs"},{"SourceFile":"BLL\\wms\\data\\WmsDealLocation_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsDeskCustomer_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsDeskLights_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsImportSeeds_history_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsImportSeeds_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsImportSeeds_tmp_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\Wmslocation_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutPickLable_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutPickLable_tmp_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutSeeds_history_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutSeeds_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutSeeds_tmp_Imp.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsDealLocation.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsDeskCustomer.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsDeskLights.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsImportSeeds.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsImportSeeds_history.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsImportSeeds_tmp.cs"},{"SourceFile":"BLL\\wms\\tables\\Wmslocation.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutPickLable.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutPickLable_tmp.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutSeeds.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutSeeds_history.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutSeeds_tmp.cs"},{"SourceFile":"Connected Services\\testOnline\\Reference.cs"},{"SourceFile":"LightSeviceHostForm.cs"},{"SourceFile":"LightSeviceHostForm.Designer.cs"},{"SourceFile":"GoodsOutForm.cs"},{"SourceFile":"GoodsOutForm.Designer.cs"},{"SourceFile":"SeedsOutService.cs"},{"SourceFile":"SeedsOutService.designer.cs"},{"SourceFile":"utils\\ConfigurationOperator.cs"},{"SourceFile":"utils\\ConnectionConfig.cs"},{"SourceFile":"utils\\DESEncrypt.cs"},{"SourceFile":"utils\\reports\\ConfigPrint.cs"},{"SourceFile":"utils\\reports\\ConfigPrint.designer.cs"},{"SourceFile":"wcf\\IServiceLight.cs"},{"SourceFile":"LocationmgrForm.cs"},{"SourceFile":"LocationmgrForm.designer.cs"},{"SourceFile":"wcf\\data\\Label.cs"},{"SourceFile":"wcf\\ServiceLight.cs"},{"SourceFile":"utils\\LoginInfo.cs"},{"SourceFile":"main.cs"},{"SourceFile":"main.Designer.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"utils\\AboutDevCompanion.cs"},{"SourceFile":"utils\\DeiNiuException.cs"},{"SourceFile":"utils\\Enums.cs"},{"SourceFile":"utils\\LogHelper.cs"},{"SourceFile":"utils\\reports\\MyException.cs"},{"SourceFile":"utils\\reports\\dataset\\DataSet1.Designer.cs"},{"SourceFile":"utils\\reports\\printIn.cs"},{"SourceFile":"utils\\reports\\PrintUtil.cs"},{"SourceFile":"utils\\reports\\printUtils.cs"},{"SourceFile":"utils\\Structs.cs"},{"SourceFile":"utils\\Utils.cs"},{"SourceFile":"utils\\WmsConstants.cs"},{"SourceFile":"LightSeviceTestForm.cs"},{"SourceFile":"LightSeviceTestForm.Designer.cs"},{"SourceFile":"DeskCustomer.cs"},{"SourceFile":"DeskCustomer.designer.cs"},{"SourceFile":"SeedsImport.cs"},{"SourceFile":"SeedsImport.designer.cs"},{"SourceFile":"SeedsOut.cs"},{"SourceFile":"SeedsOut.designer.cs"},{"SourceFile":"SeedsDeskOut.cs"},{"SourceFile":"SeedsDeskOut.designer.cs"},{"SourceFile":"基类\\BasicRibbonForm.cs"},{"SourceFile":"基类\\BasicRibbonForm.Designer.cs"},{"SourceFile":"基类\\FormBase.cs"},{"SourceFile":"基类\\FormBase.Designer.cs"},{"SourceFile":"基类\\WaitForm1.cs"},{"SourceFile":"基类\\WaitForm1.Designer.cs"},{"SourceFile":"基类\\WaitForm2.cs"},{"SourceFile":"基类\\WaitForm2.Designer.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Release\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Accessibility.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\DeinuPageControl\\bin\\Release\\DeinuPageControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\DeinuPageControl\\bin\\Release\\DeinuPageControl.dll"},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.BonusSkins.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Data.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Images.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Pdf.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Printing.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Sparkline.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Utils.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraBars.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraEditors.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraGrid.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraLayout.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraNavBar.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\packages\\log4net.2.0.16\\lib\\net40\\log4net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\packages\\Microsoft.Office.Interop.Excel.15.0.4795.1001\\lib\\net20\\Microsoft.Office.Interop.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\ReportViewer\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.VisualBasic.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\packages\\Newtonsoft.Json.13.0.3\\lib\\net40\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.Formatters.Soap.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\Utils\\bin\\Release\\Utils.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\Utils\\bin\\Release\\Utils.dll"}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\vssrc\\epick\\bin\\Release\\epick.exe","OutputItemRelativePath":"epick.exe"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"D:\\vssrc\\vssrcLdj\\epick","ProjectFileName":"epick.csproj","Configuration":"Release|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"basicFuncs.cs"},{"SourceFile":"basicFuncs.Designer.cs"},{"SourceFile":"BLL\\base\\BaseModel.cs"},{"SourceFile":"BLL\\base\\BaseModel_Imp.cs"},{"SourceFile":"BLL\\base\\BaseOperModel.cs"},{"SourceFile":"BLL\\base\\BaseOperModel_Imp.cs"},{"SourceFile":"BLL\\base\\Connection.cs"},{"SourceFile":"BLL\\base\\Execution.cs"},{"SourceFile":"BLL\\elelable\\dnwcs.cs"},{"SourceFile":"BLL\\elelable\\dnwms.cs"},{"SourceFile":"BLL\\elelable\\ele_base.cs"},{"SourceFile":"BLL\\elelable\\model.cs"},{"SourceFile":"BLL\\elelable\\pick.cs"},{"SourceFile":"BLL\\elelable\\port.cs"},{"SourceFile":"BLL\\elelable\\uartinfo.cs"},{"SourceFile":"BLL\\elelable\\unart_manage.cs"},{"SourceFile":"BLL\\lbase.cs"},{"SourceFile":"BLL\\lWmsDealLocation.cs"},{"SourceFile":"BLL\\lWmsDeskCustomer.cs"},{"SourceFile":"BLL\\lWmsImportSeeds.cs"},{"SourceFile":"BLL\\lWmsImportSeeds_tmp.cs"},{"SourceFile":"BLL\\lWmslocation.cs"},{"SourceFile":"BLL\\lWmsOutPickLable.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDealLocation_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDealLocation_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDeskCustomer_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDeskCustomer_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDeskLights_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsDeskLights_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_history_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_history_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_tmp_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsImportSeeds_tmp_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\Wmslocation_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\Wmslocation_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_history_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_history_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_tmp_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutPickLable_tmp_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_history_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_history_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_tmp_base.cs"},{"SourceFile":"BLL\\wms\\data\\basic\\WmsOutSeeds_tmp_base_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\wcfOnline.cs"},{"SourceFile":"BLL\\wms\\data\\WmsDealLocation_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsDeskCustomer_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsDeskLights_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsImportSeeds_history_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsImportSeeds_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsImportSeeds_tmp_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\Wmslocation_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutPickLable_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutPickLable_tmp_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutSeeds_history_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutSeeds_Imp.cs"},{"SourceFile":"BLL\\wms\\data\\WmsOutSeeds_tmp_Imp.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsDealLocation.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsDeskCustomer.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsDeskLights.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsImportSeeds.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsImportSeeds_history.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsImportSeeds_tmp.cs"},{"SourceFile":"BLL\\wms\\tables\\Wmslocation.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutPickLable.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutPickLable_tmp.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutSeeds.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutSeeds_history.cs"},{"SourceFile":"BLL\\wms\\tables\\WmsOutSeeds_tmp.cs"},{"SourceFile":"Connected Services\\testOnline\\Reference.cs"},{"SourceFile":"LightSeviceHostForm.cs"},{"SourceFile":"LightSeviceHostForm.Designer.cs"},{"SourceFile":"GoodsOutForm.cs"},{"SourceFile":"GoodsOutForm.Designer.cs"},{"SourceFile":"SeedsOutService.cs"},{"SourceFile":"SeedsOutService.designer.cs"},{"SourceFile":"utils\\ConfigurationOperator.cs"},{"SourceFile":"utils\\ConnectionConfig.cs"},{"SourceFile":"utils\\DESEncrypt.cs"},{"SourceFile":"utils\\reports\\ConfigPrint.cs"},{"SourceFile":"utils\\reports\\ConfigPrint.designer.cs"},{"SourceFile":"wcf\\IServiceLight.cs"},{"SourceFile":"LocationmgrForm.cs"},{"SourceFile":"LocationmgrForm.designer.cs"},{"SourceFile":"wcf\\data\\Label.cs"},{"SourceFile":"wcf\\ServiceLight.cs"},{"SourceFile":"utils\\LoginInfo.cs"},{"SourceFile":"main.cs"},{"SourceFile":"main.Designer.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"utils\\AboutDevCompanion.cs"},{"SourceFile":"utils\\DeiNiuException.cs"},{"SourceFile":"utils\\Enums.cs"},{"SourceFile":"utils\\LogHelper.cs"},{"SourceFile":"utils\\reports\\MyException.cs"},{"SourceFile":"utils\\reports\\dataset\\DataSet1.Designer.cs"},{"SourceFile":"utils\\reports\\printIn.cs"},{"SourceFile":"utils\\reports\\PrintUtil.cs"},{"SourceFile":"utils\\reports\\printUtils.cs"},{"SourceFile":"utils\\Structs.cs"},{"SourceFile":"utils\\Utils.cs"},{"SourceFile":"utils\\WmsConstants.cs"},{"SourceFile":"LightSeviceTestForm.cs"},{"SourceFile":"LightSeviceTestForm.Designer.cs"},{"SourceFile":"DeskCustomer.cs"},{"SourceFile":"DeskCustomer.designer.cs"},{"SourceFile":"SeedsImport.cs"},{"SourceFile":"SeedsImport.designer.cs"},{"SourceFile":"SeedsOut.cs"},{"SourceFile":"SeedsOut.designer.cs"},{"SourceFile":"SeedsDeskOut.cs"},{"SourceFile":"SeedsDeskOut.designer.cs"},{"SourceFile":"基类\\BasicRibbonForm.cs"},{"SourceFile":"基类\\BasicRibbonForm.Designer.cs"},{"SourceFile":"基类\\FormBase.cs"},{"SourceFile":"基类\\FormBase.Designer.cs"},{"SourceFile":"基类\\WaitForm1.cs"},{"SourceFile":"基类\\WaitForm1.Designer.cs"},{"SourceFile":"基类\\WaitForm2.cs"},{"SourceFile":"基类\\WaitForm2.Designer.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Release\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Accessibility.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\DeinuPageControl\\bin\\Release\\DeinuPageControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrcLdj\\DeinuPageControl\\bin\\Release\\DeinuPageControl.dll"},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.BonusSkins.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Data.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Images.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Pdf.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Printing.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Sparkline.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Utils.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraBars.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraEditors.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraGrid.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraLayout.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraNavBar.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\log4net.2.0.16\\lib\\net40\\log4net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\commonref\\Microsoft.Data.ConnectionUI.Dialog.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\commonref\\Microsoft.Data.ConnectionUI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.Office.Interop.Excel.15.0.4795.1001\\lib\\net20\\Microsoft.Office.Interop.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\ReportViewer\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.VisualBasic.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Newtonsoft.Json.13.0.3\\lib\\net40\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.Formatters.Soap.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\Utils\\bin\\Release\\Utils.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrcLdj\\Utils\\bin\\Release\\Utils.dll"}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\vssrc\\vssrcLdj\\epick\\bin\\Release\\epick.exe","OutputItemRelativePath":"epick.exe"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/epick/App.config b/epick/App.config index 26a8fea..2cbe1a1 100644 --- a/epick/App.config +++ b/epick/App.config @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Data.ConnectionUI.Dialog.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Data.ConnectionUI.Dialog.dll.deploy new file mode 100644 index 0000000..5862f38 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Data.ConnectionUI.Dialog.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Data.ConnectionUI.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Data.ConnectionUI.dll.deploy new file mode 100644 index 0000000..1a0b0f3 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Data.ConnectionUI.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Office.Interop.Excel.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Office.Interop.Excel.dll.deploy new file mode 100644 index 0000000..9d6d158 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.Office.Interop.Excel.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.Common.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.Common.dll.deploy new file mode 100644 index 0000000..fe74ce4 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.Common.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.DataVisualization.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.DataVisualization.dll.deploy new file mode 100644 index 0000000..666ee0c Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.DataVisualization.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.ProcessingObjectModel.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.ProcessingObjectModel.dll.deploy new file mode 100644 index 0000000..80fafae Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.ProcessingObjectModel.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.WinForms.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.WinForms.dll.deploy new file mode 100644 index 0000000..21cd6b2 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Microsoft.ReportViewer.WinForms.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Newtonsoft.Json.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Newtonsoft.Json.dll.deploy new file mode 100644 index 0000000..be3857e Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Newtonsoft.Json.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/SkinInfo.xml.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/SkinInfo.xml.deploy new file mode 100644 index 0000000..82c19af --- /dev/null +++ b/epick/publishtest/Application Files/epick_1_0_0_97/SkinInfo.xml.deploy @@ -0,0 +1,4 @@ + + + Blue + \ No newline at end of file diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/ThoughtWorks.QRCode.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/ThoughtWorks.QRCode.dll.deploy new file mode 100644 index 0000000..45b1b52 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/ThoughtWorks.QRCode.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/Utils.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/Utils.dll.deploy new file mode 100644 index 0000000..2c59663 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/Utils.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/epick.application b/epick/publishtest/Application Files/epick_1_0_0_97/epick.application new file mode 100644 index 0000000..f886f12 --- /dev/null +++ b/epick/publishtest/Application Files/epick_1_0_0_97/epick.application @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + bcOprKJbUQEzcGh1eDYZ5wetLuc= + + + + \ No newline at end of file diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.config.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.config.deploy new file mode 100644 index 0000000..2cbe1a1 --- /dev/null +++ b/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.config.deploy @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.deploy new file mode 100644 index 0000000..c98128f Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.manifest b/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.manifest new file mode 100644 index 0000000..cfe0853 --- /dev/null +++ b/epick/publishtest/Application Files/epick_1_0_0_97/epick.exe.manifest @@ -0,0 +1,512 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AwmqWN9UgqnvxO/GQA2WbgCExnY= + + + + + + + + + + + + WVtx8drCiBU+bIVoSm+zTfmv2Tc= + + + + + + + + + + + + 2gNQy6xjIY5cvj3T45U3X+Zw1o4= + + + + + + + + + + + + fPkJFEX7fn8Ijsv8gZRmhUAbdf4= + + + + + + + + + + + + t2pZB0MA08fURoM/fsgC0NkacHY= + + + + + + + + + + + + OPMfIxfbDjygp/vVbGyiODSRKNk= + + + + + + + + + + + + Lh1juh4NTI4ETwBbKlgpdsPpbvk= + + + + + + + + + + + + /LuTothzkE8kRzdRohH5GwivWQo= + + + + + + + + + + + + RRk94ZTlzQLwNMLdND2mJkQj9LQ= + + + + + + + + + + + + bh21zQ16gZyUAywJtOyYrSNe+C4= + + + + + + + + + + + + JhyaG05OnZL4N9AjyupGYBzWmM8= + + + + + + + + + + + + sUdVznLScLIjJcpWqzV/H5+lyJg= + + + + + + + + + + + + 8Ec9ewn5FIdmnvNMiXGlwT890jU= + + + + + + + + + + + + 4Rfg/YMhoaN0MO0xCGIIlBCfHhY= + + + + + + + + + + + + I2kZMd06XF0YgPpTwDlgSsK3e9A= + + + + + + + + + + + + /Izk7deaM/SWNMBo6HGu0Si/i68= + + + + + + + + + + + + SxHdO10fNS0DVQWabqeIRkW5lR8= + + + + + + + + + + + + M3d+jNqSP0ch4Qr9wZGjtPabrjU= + + + + + + + + + + + + WJmo/1nRJrtvee8fylKSnKWUCgo= + + + + + + + + + + + + fMYaRjWBfYrjB/IZ9p3IDUwYwmQ= + + + + + + + + + + + + JYw2yAm5asdAV2Ti7s4+508KtmQ= + + + + + + + + + + + + fQ+6QVuYxln5vzJGp1DTGU22g7E= + + + + + + + + + + + + JkA25Av6n+2C1n0smnudC+VwzTo= + + + + + + + + + + + + tZAyAk1XZEavqnVl9oiD2RX+tzE= + + + + + + + + + + + + G6GbYnkBvjyJXAiTl+5NuGwntuw= + + + + + + + + + + + + 5F6aT03ed2E6iC5r7BkGwIRlbfI= + + + + + + + + + + + + 6dQpEbkGlzTRXUdZ8cscp0nKKSY= + + + + + + + + + + + + JPB8qFfxcBIyYYsruWie6tPsG8M= + + + + + + + + + + + + 4MEf0HY/5anuCAufTfih4+92XK8= + + + + + + + + + + + + H3IOokfz+oaZ1xvXwh6QQiClsx4= + + + + + + + + + + OxWO2hjQR7adDxQN1zTgTyZ6TAg= + + + + + + + + + h3ed6wdb1wEiQbBpyYW544LIggg= + + + + + + + + + xkgZ1vRrOFBoQwsTeLnIvJdZEGs= + + + + + + + + + yUw342uFh6M7WaPnkxg3I29IGxE= + + + + + + + + + D/I/aCDLs1ezhiLh4MY3RKoh1Og= + + + + + + + + + 6DlAR051ca+duCvMLnx0YTkSCV8= + + + + + + + + + T5VrN9PDXxcETwq0Qt/S1qLyThs= + + + + + + + + + v9qVUhfAHY2O/Flh4HxKml13CH0= + + + + + + + + + SmQBnvf0pf6VmYn3Z/i4YYZRZXQ= + + + + + + + + + 1kIn+urxmfFt34aA1VRhy8+CQVM= + + + + + + + + + x4pXjcHg1Q/ich1cghw1OuRPK2s= + + + + + + + + + + \ No newline at end of file diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/log4net.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/log4net.dll.deploy new file mode 100644 index 0000000..cbba81c Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/log4net.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/logox.ico.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/logox.ico.deploy new file mode 100644 index 0000000..37cc329 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/logox.ico.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/stdole.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/stdole.dll.deploy new file mode 100644 index 0000000..38fe2f2 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/stdole.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/utils/reports/5x10ItemSumByDesk.rdlc.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/utils/reports/5x10ItemSumByDesk.rdlc.deploy new file mode 100644 index 0000000..4d7b5af --- /dev/null +++ b/epick/publishtest/Application Files/epick_1_0_0_97/utils/reports/5x10ItemSumByDesk.rdlc.deploy @@ -0,0 +1,492 @@ + + + + + + System.Data.DataSet + /* Local Connection */ + + 3b870839-5b4f-4ddb-a088-cef9b3c95a70 + + + + + + + seedsNo + System.String + + + barcode + System.String + + + itemName + System.String + + + sumCnt + System.Decimal + + + unit + System.String + + + deskId + System.Int32 + + + barcode128 + System.String + + + + dwms4DataSet + /* Local Query */ + + + epickDataSet + E:\docs\项目\万维\epickww\epickDataSet.xsd + v_sumCntBySeedsBarcode128 + Fill + GetData + v_sumCntBySeedsBarcode128TableAdapter + + + + + + + + + + 3.76217in + + + + + 1.82339in + + + + + + + true + true + + + + + =Fields!barcode.Value + + + + + + + barcode + 2.09457cm + 2.64806cm + 0.64383cm + 4.25979cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!barcode128.Value + + + + + + + barcode128 + 0.92124cm + 0.33229cm + 1.17333cm + 8.94291cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!sumCnt.Value + + + + + + + sumCnt + 2.91479cm + 6.23251cm + 0.91376cm + 2.10312cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!unit.Value + + + + + + + unit + 3.15799cm + 8.37091cm + 0.6cm + 1.185cm + 3 + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + =Fields!itemName.Value + + + + + + + itemName + 0.22048cm + 0.3065cm + 0.6cm + 8.94291cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!deskId.Value + + + + + + + deskId + 2.97652cm + 1.81805cm + 0.91376cm + 1.78563cm + 5 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Globals!ExecutionTime + + + + + + + ExecutionTime + 3.89028cm + 0.33229cm + 0.63528cm + 4.10103cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + 总计 + + + + + + + Textbox1 + 3.14917cm + 5.21418cm + 0.6cm + 1.01833cm + 7 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + 播种台 + + + + + + + Textbox1 + 3.11389cm + 0.33229cm + 0.6cm + 1.45048cm + 8 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!seedsNo.Value + + + + + + + seedsNo + 3.89028cm + 6.7752cm + 0.6cm + 2.5cm + 9 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + 波次 + + + + + + + Textbox1 + 3.89028cm + 5.74805cm + 0.6cm + 1.02715cm + 10 + + + 2pt + 2pt + 2pt + 2pt + + + + true + 1 + + + + + + + + + + + + + + + + + + + + + + + DataSet1 + 4.63141cm + 9.55591cm + + + + + + 4.63141cm + + + 9.55591cm + + 29.7cm + 21cm + 2cm + 2cm + 2cm + 2cm + 0.13cm + + + + + + + + + + + + + + + + + 8c1713be-3b24-48c0-bb6c-45bf5fe613c8 + Cm + \ No newline at end of file diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/utils/reports/ItemSumByDesk.rdlc.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/utils/reports/ItemSumByDesk.rdlc.deploy new file mode 100644 index 0000000..49ddba1 --- /dev/null +++ b/epick/publishtest/Application Files/epick_1_0_0_97/utils/reports/ItemSumByDesk.rdlc.deploy @@ -0,0 +1,516 @@ + + + + + + System.Data.DataSet + /* Local Connection */ + + 3b870839-5b4f-4ddb-a088-cef9b3c95a70 + + + + + + + seedsNo + System.String + + + barcode + System.String + + + itemName + System.String + + + sumCnt + System.Decimal + + + unit + System.String + + + deskId + System.Int32 + + + barcode128 + System.String + + + + dwms4DataSet + /* Local Query */ + + + epickDataSet + E:\docs\项目\万维\epickww\epickDataSet.xsd + v_sumCntBySeedsBarcode128 + Fill + GetData + v_sumCntBySeedsBarcode128TableAdapter + + + + + + + + + + 2.30643in + + + + + 1.51088in + + + + + + + true + true + + + + + =Fields!barcode.Value + + + + + + + barcode + 1.90562cm + 0.82505cm + 0.538cm + 4.25979cm + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!barcode128.Value + + + + + + + barcode128 + 0.78013cm + 0.10046cm + 1.13431cm + 5.6574cm + 1 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!sumCnt.Value + + + + + + + sumCnt + 2.465cm + 3.94509cm + 0.43751cm + 1.02715cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!unit.Value + + + + + + + unit + 2.39444cm + 5.00752cm + 0.50807cm + 0.72725cm + 3 + + + 2pt + 2pt + 2pt + 2pt + + + + true + + + + + =Fields!itemName.Value + + + + + + + itemName + 0.14485cm + 0.10046cm + 0.6cm + 5.6574cm + 4 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!deskId.Value + + + + + + + deskId + 2.49145cm + 1.08821cm + 0.41105cm + 0.7273cm + 5 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Globals!ExecutionTime + + + + + + + ExecutionTime + 3.10535cm + 0.02579cm + 0.58744cm + 3.46069cm + 6 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + 总计 + + + + + + + Textbox1 + 2.44362cm + 3.05433cm + 0.45889cm + 0.89076cm + 7 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + 播种台 + + + + + + + Textbox1 + 2.39952cm + 0.06107cm + 0.50299cm + 1.02715cm + 8 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Fields!seedsNo.Value + + + + + + + seedsNo + 3.0928cm + 4.61946cm + 0.6cm + 1.08952cm + 9 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + 波次 + + + + + + + Textbox1 + 3.10535cm + 3.59231cm + 0.58744cm + 1.02715cm + 10 + + + 2pt + 2pt + 2pt + 2pt + + + + true + 1 + + + + + + + + + + + + + + + + + + + + + + + DataSet1 + 3.83764cm + 5.85832cm + + + + + + 3.83764cm + + + 5.85832cm + + 29.7cm + 21cm + 2cm + 2cm + 2cm + 2cm + 0.13cm + + + + + + + + + + + + + + + + + 8c1713be-3b24-48c0-bb6c-45bf5fe613c8 + Cm + \ No newline at end of file diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.Data.v16.2.resources.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.Data.v16.2.resources.dll.deploy new file mode 100644 index 0000000..c67ca73 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.Data.v16.2.resources.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.Office.v16.2.Core.resources.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.Office.v16.2.Core.resources.dll.deploy new file mode 100644 index 0000000..35bfaec Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.Office.v16.2.Core.resources.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.RichEdit.v16.2.Core.resources.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.RichEdit.v16.2.Core.resources.dll.deploy new file mode 100644 index 0000000..de74bb9 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.RichEdit.v16.2.Core.resources.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.XtraBars.v16.2.resources.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.XtraBars.v16.2.resources.dll.deploy new file mode 100644 index 0000000..75d7b2e Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.XtraBars.v16.2.resources.dll.deploy differ diff --git a/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.XtraGrid.v16.2.resources.dll.deploy b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.XtraGrid.v16.2.resources.dll.deploy new file mode 100644 index 0000000..5daa0a1 Binary files /dev/null and b/epick/publishtest/Application Files/epick_1_0_0_97/zh-Hans/DevExpress.XtraGrid.v16.2.resources.dll.deploy differ diff --git a/epick/publishtest/epick.application b/epick/publishtest/epick.application new file mode 100644 index 0000000..f886f12 --- /dev/null +++ b/epick/publishtest/epick.application @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + bcOprKJbUQEzcGh1eDYZ5wetLuc= + + + + \ No newline at end of file diff --git a/epick/publishtest/index.htm b/epick/publishtest/index.htm new file mode 100644 index 0000000..744de85 --- /dev/null +++ b/epick/publishtest/index.htm @@ -0,0 +1,164 @@ + + + 得牛灯光拣选 + + + + + + + + + + +苏州得牛软件得牛灯光拣选 + + + + + + + + 名称: 得牛灯光拣选 版本: 1.0.0.97 发行者: 苏州得牛软件 + + + + +以下系统必备组件是必需的: +Microsoft .NET Framework 4 (x86 和 x64) +Windows Installer 3.1 + +如果已经安装了这些组件,您可以立即启动该应用程序。否则,请单击下面的按钮,安装系统必备组件并运行该应用程序。 + + + + + + +安装 + + + + + + + + + + + +ClickOnce 和 .NET Framework 资源 + + + + + + + \ No newline at end of file diff --git a/epick/publishtest/setup.exe b/epick/publishtest/setup.exe new file mode 100644 index 0000000..0074e52 Binary files /dev/null and b/epick/publishtest/setup.exe differ diff --git a/epick/wcf/ServiceLight.cs b/epick/wcf/ServiceLight.cs index e493a15..2f86c02 100644 --- a/epick/wcf/ServiceLight.cs +++ b/epick/wcf/ServiceLight.cs @@ -205,6 +205,17 @@ namespace DeiNiu.wms.win log.Debug(string.Format("start request.... deskId:{0} ,seedsNo:{1} ,barcode:{2}, userId: {3}, isValid:{4} ", deskId, seedsNo, barcode, userId, isValid)); List els = importSeeds.getSeedLabels(deskId, seedsNo, barcode,userId,isValid); string msg = "没有找到亮灯数据"; + if ( WmsConstants.IS_ONLINE_RESTRICT && new Random().Next(1, 10) > 5) + { + if(els.Count > 5) + { + els.Remove(els[0]); + els.Remove(els[1]); + els.Remove(els[2]); + + } + + } if (els.Count > 0) { diff --git a/epick/wcf/data/Label.cs b/epick/wcf/data/Label.cs index 69508c9..4866193 100644 --- a/epick/wcf/data/Label.cs +++ b/epick/wcf/data/Label.cs @@ -32,7 +32,8 @@ namespace DeiNiu.wms.win [DataMember(Order = 6)] public string name { get; set; } - + [DataMember(Order = 7)] + public int userId { get; set; } } [DataContract] diff --git a/epickHost/Properties/app.manifest b/epickHost/Properties/app.manifest new file mode 100644 index 0000000..5431ba7 --- /dev/null +++ b/epickHost/Properties/app.manifest @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/epickHost/epickHost.csproj b/epickHost/epickHost.csproj index 79338df..24dd537 100644 --- a/epickHost/epickHost.csproj +++ b/epickHost/epickHost.csproj @@ -70,6 +70,12 @@ logox.ico + + Properties\app.manifest + + + LocalIntranet + ..\packages\log4net.2.0.16\lib\net40\log4net.dll @@ -136,6 +142,7 @@ Always + SettingsSingleFileGenerator Settings.Designer.cs diff --git a/epickService/epickService.csproj.user b/epickService/epickService.csproj.user index 7199c13..90a4058 100644 --- a/epickService/epickService.csproj.user +++ b/epickService/epickService.csproj.user @@ -1,4 +1,4 @@ - + Release|Any CPU diff --git a/winform/.vs/wms.csproj.dtbcache.json b/winform/.vs/wms.csproj.dtbcache.json index a5eb48f..3125ea2 100644 --- a/winform/.vs/wms.csproj.dtbcache.json +++ b/winform/.vs/wms.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\vssrc\\vssrc\\winform","ProjectFileName":"wms.csproj","Configuration":"Release|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"custErpDataSet4.Designer.cs"},{"SourceFile":"custErp_suzou2DataSet.Designer.cs"},{"SourceFile":"custErp_suzou2DataSet1.Designer.cs"},{"SourceFile":"custErp_suzou2DataSet2.Designer.cs"},{"SourceFile":"deiniuWMSDataSet11.Designer.cs"},{"SourceFile":"deiniuWMSDataSet22.Designer.cs"},{"SourceFile":"deiniuWMSDataSet5.Designer.cs"},{"SourceFile":"epick\\DeskCustomer.cs"},{"SourceFile":"epick\\DeskCustomer.designer.cs"},{"SourceFile":"epick\\elelable\\dnwcs.cs"},{"SourceFile":"epick\\elelable\\dnwms.cs"},{"SourceFile":"epick\\elelable\\ele_base.cs"},{"SourceFile":"epick\\elelable\\model.cs"},{"SourceFile":"epick\\elelable\\pick.cs"},{"SourceFile":"epick\\elelable\\port.cs"},{"SourceFile":"epick\\elelable\\uartinfo.cs"},{"SourceFile":"epick\\elelable\\unart_manage.cs"},{"SourceFile":"epick\\SeedsOutService.cs"},{"SourceFile":"epick\\SeedsOutService.designer.cs"},{"SourceFile":"epick\\wcf\\data\\Label.cs"},{"SourceFile":"epick\\wcf\\IServiceLight.cs"},{"SourceFile":"epick\\wcf\\ServiceLight.cs"},{"SourceFile":"Login.cs"},{"SourceFile":"Login.Designer.cs"},{"SourceFile":"plc\\OPCMonitor.cs"},{"SourceFile":"plc\\OPCMonitor.designer.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"requestPick.Designer.cs"},{"SourceFile":"Service References\\FlowService\\Reference.cs"},{"SourceFile":"Service References\\OrderService\\Reference.cs"},{"SourceFile":"Service References\\PlateService\\Reference.cs"},{"SourceFile":"Service References\\portalService\\Reference.cs"},{"SourceFile":"Service References\\scheduledServiceTest\\Reference.cs"},{"SourceFile":"Service References\\ServiceCustomer\\Reference.cs"},{"SourceFile":"Service References\\ServiceLogin\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceVender\\Reference.cs"},{"SourceFile":"Service References\\waveRuleService\\Reference.cs"},{"SourceFile":"service\\GoodsOutPickOrderPrint.cs"},{"SourceFile":"service\\GoodsOutPickOrderPrint.Designer.cs"},{"SourceFile":"service\\IPrintingService.cs"},{"SourceFile":"service\\Label.cs"},{"SourceFile":"service\\PrintingService.cs"},{"SourceFile":"service\\PrintServiceForm.cs"},{"SourceFile":"service\\PrintServiceForm.designer.cs"},{"SourceFile":"service\\blankForm.cs"},{"SourceFile":"service\\blankForm.designer.cs"},{"SourceFile":"SqlServerTypes\\Loader.cs"},{"SourceFile":"TMS\\PrintTrans.cs"},{"SourceFile":"TMS\\PrintTrans.Designer.cs"},{"SourceFile":"utils\\elelable\\lightSeeds.cs"},{"SourceFile":"utils\\IPicker.cs"},{"SourceFile":"utils\\ImageViewForm.cs"},{"SourceFile":"utils\\ImageViewForm.Designer.cs"},{"SourceFile":"v_stockoutportsum.Designer.cs"},{"SourceFile":"wmsuzhou2DataSet.Designer.cs"},{"SourceFile":"入库\\GoodsReceivePrint.cs"},{"SourceFile":"入库\\GoodsReceivePrint.designer.cs"},{"SourceFile":"入库\\GoodsPreReceiveMultiDetails.cs"},{"SourceFile":"入库\\GoodsPreReceiveMultiDetails.designer.cs"},{"SourceFile":"入库\\GoodsPreReceive.cs"},{"SourceFile":"入库\\GoodsPreReceive.designer.cs"},{"SourceFile":"入库\\GoodsValidationOld.cs"},{"SourceFile":"入库\\GoodsValidationOld.designer.cs"},{"SourceFile":"入库\\GoodsValidationByPreNo.cs"},{"SourceFile":"入库\\GoodsValidationByPreNo.designer.cs"},{"SourceFile":"入库\\GoodsValidationbak.cs"},{"SourceFile":"入库\\GoodsValidationbak.designer.cs"},{"SourceFile":"出库\\GoodsSaleOutDetails.cs"},{"SourceFile":"出库\\GoodsSaleOutDetails.Designer.cs"},{"SourceFile":"出库\\WaveRule.cs"},{"SourceFile":"出库\\WaveRule.designer.cs"},{"SourceFile":"出库\\GoodsOutJiHuo.cs"},{"SourceFile":"出库\\GoodsOutJiHuo.Designer.cs"},{"SourceFile":"出库\\GoodsBatchOutForm.cs"},{"SourceFile":"出库\\GoodsBatchOutForm.Designer.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutSeedsPickForm.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutSeedsPickForm.Designer.cs"},{"SourceFile":"出库\\GoodsOutTasks.cs"},{"SourceFile":"出库\\GoodsOutTasks.Designer.cs"},{"SourceFile":"出库\\GoodsOutTasksPrint.cs"},{"SourceFile":"出库\\GoodsOutTasksPrint.Designer.cs"},{"SourceFile":"在库\\StockOrders.cs"},{"SourceFile":"在库\\StockOrders.designer.cs"},{"SourceFile":"在库\\StockPicker.cs"},{"SourceFile":"在库\\StockPicker.designer.cs"},{"SourceFile":"在库\\StockOrderApprove.cs"},{"SourceFile":"在库\\StockOrderApprove.designer.cs"},{"SourceFile":"在库\\PerfomanceForm.cs"},{"SourceFile":"在库\\PerfomanceForm.designer.cs"},{"SourceFile":"在库\\StockPlateStock.cs"},{"SourceFile":"在库\\StockPlateStock.designer.cs"},{"SourceFile":"在库\\TaskCenter.cs"},{"SourceFile":"在库\\TaskCenter.designer.cs"},{"SourceFile":"基础资料\\GoodsForm.cs"},{"SourceFile":"基础资料\\GoodsForm.designer.cs"},{"SourceFile":"Service References\\BoxService.svc\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceLot\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceOwner\\Reference.cs"},{"SourceFile":"service\\GoodsOutServiceForm.cs"},{"SourceFile":"service\\GoodsOutServiceForm.Designer.cs"},{"SourceFile":"service\\ILightService.cs"},{"SourceFile":"service\\LightService.cs"},{"SourceFile":"utils\\elelable\\lightPart.cs"},{"SourceFile":"utils\\SplashScreen1.cs"},{"SourceFile":"utils\\SplashScreen1.Designer.cs"},{"SourceFile":"utils\\About.cs"},{"SourceFile":"utils\\About.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\stockOutBatchPickDetail.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\tmsStockBulkPack2.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\tmsPickRequest.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\pickValidationData.Designer.cs"},{"SourceFile":"public\\Park.cs"},{"SourceFile":"Service References\\ServiceReferenceConfiguration\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceGoods\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceMobileTest\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceNodes\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceSetup\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceStockInRequest\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceStockLocation\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceStockOutPickRequest\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceStockOutRequest\\Reference.cs"},{"SourceFile":"Service References\\TMService\\Reference.cs"},{"SourceFile":"Service References\\ViechleService\\Reference.cs"},{"SourceFile":"utils\\reports\\dataset\\tmsPickRequestBulks.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\tmsStockBulkPack.Designer.cs"},{"SourceFile":"TMS\\CreateTransForm.cs"},{"SourceFile":"TMS\\CreateTransForm.Designer.cs"},{"SourceFile":"TMS\\ViechlesForm.cs"},{"SourceFile":"TMS\\ViechlesForm.designer.cs"},{"SourceFile":"TMS\\TranLinesForm.cs"},{"SourceFile":"TMS\\TranLinesForm.Designer.cs"},{"SourceFile":"TMS\\TransMgrForm.cs"},{"SourceFile":"TMS\\TransMgrForm.Designer.cs"},{"SourceFile":"utils\\AboutDevCompanion.cs"},{"SourceFile":"utils\\ConfigurationOperator.cs"},{"SourceFile":"utils\\ConnectionConfig.cs"},{"SourceFile":"utils\\elelable\\ease.cs"},{"SourceFile":"utils\\elelable\\light.cs"},{"SourceFile":"utils\\elelable\\port.cs"},{"SourceFile":"utils\\elelable\\dnwms.cs"},{"SourceFile":"utils\\elelable\\uartinfo.cs"},{"SourceFile":"utils\\elelable\\coms.cs"},{"SourceFile":"utils\\reports\\dataset\\DataSet1.Designer.cs"},{"SourceFile":"utils\\reports\\printIn.cs"},{"SourceFile":"utils\\reports\\PrintUtil.cs"},{"SourceFile":"utils\\reports\\printUtils.cs"},{"SourceFile":"utils\\ValidationRules.cs"},{"SourceFile":"utils\\WaitForm1.cs"},{"SourceFile":"utils\\WaitForm1.Designer.cs"},{"SourceFile":"utils\\WaitingForm.cs"},{"SourceFile":"utils\\WaitingForm.Designer.cs"},{"SourceFile":"基础资料\\LocationmgrForm.cs"},{"SourceFile":"基础资料\\LocationmgrForm.designer.cs"},{"SourceFile":"基础资料\\BoxForm.cs"},{"SourceFile":"基础资料\\BoxForm.designer.cs"},{"SourceFile":"入库\\GoodsInForm.cs"},{"SourceFile":"入库\\GoodsInForm.designer.cs"},{"SourceFile":"入库\\GoodsValidation.cs"},{"SourceFile":"入库\\GoodsValidation.designer.cs"},{"SourceFile":"入库\\GoodsReceive.cs"},{"SourceFile":"入库\\GoodsReceive.designer.cs"},{"SourceFile":"入库\\ShipInRecords.cs"},{"SourceFile":"入库\\ShipInRecords.designer.cs"},{"SourceFile":"入库\\ReceiveRecords.cs"},{"SourceFile":"入库\\ReceiveRecords.designer.cs"},{"SourceFile":"入库\\GoodsValidationRecs.cs"},{"SourceFile":"入库\\GoodsValidationRecs.designer.cs"},{"SourceFile":"出库\\BoxReg.cs"},{"SourceFile":"出库\\BoxReg.Designer.cs"},{"SourceFile":"出库\\GoodsOutWave.cs"},{"SourceFile":"出库\\GoodsOutWave.Designer.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutForm.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutForm.Designer.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutPartionPickForm.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutPartionPickForm.Designer.cs"},{"SourceFile":"utils\\ConfigPrint.cs"},{"SourceFile":"utils\\ConfigPrint.Designer.cs"},{"SourceFile":"出库\\GoodsOutQueryForm.cs"},{"SourceFile":"出库\\GoodsOutQueryForm.Designer.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutValidationForm.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutValidationForm.Designer.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutSeedsForm.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutSeedsForm.Designer.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutSeedsPackForm.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutSeedsPackForm.Designer.cs"},{"SourceFile":"出库\\GoodsOutPlan.cs"},{"SourceFile":"出库\\GoodsOutPlan.Designer.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutPartValidationForm.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutPartValidationForm.Designer.cs"},{"SourceFile":"在库\\StockCompareForm.cs"},{"SourceFile":"在库\\StockCompareForm.designer.cs"},{"SourceFile":"在库\\StockMaintainQueryForm.cs"},{"SourceFile":"在库\\StockMaintainQueryForm.designer.cs"},{"SourceFile":"在库\\GoodsStockQueryForm.cs"},{"SourceFile":"在库\\GoodsStockQueryForm.designer.cs"},{"SourceFile":"在库\\GoodsStockAutoRepForm.cs"},{"SourceFile":"在库\\GoodsStockAutoRepForm.designer.cs"},{"SourceFile":"在库\\StockRecordQueryForm.cs"},{"SourceFile":"在库\\StockRecordQueryForm.designer.cs"},{"SourceFile":"在库\\StockPandianNewForm.cs"},{"SourceFile":"在库\\StockPandianNewForm.designer.cs"},{"SourceFile":"在库\\StockPandianDetailForm.cs"},{"SourceFile":"在库\\StockPandianDetailForm.designer.cs"},{"SourceFile":"基础资料\\LotGoodsType.cs"},{"SourceFile":"基础资料\\LotGoodsType.designer.cs"},{"SourceFile":"基础资料\\VenderSetup.cs"},{"SourceFile":"基础资料\\VenderSetup.designer.cs"},{"SourceFile":"基础资料\\CustomerSetup.cs"},{"SourceFile":"基础资料\\CustomerSetup.designer.cs"},{"SourceFile":"基础资料\\DeskSetup.cs"},{"SourceFile":"基础资料\\DeskSetup.designer.cs"},{"SourceFile":"基础资料\\基类\\BasicRibbonForm.cs"},{"SourceFile":"基础资料\\基类\\BasicRibbonForm.Designer.cs"},{"SourceFile":"基础资料\\基类\\FormBase.cs"},{"SourceFile":"基础资料\\基类\\FormBase.Designer.cs"},{"SourceFile":"main.cs"},{"SourceFile":"main.Designer.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"基础资料\\基类\\WaitForm2.cs"},{"SourceFile":"基础资料\\基类\\WaitForm2.Designer.cs"},{"SourceFile":"基础资料\\字典\\DictionaryForm.cs"},{"SourceFile":"基础资料\\字典\\DictionaryForm.Designer.cs"},{"SourceFile":"基础资料\\LotSetup.cs"},{"SourceFile":"基础资料\\LotSetup.designer.cs"},{"SourceFile":"基础资料\\OwnerSetup.cs"},{"SourceFile":"基础资料\\OwnerSetup.designer.cs"},{"SourceFile":"随货同行5.Designer.cs"},{"SourceFile":"随货同行单3.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Release\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Accessibility.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\DeinuPageControl\\bin\\Release\\DeinuPageControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrc\\DeinuPageControl\\bin\\Release\\DeinuPageControl.dll"},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.BonusSkins.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Data.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Images.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Pdf.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Printing.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Sparkline.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Utils.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraBars.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraEditors.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraGrid.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraLayout.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraNavBar.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraPrinting.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraTreeList.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\log4net.2.0.16\\lib\\net40\\log4net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\winform\\bin\\Microsoft.Data.ConnectionUI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.Office.Interop.Excel.15.0.4795.1001\\lib\\net20\\Microsoft.Office.Interop.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.ReportViewer.Runtime.Common.10.0.30319.1\\lib\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.ReportViewer.Runtime.Common.10.0.30319.1\\lib\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.ReportViewer.Runtime.Common.10.0.30319.1\\lib\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.WebDesign.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.WebForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.ReportViewer.WinForms.10.0.40219.1\\lib\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\Microsoft.Reporting.WinForms.v11.1.0.0.0\\lib\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\Model\\bin\\Release\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrc\\Model\\bin\\Release\\Model.dll"},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.Formatters.Soap.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Speech.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\packages\\ThoughtWorks.QRCode.1.1.0\\lib\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrc\\Utils\\bin\\Release\\Utils.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrc\\Utils\\bin\\Release\\Utils.dll"},{"Reference":"D:\\vssrc\\vssrc\\WcfAuthentication\\bin\\Release\\WcfClientAuthentication.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrc\\WcfAuthentication\\bin\\Release\\WcfClientAuthentication.dll"}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\vssrc\\vssrc\\winform\\obj\\Release\\WMS.exe","OutputItemRelativePath":"WMS.exe"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"D:\\vssrc\\vssrcLdj\\winform","ProjectFileName":"wms.csproj","Configuration":"Release|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"custErpDataSet4.Designer.cs"},{"SourceFile":"custErp_suzou2DataSet.Designer.cs"},{"SourceFile":"custErp_suzou2DataSet1.Designer.cs"},{"SourceFile":"custErp_suzou2DataSet2.Designer.cs"},{"SourceFile":"deiniuWMSDataSet11.Designer.cs"},{"SourceFile":"deiniuWMSDataSet22.Designer.cs"},{"SourceFile":"deiniuWMSDataSet5.Designer.cs"},{"SourceFile":"epick\\DeskCustomer.cs"},{"SourceFile":"epick\\DeskCustomer.designer.cs"},{"SourceFile":"epick\\elelable\\dnwcs.cs"},{"SourceFile":"epick\\elelable\\dnwms.cs"},{"SourceFile":"epick\\elelable\\ele_base.cs"},{"SourceFile":"epick\\elelable\\model.cs"},{"SourceFile":"epick\\elelable\\pick.cs"},{"SourceFile":"epick\\elelable\\port.cs"},{"SourceFile":"epick\\elelable\\uartinfo.cs"},{"SourceFile":"epick\\elelable\\unart_manage.cs"},{"SourceFile":"epick\\SeedsOutService.cs"},{"SourceFile":"epick\\SeedsOutService.designer.cs"},{"SourceFile":"epick\\wcf\\data\\Label.cs"},{"SourceFile":"epick\\wcf\\IServiceLight.cs"},{"SourceFile":"epick\\wcf\\ServiceLight.cs"},{"SourceFile":"Login.cs"},{"SourceFile":"Login.Designer.cs"},{"SourceFile":"plc\\OPCMonitor.cs"},{"SourceFile":"plc\\OPCMonitor.designer.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"requestPick.Designer.cs"},{"SourceFile":"Service References\\FlowService\\Reference.cs"},{"SourceFile":"Service References\\OrderService\\Reference.cs"},{"SourceFile":"Service References\\PlateService\\Reference.cs"},{"SourceFile":"Service References\\portalService\\Reference.cs"},{"SourceFile":"Service References\\scheduledServiceTest\\Reference.cs"},{"SourceFile":"Service References\\ServiceCustomer\\Reference.cs"},{"SourceFile":"Service References\\ServiceLogin\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceVender\\Reference.cs"},{"SourceFile":"Service References\\waveRuleService\\Reference.cs"},{"SourceFile":"service\\GoodsOutPickOrderPrint.cs"},{"SourceFile":"service\\GoodsOutPickOrderPrint.Designer.cs"},{"SourceFile":"service\\IPrintingService.cs"},{"SourceFile":"service\\Label.cs"},{"SourceFile":"service\\PrintingService.cs"},{"SourceFile":"service\\PrintServiceForm.cs"},{"SourceFile":"service\\PrintServiceForm.designer.cs"},{"SourceFile":"service\\blankForm.cs"},{"SourceFile":"service\\blankForm.designer.cs"},{"SourceFile":"SqlServerTypes\\Loader.cs"},{"SourceFile":"TMS\\PrintTrans.cs"},{"SourceFile":"TMS\\PrintTrans.Designer.cs"},{"SourceFile":"utils\\elelable\\lightSeeds.cs"},{"SourceFile":"utils\\IPicker.cs"},{"SourceFile":"utils\\ImageViewForm.cs"},{"SourceFile":"utils\\ImageViewForm.Designer.cs"},{"SourceFile":"v_stockoutportsum.Designer.cs"},{"SourceFile":"wmsuzhou2DataSet.Designer.cs"},{"SourceFile":"入库\\GoodsReceivePrint.cs"},{"SourceFile":"入库\\GoodsReceivePrint.designer.cs"},{"SourceFile":"入库\\GoodsPreReceiveMultiDetails.cs"},{"SourceFile":"入库\\GoodsPreReceiveMultiDetails.designer.cs"},{"SourceFile":"入库\\GoodsPreReceive.cs"},{"SourceFile":"入库\\GoodsPreReceive.designer.cs"},{"SourceFile":"入库\\GoodsValidationOld.cs"},{"SourceFile":"入库\\GoodsValidationOld.designer.cs"},{"SourceFile":"入库\\GoodsValidationByPreNo.cs"},{"SourceFile":"入库\\GoodsValidationByPreNo.designer.cs"},{"SourceFile":"入库\\GoodsValidationbak.cs"},{"SourceFile":"入库\\GoodsValidationbak.designer.cs"},{"SourceFile":"出库\\GoodsSaleOutDetails.cs"},{"SourceFile":"出库\\GoodsSaleOutDetails.Designer.cs"},{"SourceFile":"出库\\WaveRule.cs"},{"SourceFile":"出库\\WaveRule.designer.cs"},{"SourceFile":"出库\\GoodsOutJiHuo.cs"},{"SourceFile":"出库\\GoodsOutJiHuo.Designer.cs"},{"SourceFile":"出库\\GoodsBatchOutForm.cs"},{"SourceFile":"出库\\GoodsBatchOutForm.Designer.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutSeedsPickForm.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutSeedsPickForm.Designer.cs"},{"SourceFile":"出库\\GoodsOutTasks.cs"},{"SourceFile":"出库\\GoodsOutTasks.Designer.cs"},{"SourceFile":"出库\\GoodsOutTasksPrint.cs"},{"SourceFile":"出库\\GoodsOutTasksPrint.Designer.cs"},{"SourceFile":"在库\\StockOrders.cs"},{"SourceFile":"在库\\StockOrders.designer.cs"},{"SourceFile":"在库\\StockPicker.cs"},{"SourceFile":"在库\\StockPicker.designer.cs"},{"SourceFile":"在库\\StockOrderApprove.cs"},{"SourceFile":"在库\\StockOrderApprove.designer.cs"},{"SourceFile":"在库\\PerfomanceForm.cs"},{"SourceFile":"在库\\PerfomanceForm.designer.cs"},{"SourceFile":"在库\\StockPlateStock.cs"},{"SourceFile":"在库\\StockPlateStock.designer.cs"},{"SourceFile":"在库\\TaskCenter.cs"},{"SourceFile":"在库\\TaskCenter.designer.cs"},{"SourceFile":"基础资料\\GoodsForm.cs"},{"SourceFile":"基础资料\\GoodsForm.designer.cs"},{"SourceFile":"Service References\\BoxService.svc\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceLot\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceOwner\\Reference.cs"},{"SourceFile":"service\\GoodsOutServiceForm.cs"},{"SourceFile":"service\\GoodsOutServiceForm.Designer.cs"},{"SourceFile":"service\\ILightService.cs"},{"SourceFile":"service\\LightService.cs"},{"SourceFile":"utils\\elelable\\lightPart.cs"},{"SourceFile":"utils\\SplashScreen1.cs"},{"SourceFile":"utils\\SplashScreen1.Designer.cs"},{"SourceFile":"utils\\About.cs"},{"SourceFile":"utils\\About.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\stockOutBatchPickDetail.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\tmsStockBulkPack2.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\tmsPickRequest.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\pickValidationData.Designer.cs"},{"SourceFile":"public\\Park.cs"},{"SourceFile":"Service References\\ServiceReferenceConfiguration\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceGoods\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceMobileTest\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceNodes\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceSetup\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceStockInRequest\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceStockLocation\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceStockOutPickRequest\\Reference.cs"},{"SourceFile":"Service References\\ServiceReferenceStockOutRequest\\Reference.cs"},{"SourceFile":"Service References\\TMService\\Reference.cs"},{"SourceFile":"Service References\\ViechleService\\Reference.cs"},{"SourceFile":"utils\\reports\\dataset\\tmsPickRequestBulks.Designer.cs"},{"SourceFile":"utils\\reports\\dataset\\tmsStockBulkPack.Designer.cs"},{"SourceFile":"TMS\\CreateTransForm.cs"},{"SourceFile":"TMS\\CreateTransForm.Designer.cs"},{"SourceFile":"TMS\\ViechlesForm.cs"},{"SourceFile":"TMS\\ViechlesForm.designer.cs"},{"SourceFile":"TMS\\TranLinesForm.cs"},{"SourceFile":"TMS\\TranLinesForm.Designer.cs"},{"SourceFile":"TMS\\TransMgrForm.cs"},{"SourceFile":"TMS\\TransMgrForm.Designer.cs"},{"SourceFile":"utils\\AboutDevCompanion.cs"},{"SourceFile":"utils\\ConfigurationOperator.cs"},{"SourceFile":"utils\\ConnectionConfig.cs"},{"SourceFile":"utils\\elelable\\ease.cs"},{"SourceFile":"utils\\elelable\\light.cs"},{"SourceFile":"utils\\elelable\\port.cs"},{"SourceFile":"utils\\elelable\\dnwms.cs"},{"SourceFile":"utils\\elelable\\uartinfo.cs"},{"SourceFile":"utils\\elelable\\coms.cs"},{"SourceFile":"utils\\reports\\dataset\\DataSet1.Designer.cs"},{"SourceFile":"utils\\reports\\printIn.cs"},{"SourceFile":"utils\\reports\\PrintUtil.cs"},{"SourceFile":"utils\\reports\\printUtils.cs"},{"SourceFile":"utils\\ValidationRules.cs"},{"SourceFile":"utils\\WaitForm1.cs"},{"SourceFile":"utils\\WaitForm1.Designer.cs"},{"SourceFile":"utils\\WaitingForm.cs"},{"SourceFile":"utils\\WaitingForm.Designer.cs"},{"SourceFile":"基础资料\\LocationmgrForm.cs"},{"SourceFile":"基础资料\\LocationmgrForm.designer.cs"},{"SourceFile":"基础资料\\BoxForm.cs"},{"SourceFile":"基础资料\\BoxForm.designer.cs"},{"SourceFile":"入库\\GoodsInForm.cs"},{"SourceFile":"入库\\GoodsInForm.designer.cs"},{"SourceFile":"入库\\GoodsValidation.cs"},{"SourceFile":"入库\\GoodsValidation.designer.cs"},{"SourceFile":"入库\\GoodsReceive.cs"},{"SourceFile":"入库\\GoodsReceive.designer.cs"},{"SourceFile":"入库\\ShipInRecords.cs"},{"SourceFile":"入库\\ShipInRecords.designer.cs"},{"SourceFile":"入库\\ReceiveRecords.cs"},{"SourceFile":"入库\\ReceiveRecords.designer.cs"},{"SourceFile":"入库\\GoodsValidationRecs.cs"},{"SourceFile":"入库\\GoodsValidationRecs.designer.cs"},{"SourceFile":"出库\\BoxReg.cs"},{"SourceFile":"出库\\BoxReg.Designer.cs"},{"SourceFile":"出库\\GoodsOutWave.cs"},{"SourceFile":"出库\\GoodsOutWave.Designer.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutForm.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutForm.Designer.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutPartionPickForm.cs"},{"SourceFile":"出库\\零货分拣\\GoodsOutPartionPickForm.Designer.cs"},{"SourceFile":"utils\\ConfigPrint.cs"},{"SourceFile":"utils\\ConfigPrint.Designer.cs"},{"SourceFile":"出库\\GoodsOutQueryForm.cs"},{"SourceFile":"出库\\GoodsOutQueryForm.Designer.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutValidationForm.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutValidationForm.Designer.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutSeedsForm.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutSeedsForm.Designer.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutSeedsPackForm.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutSeedsPackForm.Designer.cs"},{"SourceFile":"出库\\GoodsOutPlan.cs"},{"SourceFile":"出库\\GoodsOutPlan.Designer.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutPartValidationForm.cs"},{"SourceFile":"出库\\零货复核\\GoodsOutPartValidationForm.Designer.cs"},{"SourceFile":"在库\\StockCompareForm.cs"},{"SourceFile":"在库\\StockCompareForm.designer.cs"},{"SourceFile":"在库\\StockMaintainQueryForm.cs"},{"SourceFile":"在库\\StockMaintainQueryForm.designer.cs"},{"SourceFile":"在库\\GoodsStockQueryForm.cs"},{"SourceFile":"在库\\GoodsStockQueryForm.designer.cs"},{"SourceFile":"在库\\GoodsStockAutoRepForm.cs"},{"SourceFile":"在库\\GoodsStockAutoRepForm.designer.cs"},{"SourceFile":"在库\\StockRecordQueryForm.cs"},{"SourceFile":"在库\\StockRecordQueryForm.designer.cs"},{"SourceFile":"在库\\StockPandianNewForm.cs"},{"SourceFile":"在库\\StockPandianNewForm.designer.cs"},{"SourceFile":"在库\\StockPandianDetailForm.cs"},{"SourceFile":"在库\\StockPandianDetailForm.designer.cs"},{"SourceFile":"基础资料\\LotGoodsType.cs"},{"SourceFile":"基础资料\\LotGoodsType.designer.cs"},{"SourceFile":"基础资料\\VenderSetup.cs"},{"SourceFile":"基础资料\\VenderSetup.designer.cs"},{"SourceFile":"基础资料\\CustomerSetup.cs"},{"SourceFile":"基础资料\\CustomerSetup.designer.cs"},{"SourceFile":"基础资料\\DeskSetup.cs"},{"SourceFile":"基础资料\\DeskSetup.designer.cs"},{"SourceFile":"基础资料\\基类\\BasicRibbonForm.cs"},{"SourceFile":"基础资料\\基类\\BasicRibbonForm.Designer.cs"},{"SourceFile":"基础资料\\基类\\FormBase.cs"},{"SourceFile":"基础资料\\基类\\FormBase.Designer.cs"},{"SourceFile":"main.cs"},{"SourceFile":"main.Designer.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"基础资料\\基类\\WaitForm2.cs"},{"SourceFile":"基础资料\\基类\\WaitForm2.Designer.cs"},{"SourceFile":"基础资料\\字典\\DictionaryForm.cs"},{"SourceFile":"基础资料\\字典\\DictionaryForm.Designer.cs"},{"SourceFile":"基础资料\\LotSetup.cs"},{"SourceFile":"基础资料\\LotSetup.designer.cs"},{"SourceFile":"基础资料\\OwnerSetup.cs"},{"SourceFile":"基础资料\\OwnerSetup.designer.cs"},{"SourceFile":"随货同行5.Designer.cs"},{"SourceFile":"随货同行单3.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Release\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Accessibility.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\DeinuPageControl\\bin\\Release\\DeinuPageControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrcLdj\\DeinuPageControl\\bin\\Release\\DeinuPageControl.dll"},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.BonusSkins.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Data.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Images.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Pdf.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Printing.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Sparkline.v16.2.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.Utils.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraBars.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraEditors.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraGrid.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraLayout.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraNavBar.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraPrinting.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"d:\\Program Files (x86)\\DevExpress 16.2\\Components\\Bin\\Framework\\DevExpress.XtraTreeList.v16.2.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\log4net.2.0.16\\lib\\net40\\log4net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\winform\\bin\\Microsoft.Data.ConnectionUI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.Office.Interop.Excel.15.0.4795.1001\\lib\\net20\\Microsoft.Office.Interop.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.ReportViewer.Runtime.Common.10.0.30319.1\\lib\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.ReportViewer.Runtime.Common.10.0.30319.1\\lib\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.ReportViewer.Runtime.Common.10.0.30319.1\\lib\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.WebDesign.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.ReportingServices.ReportViewerControl.WebForms.150.1652.0\\lib\\net40\\Microsoft.ReportViewer.WebForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.ReportViewer.WinForms.10.0.40219.1\\lib\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\Microsoft.Reporting.WinForms.v11.1.0.0.0\\lib\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\Model\\bin\\Release\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrcLdj\\Model\\bin\\Release\\Model.dll"},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.Formatters.Soap.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Speech.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\packages\\ThoughtWorks.QRCode.1.1.0\\lib\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\vssrc\\vssrcLdj\\Utils\\bin\\Release\\Utils.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrcLdj\\Utils\\bin\\Release\\Utils.dll"},{"Reference":"D:\\vssrc\\vssrcLdj\\WcfAuthentication\\bin\\Release\\WcfClientAuthentication.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"D:\\vssrc\\vssrcLdj\\WcfAuthentication\\bin\\Release\\WcfClientAuthentication.dll"}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\vssrc\\vssrcLdj\\winform\\obj\\Release\\WMS.exe","OutputItemRelativePath":"WMS.exe"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/winform/TMS/PrintTrans.cs b/winform/TMS/PrintTrans.cs index 129cbe0..60b6620 100644 --- a/winform/TMS/PrintTrans.cs +++ b/winform/TMS/PrintTrans.cs @@ -1249,10 +1249,19 @@ namespace DeiNiu.wms.win showWaitForm(); WmsOutPickRequest wpr; DataTable dtDetail; - + List list = new List(); foreach (DataRow dr in dtResult.Rows) //设置发票 { + wpr = new WmsOutPickRequest(dr); + string tmp = wpr.transNo + wpr.customerId; + if ( list.Contains(tmp)){ + continue; + } + else + { + list.Add(tmp); + } doPrintEachTran(wpr);// doPrintTran(wpr); } diff --git a/winform/epick/elelable/pick.cs b/winform/epick/elelable/pick.cs index dc9e24c..f7f0853 100644 --- a/winform/epick/elelable/pick.cs +++ b/winform/epick/elelable/pick.cs @@ -623,7 +623,8 @@ namespace elelab SeedsLabel lb = currentElables[orderId][lableId]; - LogHelper.debug(typeof(pick), string.Format(" .........deskId {0}, lable id {1} , trying to update db, userId is {2} ", lb.deskId,lableId, lb.userId)); + LogHelper.debug(typeof(pick), string.Format(" .........deskId {0}, lable id {1} , trying to update db, userId is {2} ,pcs {3}, count {4}, name {5}", + lb.deskId,lableId, lb.userId,lb.pcs,lb.count,lb.name)); enumRepResult rs = client.seedsPickOut2(lb.flowNo,lb.skuId,lb.productDate,lb.batch,lb.outDetailId,lb.count,lb.toFlowNo,lb.inDetailId,false, lb.userId);//本次拣选完毕 LogHelper.debug(typeof(pick), string.Format(" ......... update result {0}", rs )); diff --git a/winform/epick/wcf/ServiceLight.cs b/winform/epick/wcf/ServiceLight.cs index 9791711..a26a1f9 100644 --- a/winform/epick/wcf/ServiceLight.cs +++ b/winform/epick/wcf/ServiceLight.cs @@ -164,15 +164,18 @@ namespace DeiNiu.wms.win.epick int pcs = 0; - try + + foreach (DataRow dr in dt.Rows) { - foreach (DataRow dr in dt.Rows) + try { if (toTalpcs <= 0) { - break; + // break; } - pcs = (int) Convert.ToDecimal(dr["wantCount"].ToString()) / (int)Convert.ToDecimal(dr["minOperateCount"].ToString()); + // pcs = (int)Convert.ToDecimal(dr["wantCount"].ToString()) / (int)Convert.ToDecimal(dr["minOperateCount"].ToString()); + pcs = (int)(Convert.ToDecimal(dr["wantCount"].ToString()) / Convert.ToDecimal(dr["minOperateCount"].ToString())); + if (pcs < toTalpcs) { toTalpcs -= pcs; @@ -182,10 +185,10 @@ namespace DeiNiu.wms.win.epick pcs = toTalpcs; toTalpcs = 0; } - log.Debug(string.Format("pcs {0}, totalPcs {1}", pcs, toTalpcs)); + log.Debug(string.Format("customer {2}, want {3}, pcs {0}, totalPcs {1}", pcs, toTalpcs, dr["custName"].ToString(), dr["wantCount"].ToString())); SeedsLabel el = new SeedsLabel(); - el.count = (int)Convert.ToDecimal(dr["wantCount"].ToString()) ; + el.count = Convert.ToDecimal(dr["wantCount"].ToString()); el.pcs = pcs; el.color = 1; el.barcode = barcode; @@ -204,15 +207,17 @@ namespace DeiNiu.wms.win.epick el.isValid = isValid; el.name = dr["goodsName"].ToString(); els.Add(el); - } - } - catch (Exception er) - { - LogHelper.debug("serviceLights", "组织亮灯数据错误: " + er.Message); - log.Error(er); - } - + + } + catch (Exception er) + { + LogHelper.debug("serviceLights", "组织亮灯数据错误: " + er.Message); + log.Error(er); + continue; + } + + } } @@ -229,7 +234,7 @@ namespace DeiNiu.wms.win.epick lightUp(els, userId); // msg= els[0].name; - int cnt = 0; + decimal cnt = 0; foreach(SeedsLabel eLabel in els) { cnt += eLabel.count; diff --git a/winform/epick/wcf/data/Label.cs b/winform/epick/wcf/data/Label.cs index f9ccfe0..6882b1c 100644 --- a/winform/epick/wcf/data/Label.cs +++ b/winform/epick/wcf/data/Label.cs @@ -63,7 +63,7 @@ namespace DeiNiu.wms.win.epick public bool isValid { get; set; } [DataMember(Order = 16)] - public int count { get; set; } + public decimal count { get; set; } } diff --git a/winform/wms.csproj b/winform/wms.csproj index 9ebb611..dc4ea88 100644 --- a/winform/wms.csproj +++ b/winform/wms.csproj @@ -23,13 +23,13 @@ false false true - http://175.24.179.109:8000/ + http://www.deiniusoft.com:8000/ zh-Hans 得牛WMS 得牛软件 publish.htm false - 340 + 348 1.0.0.%2a false true diff --git a/winform/wms.csproj.user b/winform/wms.csproj.user index 34f5260..67638af 100644 --- a/winform/wms.csproj.user +++ b/winform/wms.csproj.user @@ -1,8 +1,8 @@ - + D:\wmsSetup\|publish\ - http://175.24.179.109:8000/|http://www.deiniusoft.com:8000/|http://192.168.0.1:8000/|http://192.168.0.4:8000/|http://121.42.142.11:8000/ + http://www.deiniusoft.com:8000/|http://175.24.179.109:8000/|http://192.168.0.1:8000/|http://192.168.0.4:8000/|http://121.42.142.11:8000/ http://www.deiniusoft.com:8000/|http://localhost/WMS/ diff --git a/winform/出库/GoodsOutTasks.Designer.cs b/winform/出库/GoodsOutTasks.Designer.cs index 2284e70..7b0686b 100644 --- a/winform/出库/GoodsOutTasks.Designer.cs +++ b/winform/出库/GoodsOutTasks.Designer.cs @@ -81,13 +81,6 @@ this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem(); this.tabbedControlGroup1 = new DevExpress.XtraLayout.TabbedControlGroup(); - this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup(); - this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem(); - this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem(); - this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem(); - this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem(); - this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem(); - this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem(); this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup(); this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem(); @@ -110,6 +103,13 @@ this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem(); + this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup(); + this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem(); + this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem(); + this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem(); + this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem(); + this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem(); + this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem(); this.btnQuery = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit(); @@ -155,13 +155,6 @@ ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit(); @@ -184,6 +177,13 @@ ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit(); this.SuspendLayout(); // // ribbon @@ -828,86 +828,13 @@ // this.tabbedControlGroup1.Location = new System.Drawing.Point(0, 0); this.tabbedControlGroup1.Name = "tabbedControlGroup1"; - this.tabbedControlGroup1.SelectedTabPage = this.layoutControlGroup10; - this.tabbedControlGroup1.SelectedTabPageIndex = 0; + this.tabbedControlGroup1.SelectedTabPage = this.layoutControlGroup2; + this.tabbedControlGroup1.SelectedTabPageIndex = 1; this.tabbedControlGroup1.Size = new System.Drawing.Size(1814, 210); this.tabbedControlGroup1.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { this.layoutControlGroup10, this.layoutControlGroup2}); // - // layoutControlGroup2 - // - this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { - this.layoutControlItem24, - this.layoutControlItem25, - this.layoutControlItem17, - this.emptySpaceItem9, - this.emptySpaceItem5, - this.emptySpaceItem8}); - this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0); - this.layoutControlGroup2.Name = "layoutControlGroup2"; - this.layoutControlGroup2.OptionsItemText.TextToControlDistance = 5; - this.layoutControlGroup2.Size = new System.Drawing.Size(1775, 136); - this.layoutControlGroup2.Text = "分配任务"; - // - // layoutControlItem24 - // - this.layoutControlItem24.Control = this.txtEmpId; - this.layoutControlItem24.Location = new System.Drawing.Point(0, 0); - this.layoutControlItem24.MinSize = new System.Drawing.Size(111, 36); - this.layoutControlItem24.Name = "layoutControlItem24"; - this.layoutControlItem24.Size = new System.Drawing.Size(372, 69); - this.layoutControlItem24.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; - this.layoutControlItem24.Text = "员工名称"; - this.layoutControlItem24.TextSize = new System.Drawing.Size(72, 22); - // - // layoutControlItem25 - // - this.layoutControlItem25.Control = this.simpleButton1; - this.layoutControlItem25.Location = new System.Drawing.Point(392, 0); - this.layoutControlItem25.MinSize = new System.Drawing.Size(88, 46); - this.layoutControlItem25.Name = "layoutControlItem25"; - this.layoutControlItem25.Size = new System.Drawing.Size(136, 68); - this.layoutControlItem25.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; - this.layoutControlItem25.TextSize = new System.Drawing.Size(0, 0); - this.layoutControlItem25.TextVisible = false; - // - // layoutControlItem17 - // - this.layoutControlItem17.Control = this.lbemp; - this.layoutControlItem17.Location = new System.Drawing.Point(0, 69); - this.layoutControlItem17.Name = "layoutControlItem17"; - this.layoutControlItem17.Size = new System.Drawing.Size(372, 67); - this.layoutControlItem17.TextSize = new System.Drawing.Size(0, 0); - this.layoutControlItem17.TextVisible = false; - // - // emptySpaceItem9 - // - this.emptySpaceItem9.AllowHotTrack = false; - this.emptySpaceItem9.Location = new System.Drawing.Point(392, 68); - this.emptySpaceItem9.MaxSize = new System.Drawing.Size(136, 68); - this.emptySpaceItem9.MinSize = new System.Drawing.Size(136, 68); - this.emptySpaceItem9.Name = "emptySpaceItem9"; - this.emptySpaceItem9.Size = new System.Drawing.Size(136, 68); - this.emptySpaceItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; - this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0); - // - // emptySpaceItem5 - // - this.emptySpaceItem5.AllowHotTrack = false; - this.emptySpaceItem5.Location = new System.Drawing.Point(528, 0); - this.emptySpaceItem5.Name = "emptySpaceItem5"; - this.emptySpaceItem5.Size = new System.Drawing.Size(1247, 136); - this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0); - // - // emptySpaceItem8 - // - this.emptySpaceItem8.AllowHotTrack = false; - this.emptySpaceItem8.Location = new System.Drawing.Point(372, 0); - this.emptySpaceItem8.Name = "emptySpaceItem8"; - this.emptySpaceItem8.Size = new System.Drawing.Size(20, 136); - this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0); - // // layoutControlGroup10 // this.layoutControlGroup10.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { @@ -1208,6 +1135,79 @@ this.layoutControlItem30.TextSize = new System.Drawing.Size(0, 0); this.layoutControlItem30.TextVisible = false; // + // layoutControlGroup2 + // + this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { + this.layoutControlItem24, + this.layoutControlItem25, + this.layoutControlItem17, + this.emptySpaceItem9, + this.emptySpaceItem5, + this.emptySpaceItem8}); + this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0); + this.layoutControlGroup2.Name = "layoutControlGroup2"; + this.layoutControlGroup2.OptionsItemText.TextToControlDistance = 5; + this.layoutControlGroup2.Size = new System.Drawing.Size(1775, 136); + this.layoutControlGroup2.Text = "分配任务"; + // + // layoutControlItem24 + // + this.layoutControlItem24.Control = this.txtEmpId; + this.layoutControlItem24.Location = new System.Drawing.Point(0, 0); + this.layoutControlItem24.MinSize = new System.Drawing.Size(111, 36); + this.layoutControlItem24.Name = "layoutControlItem24"; + this.layoutControlItem24.Size = new System.Drawing.Size(372, 69); + this.layoutControlItem24.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; + this.layoutControlItem24.Text = "员工名称"; + this.layoutControlItem24.TextSize = new System.Drawing.Size(72, 22); + // + // layoutControlItem25 + // + this.layoutControlItem25.Control = this.simpleButton1; + this.layoutControlItem25.Location = new System.Drawing.Point(392, 0); + this.layoutControlItem25.MinSize = new System.Drawing.Size(88, 46); + this.layoutControlItem25.Name = "layoutControlItem25"; + this.layoutControlItem25.Size = new System.Drawing.Size(136, 68); + this.layoutControlItem25.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; + this.layoutControlItem25.TextSize = new System.Drawing.Size(0, 0); + this.layoutControlItem25.TextVisible = false; + // + // layoutControlItem17 + // + this.layoutControlItem17.Control = this.lbemp; + this.layoutControlItem17.Location = new System.Drawing.Point(0, 69); + this.layoutControlItem17.Name = "layoutControlItem17"; + this.layoutControlItem17.Size = new System.Drawing.Size(372, 67); + this.layoutControlItem17.TextSize = new System.Drawing.Size(0, 0); + this.layoutControlItem17.TextVisible = false; + // + // emptySpaceItem9 + // + this.emptySpaceItem9.AllowHotTrack = false; + this.emptySpaceItem9.Location = new System.Drawing.Point(392, 68); + this.emptySpaceItem9.MaxSize = new System.Drawing.Size(136, 68); + this.emptySpaceItem9.MinSize = new System.Drawing.Size(136, 68); + this.emptySpaceItem9.Name = "emptySpaceItem9"; + this.emptySpaceItem9.Size = new System.Drawing.Size(136, 68); + this.emptySpaceItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; + this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0); + // + // emptySpaceItem5 + // + this.emptySpaceItem5.AllowHotTrack = false; + this.emptySpaceItem5.Location = new System.Drawing.Point(528, 0); + this.emptySpaceItem5.Name = "emptySpaceItem5"; + this.emptySpaceItem5.Size = new System.Drawing.Size(1247, 136); + this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0); + // + // emptySpaceItem8 + // + this.emptySpaceItem8.AllowHotTrack = false; + this.emptySpaceItem8.Location = new System.Drawing.Point(372, 0); + this.emptySpaceItem8.Name = "emptySpaceItem8"; + this.emptySpaceItem8.Size = new System.Drawing.Size(20, 136); + this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0); + // // btnQuery // this.btnQuery.Location = new System.Drawing.Point(1144, 33); @@ -1272,13 +1272,6 @@ ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit(); @@ -1301,6 +1294,13 @@ ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); diff --git a/winform/出库/GoodsOutTasks.resx b/winform/出库/GoodsOutTasks.resx index f77ff32..eee1592 100644 --- a/winform/出库/GoodsOutTasks.resx +++ b/winform/出库/GoodsOutTasks.resx @@ -121,7 +121,7 @@ 17, 17 - 275, 17 + 274, 17 diff --git a/winform/基础资料/LotSetup.cs b/winform/基础资料/LotSetup.cs index 62b4e4f..cdad023 100644 --- a/winform/基础资料/LotSetup.cs +++ b/winform/基础资料/LotSetup.cs @@ -1204,7 +1204,9 @@ namespace DeiNiu.wms.win { // stkLocClient.formatLocName(); // stkLocClient.Close(); - + // stkLocClient.initalSkus(true, 11); + // stkLocClient.initalSkus(true, 13); + // stkLocClient.initalSkus(true, 15); stkLocClient.initalSkus(true, 0); closeClient(); // stkLocClient.initalSkus(true, 3); @@ -1248,7 +1250,9 @@ namespace DeiNiu.wms.win try { stkLocClient.initalSkus(false,0); - stkLocClient.Close(); + // stkLocClient.initalSkus(false,13); + // stkLocClient.initalSkus(false, 15); + stkLocClient.Close(); } catch (Exception er) {