| | |
| | | } |
| | | #endregion |
| | | |
| | | #region[设备保养记录表,选保养计划获取保养计划清单信息] |
| | | [Route("Sb_EquipMaintainPlanBill/Sb_EquipMaintainPlanBill_PlanList")] |
| | | [HttpGet] |
| | | public object Sb_EquipMaintainPlanBill_PlanList(string HInterID, string HDate) |
| | | { |
| | | DataSet ds,ds1; |
| | | try |
| | | { |
| | | SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); |
| | | |
| | | List<DataTable> tableList = new List<DataTable>(); |
| | | |
| | | //获取保养项目 |
| | | ds = oCN.RunProcReturn("exec h_p_Sb_EquipMaintain_GetPlanList " + HInterID + ",'" + HDate + "'", "h_p_Sb_EquipMaintain_GetPlanList"); |
| | | |
| | | //获取配件项目编辑数据 |
| | | string sql1 = "select HMaterID, 配件代码 HMaterNumber,配件名称 HMaterName,单位ID HUnitID,单位代码 HUnitNumber,单位名称 HUnitName,用量 HQty,标准用量 HQtyMust,表体备注 HRemark,负责人ID HManagerID,负责人代码 HManagerNumber,负责人 HManagerName from h_v_Sb_EquipMaintainPlanBillList where 1 = 1 and hmainid = " + HInterID; |
| | | ds1 = oCN.RunProcReturn(sql1, "h_v_Sb_EquipMaintainPlanBillList"); |
| | | |
| | | tableList.Add(ds.Tables[0]); |
| | | tableList.Add(ds1.Tables[0]); |
| | | |
| | | if (ds.Tables[0].Rows.Count != 0 || ds != null) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "获取信息成功!"; |
| | | objJsonResult.data = tableList; |
| | | } |
| | | else |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "没有查询到数据信息!"; |
| | | objJsonResult.data = tableList; |
| | | } |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "发生异常,没有返回任何计划!" + e.ToString(); |
| | | objJsonResult.data = null; |
| | | } |
| | | return objJsonResult; |
| | | } |
| | | #endregion |
| | | |
| | | #region[设备保养计划表编辑时获取表体数据--保养计划] |
| | | [Route("Sb_EquipMaintainPlanBill/GetPlanList")] |
| | | [HttpGet] |