| | |
| | | { |
| | | string ModRightNameCheck = "Xs_SeOrderBill_Close"; |
| | | DBUtility.ClsPub.CurUserName = CurUserName; |
| | | string sql = ""; |
| | | try |
| | | { |
| | | //检查权限 |
| | |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "单据未关闭!不需要反关闭!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | //判断单据是否为自动关闭 |
| | | sql = "select * from Xs_SeOrderBillMain where HInterID = " + HInterID; |
| | | ds = oCN.RunProcReturn(sql, "Xs_SeOrderBillMain"); |
| | | if (ds.Tables[0].Rows[0]["HCloseType"].ToString() == "False") |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "反关闭失败!单据为自动关闭,不能进行手动反关闭!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | |
| | | //判断行是否为自动关闭 |
| | | string temp = ds.Tables[0].Rows[0]["HCloseType"].ToString(); |
| | | if (ds.Tables[0].Rows[0]["HCloseType"].ToString() == "False") |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "行反关闭失败!行为自动关闭,不能进行手动反关闭!"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | } |
| | | } |
| | | else |