| | |
| | | List<string> PalletCodes = new List<string>(); |
| | | for (int i = 0; i < num; i++) |
| | | { |
| | | PalletCodes.Add(GetOrderPintCode($"{palletCodeType}PalletCodes",palletCodeType)); |
| | | PalletCodes.Add(GetOrderPintCode($"PalletCodes",palletCodeType)); |
| | | } |
| | | content= PrintPallet(PalletCodes); |
| | | foreach (var PalletCode in PalletCodes) |
| | | { |
| | | Console.WriteLine(PalletCode); |
| | | } |
| | | return content.OK(); |
| | | } |
| | | catch (Exception ex) |
| | |
| | | |
| | | if (PrintSetting.Spare1 == DateTime.Now.ToString("yyyyMMdd")) |
| | | { |
| | | PrintCode = palletCodeType+PrintSetting.PrintNo.ToString().PadLeft(PrintSetting.Spare2, '0')+PrintSetting.Spare1; |
| | | PrintCode = palletCodeType+PrintSetting.Spare1 + PrintSetting.PrintNo.ToString().PadLeft(PrintSetting.Spare2, '0'); |
| | | PrintSetting.PrintNo = PrintSetting.PrintNo + 1; |
| | | } |
| | | else |
| | | { |
| | | PrintSetting.Spare1 = DateTime.Now.ToString("yyyyMMdd"); |
| | | PrintSetting.PrintNo = 2; |
| | | PrintCode = palletCodeType+1.ToString().PadLeft(PrintSetting.Spare2, '0')+PrintSetting.Spare1; |
| | | PrintCode = palletCodeType+PrintSetting.Spare1 + 1.ToString().PadLeft(PrintSetting.Spare2, '0'); |
| | | } |
| | | Db.Updateable(PrintSetting).ExecuteCommand(); |
| | | return PrintCode; |
| | |
| | | HttpHelper.Post(url, palletCodes.Serialize()); |
| | | return WebResponseContent.Instance.OK(); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 获取托盘标识 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | /// <exception cref="NotImplementedException"></exception> |
| | | public WebResponseContent GetPalletTypeInfos(int WarehouseId) |
| | | { |
| | | WebResponseContent content = new WebResponseContent(); |
| | | try |
| | | { |
| | | List<Dt_PalletTypeInfo> dt_PalletTypeInfos = BaseDal.QueryData(x => x.WarehouseId == WarehouseId); |
| | | return content.OK(data: dt_PalletTypeInfos); |
| | | } |
| | | catch(Exception ex) |
| | | { |
| | | return content.Error(); |
| | | } |
| | | } |
| | | |
| | | public WebResponseContent GetWarehouses() |
| | | { |
| | | WebResponseContent content = new WebResponseContent(); |
| | | |
| | | try |
| | | { |
| | | List<Dt_PalletTypeInfo> dt_PalletTypeInfos = BaseDal.QueryData(x => x); |
| | | List<Dt_Warehouse> dt_Warehouses = new List<Dt_Warehouse>(); |
| | | foreach (var item in dt_PalletTypeInfos) |
| | | { |
| | | Dt_Warehouse dt_Warehouse = Db.Queryable<Dt_Warehouse>().First(x => x.WarehouseId == item.WarehouseId); |
| | | dt_Warehouses.Add(dt_Warehouse); |
| | | } |
| | | List<Dt_Warehouse> NewDt_Warehouses = new List<Dt_Warehouse>(); |
| | | NewDt_Warehouses.AddRange(dt_Warehouses.DistinctBy(x => x.WarehouseId)); |
| | | return content.OK(data: NewDt_Warehouses); |
| | | } |
| | | catch(Exception ex) |
| | | { |
| | | return content.Error(); |
| | | } |
| | | |
| | | } |
| | | |
| | | public override WebResponseContent UpdateData(SaveModel saveModel) |
| | | { |
| | | var id = saveModel.MainData["id"].ObjToInt(); |
| | | var palletType = saveModel.MainData["palletType"].ObjToInt(); |
| | | var typeName = saveModel.MainData["typeName"].ToString(); |
| | | var length = saveModel.MainData["length"].ObjToInt(); |
| | | var width = saveModel.MainData["width"].ObjToInt(); |
| | | var height = saveModel.MainData["height"].ObjToInt(); |
| | | var locationCount = saveModel.MainData["locaitonCount"].ObjToInt(); |
| | | Dt_PalletTypeInfo palletTypeInfo = BaseDal.QueryFirst(x => x.Id == id); |
| | | palletTypeInfo.PalletType = palletType; |
| | | palletTypeInfo.TypeName = typeName; |
| | | palletTypeInfo.Length = length; |
| | | palletTypeInfo.Width = width; |
| | | palletTypeInfo.Height = height; |
| | | palletTypeInfo.LocaitonCount = locationCount; |
| | | |
| | | return base.UpdateData(palletTypeInfo); |
| | | } |
| | | } |
| | | } |