| | |
| | | } |
| | | } |
| | | |
| | | |
| | | #region 根据物料内码获取物料信息 |
| | | [Route("Cg_POOrderBill/getMaterialByMaterID")] |
| | | [HttpGet] |
| | | public ApiResult<DataTable> getMaterialByMaterID(Int64 HMaterID) |
| | | { |
| | | SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); |
| | | |
| | | string sql = "select a.HItemID HMaterID,a.HNumber HMaterNumber,a.HName HMaterName,a.HMaterRuleType,a.HModel HMaterModel,a.HUnitID, b.HNumber HUnitNumber, b.HName HUnitName" + |
| | | " from Gy_Material AS a " + |
| | | " LEFT OUTER JOIN Gy_Unit AS b on a.HUnitID = b.HItemID " + |
| | | " where a.HItemID =" + HMaterID; |
| | | |
| | | var dataSet = oCN.RunProcReturn(sql, "Gy_Material"); |
| | | |
| | | |
| | | if (dataSet == null || dataSet.Tables[0].Rows.Count == 0) |
| | | return new ApiResult<DataTable> { code = -1, msg = "不存在该物料" }; |
| | | |
| | | return new ApiResult<DataTable> { code = 1, msg = "查询成功", data = dataSet.Tables[0] }; |
| | | } |
| | | #endregion |
| | | |
| | | #region 采购订单 审核/反审核 |
| | | /// <summary> |
| | | /// |