| | |
| | | public DataSet ds = new DataSet(); |
| | | private json objjson = new json(); |
| | | private json objJsonResult = new json(); |
| | | SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); |
| | | //public static string sUrl = "http://183.129.128.86:9090/WEBS-WMSTest/WebService1.asmx"; |
| | | // private POInStockBillServices oclscg_poinstockbillmain = new POInStockBillServices(); |
| | | /// <summary> |
| | |
| | | return objjson; |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 保存获取核算方式组 |
| | | /// </summary> |
| | | /// <param name="msg"></param> |
| | | /// <returns></returns> |
| | | [Route("Web/SaveGetClassTimePrjGroupList")] |
| | | [HttpPost] |
| | | public object SaveGetClassTimePrjGroupList(string HNumber,string HName,int HDeptID,string refSav,string user,int HItem) |
| | | { |
| | | |
| | | try |
| | | { |
| | | //编辑权限 |
| | | if (!DBUtility.ClsPub.Security_Log_second("Gy_ClassTimePrj", 1, false, user)) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "无保存权限!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | string sql=""; |
| | | if (refSav== "Add") |
| | | { |
| | | sql = "Insert Into Gy_ClassTimePrjGroup " + |
| | | "(HNumber,HName,HStpoflag,HParentID,HLevel" + |
| | | ",HEndFlag,HHelpCode,HDeptID,HGroupID,HUserFlag" + |
| | | ") " + |
| | | " values('" + HNumber + "','" + HName + "',0,0,0,0,''," + HDeptID + ",'未使用'" + ") "; |
| | | } |
| | | else |
| | | { |
| | | sql = "UpDate Gy_ClassTimePrjGroup set HNumber='" + HNumber + "',HName='" + HName + "',HDeptID=" + HDeptID; |
| | | } |
| | | oCN.RunProc(sql); |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "保存成功"; |
| | | objJsonResult.data = 1; |
| | | return objJsonResult; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "保存失败!" + e.ToString(); |
| | | objJsonResult.data = 1; |
| | | return objJsonResult; |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 获取岗位列表 |