From 461a7bfc0a2250ec5ff4b7a85cb6ce3c2f0bf06e Mon Sep 17 00:00:00 2001 From: zrg <z18737863051@163.com> Date: 星期二, 13 八月 2024 11:20:44 +0800 Subject: [PATCH] 1 --- WebAPI/Controllers/SBGL/Sb_EquipReportController.cs | 82 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 82 insertions(+), 0 deletions(-) diff --git a/WebAPI/Controllers/SBGL/Sb_EquipReportController.cs b/WebAPI/Controllers/SBGL/Sb_EquipReportController.cs index 4d9699b..aee193a 100644 --- a/WebAPI/Controllers/SBGL/Sb_EquipReportController.cs +++ b/WebAPI/Controllers/SBGL/Sb_EquipReportController.cs @@ -275,5 +275,87 @@ #endregion + #region 璁惧淇濆吇鐜囨姤琛�(鏈堝害淇濆吇缁熻琛�) + + /// <summary> + /// 璁惧淇濆吇鐜囨姤琛�(鏈堝害淇濆吇缁熻琛�) + /// </summary> + /// <returns></returns> + [Route("Sb_EquipReportController/GetSb_EquipMaintainMonthSumReport_Json")] + [HttpGet] + public object GetSb_EquipMaintainMonthSumReport_Json(DateTime HDate, Int64 HStockOrgID, string sWhere) + { + try + { + ds = oCN.RunProcReturn("exec h_p_Sb_EquipMaintainMonthSumReport '" + HDate.ToShortDateString() + "'," + HStockOrgID.ToString() + "," + sWhere, "h_p_Sb_EquipMaintainMonthSumReport"); + List<object> columnNameList = new List<object>(); + //娣诲姞鍒楀悕 + foreach (DataColumn col in ds.Tables[0].Columns) + { + Type dataType = col.DataType; + string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; + columnNameList.Add(JsonConvert.DeserializeObject(ColmString)); //鑾峰彇鍒癉ataColumn鍒楀璞$殑鍒楀悕 + } + objJsonResult.code = "0"; + objJsonResult.count = 1; + objJsonResult.Message = "鎴愬姛锛�"; + objJsonResult.data = ds.Tables[0]; + objJsonResult.list = columnNameList; + return objJsonResult; + //} + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "杩斿洖鎶ヨ〃淇℃伅澶辫触锛�" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + #endregion + + #region 璁惧缁翠慨鐜囨姤琛� + + /// <summary> + /// 璁惧缁翠慨鐜囨姤琛� + /// </summary> + /// <returns></returns> + [Route("Sb_EquipReportController/GetSb_EquipRepairMonthSumReport_Json")] + [HttpGet] + public object GetSb_EquipRepairMonthSumReport_Json(DateTime HDate, Int64 HStockOrgID, string sWhere) + { + try + { + ds = oCN.RunProcReturn("exec h_p_Sb_EquipRepairMonthSumReport '" + HDate.ToShortDateString() + "'," + HStockOrgID.ToString() + "," + sWhere, "h_p_Sb_EquipRepairMonthSumReport"); + List<object> columnNameList = new List<object>(); + //娣诲姞鍒楀悕 + foreach (DataColumn col in ds.Tables[0].Columns) + { + Type dataType = col.DataType; + string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; + columnNameList.Add(JsonConvert.DeserializeObject(ColmString)); //鑾峰彇鍒癉ataColumn鍒楀璞$殑鍒楀悕 + } + objJsonResult.code = "0"; + objJsonResult.count = 1; + objJsonResult.Message = "鎴愬姛锛�"; + objJsonResult.data = ds.Tables[0]; + objJsonResult.list = columnNameList; + return objJsonResult; + //} + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "杩斿洖鎶ヨ〃淇℃伅澶辫触锛�" + e.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + #endregion + } } -- Gitblit v1.9.1